1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

updated function name and return type

This commit is contained in:
Nguyễn Việt Hưng
2019-08-28 11:17:51 +12:00
committed by Junyoung Choi
parent c7d33fbd83
commit 8355e1e006
2 changed files with 32 additions and 36 deletions

View File

@@ -624,7 +624,15 @@ function deleteAttachmentsNotPresentInNote (markdownContent, storageKey, noteKey
}
}
function getAttachments (markdownContent, storageKey, noteKey) {
/**
* @description Get all existing attachments related to a specific note
including their status (in use or not) and their path. Return null if there're no attachment related to note or specified parametters are invalid
* @param storageKey StorageKey of the current note
* @param noteKey NoteKey of the currentNote
* @param linkText Text that was pasted
* @return {Promise<Array<{path: String, isInUse: bool}>>} Promise returning the
list of attachments with their properties */
function getAttachmentsPathAndStatus (markdownContent, storageKey, noteKey) {
if (storageKey == null || noteKey == null || markdownContent == null) {
return
}
@@ -646,23 +654,16 @@ function getAttachments (markdownContent, storageKey, noteKey) {
reject(err)
return
}
const attachmentsNotInNotePaths = []
const attachmentsInNotePaths = []
const allAttachments = []
const attachments = []
for (const file of files) {
const absolutePathOfFile = path.join(targetStorage.path, DESTINATION_FOLDER, noteKey, file)
if (!attachmentsInNoteOnlyFileNames.includes(file)) {
attachmentsNotInNotePaths.push(absolutePathOfFile)
attachments.push({ path: absolutePathOfFile, isInUse: false })
} else {
attachmentsInNotePaths.push(absolutePathOfFile)
attachments.push({ path: absolutePathOfFile, isInUse: true })
}
allAttachments.push(absolutePathOfFile)
}
resolve({
allAttachments,
attachmentsNotInNotePaths,
attachmentsInNotePaths
})
resolve(attachments)
})
})
} else {
@@ -774,7 +775,7 @@ module.exports = {
removeStorageAndNoteReferences,
deleteAttachmentFolder,
deleteAttachmentsNotPresentInNote,
getAttachments,
getAttachmentsPathAndStatus,
moveAttachments,
cloneAttachments,
isAttachmentLink,