1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/lib/services/trash/isTrashableItem.ts

18 lines
576 B
TypeScript

import { checkObjectHasProperties } from '@joplin/utils/object';
import { ModelType } from '../../BaseModel';
import conflictFolderId from '../../models/utils/getConflictFolderId';
import getTrashFolderId from './getTrashFolderId';
type ItemSlice = { id?: string };
const isTrashableItem = (itemType: ModelType, item: ItemSlice) => {
checkObjectHasProperties(item, ['id']);
if (itemType !== ModelType.Folder && itemType !== ModelType.Note) {
return false;
}
return item.id !== conflictFolderId() && item.id !== getTrashFolderId();
};
export default isTrashableItem;