Stackedit/src/services/fileSvc.js

207 lines
5.8 KiB
JavaScript
Raw Normal View History

2018-05-04 18:07:28 +00:00
import store from '../store';
import utils from './utils';
const forbiddenFolderNameMatcher = /^\.stackedit-data$|^\.stackedit-trash$|\.md$|\.sync$|\.publish$/;
export default {
/**
* Create a file in the store with the specified fields.
*/
2018-05-13 13:27:33 +00:00
async createFile({
2018-05-06 00:46:33 +00:00
name,
parentId,
text,
properties,
discussions,
comments,
} = {}, background = false) {
2018-05-04 18:07:28 +00:00
const id = utils.uid();
2018-06-07 23:56:11 +00:00
const item = {
2018-05-04 18:07:28 +00:00
id,
2018-05-06 00:46:33 +00:00
name: utils.sanitizeName(name),
parentId: parentId || null,
2018-05-04 18:07:28 +00:00
};
const content = {
id: `${id}/content`,
2018-05-06 00:46:33 +00:00
text: utils.sanitizeText(text || store.getters['data/computedSettings'].newFileContent),
properties: utils
.sanitizeText(properties || store.getters['data/computedSettings'].newFileProperties),
discussions: discussions || {},
comments: comments || {},
2018-05-04 18:07:28 +00:00
};
const workspaceUniquePaths = store.getters['workspace/hasUniquePaths'];
2018-05-13 13:27:33 +00:00
// Show warning dialogs
if (!background) {
// If name is being stripped
2018-06-07 23:56:11 +00:00
if (item.name !== utils.defaultName && item.name !== name) {
await store.dispatch('modal/open', {
type: 'stripName',
item,
});
2018-05-13 13:27:33 +00:00
}
// Check if there is already a file with that path
if (workspaceUniquePaths) {
2018-06-07 23:56:11 +00:00
const parentPath = store.getters.itemPaths[item.parentId] || '';
const path = parentPath + item.name;
2018-05-13 13:27:33 +00:00
if (store.getters.pathItems[path]) {
2018-06-07 23:56:11 +00:00
await store.dispatch('modal/open', {
type: 'pathConflict',
item,
});
2018-05-13 13:27:33 +00:00
}
}
}
// Save file and content in the store
store.commit('content/setItem', content);
2018-06-07 23:56:11 +00:00
store.commit('file/setItem', item);
2018-05-04 18:07:28 +00:00
if (workspaceUniquePaths) {
2018-05-13 13:27:33 +00:00
this.makePathUnique(id);
2018-05-04 18:07:28 +00:00
}
2018-05-13 13:27:33 +00:00
// Return the new file item
return store.state.file.itemMap[id];
2018-05-04 18:07:28 +00:00
},
/**
* Make sanity checks and then create/update the folder/file in the store.
*/
2018-05-13 13:27:33 +00:00
async storeItem(item) {
2018-05-04 18:07:28 +00:00
const id = item.id || utils.uid();
const sanitizedName = utils.sanitizeName(item.name);
if (item.type === 'folder' && forbiddenFolderNameMatcher.exec(sanitizedName)) {
2018-06-07 23:56:11 +00:00
await store.dispatch('modal/open', {
type: 'unauthorizedName',
item,
});
2018-05-04 18:07:28 +00:00
throw new Error('Unauthorized name.');
}
// Show warning dialogs
2018-05-13 13:27:33 +00:00
// If name has been stripped
if (sanitizedName !== utils.defaultName && sanitizedName !== item.name) {
2018-06-07 23:56:11 +00:00
await store.dispatch('modal/open', {
type: 'stripName',
item,
});
2018-05-13 13:27:33 +00:00
}
// Check if there is a path conflict
if (store.getters['workspace/hasUniquePaths']) {
const parentPath = store.getters.itemPaths[item.parentId] || '';
const path = parentPath + sanitizedName;
const pathItems = store.getters.pathItems[path] || [];
if (pathItems.some(itemWithSamePath => itemWithSamePath.id !== id)) {
2018-06-07 23:56:11 +00:00
await store.dispatch('modal/open', {
type: 'pathConflict',
item,
});
2018-05-04 18:07:28 +00:00
}
}
2018-05-13 13:27:33 +00:00
return this.setOrPatchItem({
...item,
2018-05-04 18:07:28 +00:00
id,
});
2018-05-13 13:27:33 +00:00
},
/**
* Create/update the folder/file in the store and make sure its path is unique.
*/
setOrPatchItem(patch) {
const item = {
...store.getters.allItemMap[patch.id] || patch,
};
if (!item.id) {
return null;
}
if (patch.parentId !== undefined) {
item.parentId = patch.parentId || null;
}
if (patch.name) {
const sanitizedName = utils.sanitizeName(patch.name);
if (item.type !== 'folder' || !forbiddenFolderNameMatcher.exec(sanitizedName)) {
item.name = sanitizedName;
}
}
// Save item in the store
store.commit(`${item.type}/setItem`, item);
2018-05-04 18:07:28 +00:00
// Ensure path uniqueness
2018-05-13 13:27:33 +00:00
if (store.getters['workspace/hasUniquePaths']) {
this.makePathUnique(item.id);
2018-05-04 18:07:28 +00:00
}
2018-05-13 13:27:33 +00:00
return store.getters.allItemMap[item.id];
2018-05-04 18:07:28 +00:00
},
/**
* Delete a file in the store and all its related items.
*/
deleteFile(fileId) {
// Delete the file
store.commit('file/deleteItem', fileId);
// Delete the content
store.commit('content/deleteItem', `${fileId}/content`);
// Delete the syncedContent
store.commit('syncedContent/deleteItem', `${fileId}/syncedContent`);
// Delete the contentState
store.commit('contentState/deleteItem', `${fileId}/contentState`);
// Delete sync locations
(store.getters['syncLocation/groupedByFileId'][fileId] || [])
.forEach(item => store.commit('syncLocation/deleteItem', item.id));
// Delete publish locations
(store.getters['publishLocation/groupedByFileId'][fileId] || [])
.forEach(item => store.commit('publishLocation/deleteItem', item.id));
},
/**
* Ensure two files/folders don't have the same path if the workspace doesn't support it.
*/
ensureUniquePaths() {
if (store.getters['workspace/hasUniquePaths']) {
if (Object.keys(store.getters.itemPaths).some(id => this.makePathUnique(id))) {
this.ensureUniquePaths();
}
}
},
/**
* Return false if the file/folder path is unique.
* Add a prefix to its name and return true otherwise.
*/
makePathUnique(id) {
2018-05-06 00:46:33 +00:00
const { pathItems, allItemMap, itemPaths } = store.getters;
const item = allItemMap[id];
2018-05-04 18:07:28 +00:00
if (!item) {
return false;
}
2018-05-06 00:46:33 +00:00
let path = itemPaths[id];
2018-05-04 18:07:28 +00:00
if (pathItems[path].length === 1) {
return false;
}
const isFolder = item.type === 'folder';
if (isFolder) {
// Remove trailing slash
path = path.slice(0, -1);
}
for (let suffix = 1; ; suffix += 1) {
let pathWithPrefix = `${path}.${suffix}`;
if (isFolder) {
pathWithPrefix += '/';
}
if (!pathItems[pathWithPrefix]) {
store.commit(`${item.type}/patchItem`, {
id: item.id,
name: `${item.name}.${suffix}`,
});
return true;
}
}
},
};