33 lines
1.4 KiB
TypeScript
33 lines
1.4 KiB
TypeScript
import { WebApplication } from '@/Application/WebApplication'
|
|
import { getNoteBlob, getNoteFileName } from '@/Utils/NoteExportUtils'
|
|
import { parseFileName } from '@standardnotes/filepicker'
|
|
import { Platform, SNNote } from '@standardnotes/snjs'
|
|
import { sanitizeFileName } from '@standardnotes/ui-services'
|
|
import { downloadBlobOnAndroid } from './DownloadBlobOnAndroid'
|
|
|
|
export const downloadSelectedNotesOnAndroid = async (application: WebApplication, notes: SNNote[]) => {
|
|
if (!application.isNativeMobileWeb() || application.platform !== Platform.Android) {
|
|
throw new Error('Function being used on non-android platform')
|
|
}
|
|
if (notes.length === 1) {
|
|
const note = notes[0]
|
|
const blob = getNoteBlob(application, note)
|
|
const { name, ext } = parseFileName(getNoteFileName(application, note))
|
|
const filename = `${sanitizeFileName(name)}.${ext}`
|
|
await downloadBlobOnAndroid(application.mobileDevice, blob, filename)
|
|
return
|
|
}
|
|
if (notes.length > 1) {
|
|
const zippedDataBlob = await application.archiveService.zipData(
|
|
notes.map((note) => {
|
|
return {
|
|
name: getNoteFileName(application, note),
|
|
content: getNoteBlob(application, note),
|
|
}
|
|
}),
|
|
)
|
|
const filename = `Standard Notes Export - ${application.archiveService.formattedDateForExports()}.zip`
|
|
await downloadBlobOnAndroid(application.mobileDevice, zippedDataBlob, filename)
|
|
}
|
|
}
|