68 lines
2.3 KiB
JavaScript
68 lines
2.3 KiB
JavaScript
/**
|
||
* @desc 工作端·文件拖拽模块
|
||
* @author Tevin
|
||
*/
|
||
|
||
const fs = require('fs');
|
||
const mngFolder = require('../build/manageFolder');
|
||
const pasteImg = require('./pasteImg');
|
||
|
||
module.exports = {
|
||
//拖拽图片
|
||
_dropImg: function (files, paths, editor) {
|
||
mngFolder.createFolder(paths.createDirPath);
|
||
for (let i = 0, file; file = files[i]; i++) {
|
||
fs.createReadStream(file.path).pipe(fs.createWriteStream(paths.writePath + file.name));
|
||
editor.insertText(' \n', editor);
|
||
}
|
||
},
|
||
/**
|
||
* 监听拖拽
|
||
* @param {function} getEditorPath - 获取编辑器当前文档状态的方法的引用
|
||
*/
|
||
listenDrop: function (getEditorPath) {
|
||
this._getEditorPath = getEditorPath;
|
||
atom.document.getElementsByClassName('item-views')[0].addEventListener('drop', (e) => {
|
||
//TODO: console.log(e.dataTransfer.getData("treeViewDrag"));
|
||
//文件验证,包含非图片文件跳过不工作
|
||
const files = e.dataTransfer.files;
|
||
let allImg = true;
|
||
for (let file of files) {
|
||
if (file.type.indexOf('image/') !== 0) {
|
||
allImg = false;
|
||
}
|
||
}
|
||
if (!allImg) {
|
||
return;
|
||
}
|
||
//编辑器状态验证,非markdown不工作
|
||
const [isOnEdit, editor, editPath] = this._getEditorPath();
|
||
if (!isOnEdit) {
|
||
return;
|
||
}
|
||
const paths = pasteImg.getPaths(editPath);
|
||
if (!paths.mdFile) {
|
||
return;
|
||
}
|
||
//验证路径,非amWiki不工作
|
||
if (!mngFolder.isAmWiki(editPath)) {
|
||
return;
|
||
}
|
||
//条件匹配,阻止默认动作
|
||
e.stopPropagation();
|
||
//执行拖拽图片
|
||
this._dropImg(files, paths, editor);
|
||
});
|
||
|
||
/* TODO:
|
||
atom.packages.activatePackage('tree-view').then(function (pkg) {
|
||
this.treeView = pkg.mainModule.treeView;
|
||
this.treeView[0].addEventListener('dragstart', function (e) {
|
||
let path = e.target.childNodes[0].getAttribute('data-path');
|
||
e.dataTransfer.setData("treeViewDrag", path);
|
||
});
|
||
});*/
|
||
}
|
||
};
|
||
|