ccc-tnt-psd2ui/ccc-tnt-psd2ui-v2.4.x/panel/index.js

208 lines
6.8 KiB
JavaScript
Raw Normal View History

2023-07-20 11:00:23 +00:00
const fs = require('fs');
const path = require('path');
const PACKAGE_NAME = 'ccc-tnt-psd2ui';
const PACKAGE_PATH = Editor.url(`packages://${PACKAGE_NAME}/`);
const DIR_PATH = path.join(PACKAGE_PATH, 'panel/');
// panel/index.js, this filename needs to match the one registered in package.json
Editor.Panel.extend({
template: fs.readFileSync(path.join(DIR_PATH, 'index.html'), 'utf8'),
ready() {
const root = this.shadowRoot;
loadCSS(root, path.join(DIR_PATH, 'index.css'));
const app = new window.Vue({
el: this.shadowRoot,
data: {
isImgOnly: false,
isForceImg: false,
isProcessing: false,
2023-07-27 06:30:29 +00:00
isPinyin: true,
2023-07-20 11:00:23 +00:00
},
methods: {
start() {
let dropArea = root.getElementById('drop-area')
dropArea.addEventListener('drop', this.onDropFiles);
let forceImg = root.getElementById("is-force-img")
forceImg.addEventListener('change', () => {
this.isForceImg = !this.isForceImg;
});
let onlyImg = root.getElementById("is-img-only")
onlyImg.addEventListener('change', () => {
this.isImgOnly = !this.isImgOnly;
});
2023-07-27 06:30:29 +00:00
let pinyin = root.getElementById("is-pinyin")
pinyin.addEventListener('change', () => {
this.isPinyin = !this.isPinyin;
});
2023-07-20 11:00:23 +00:00
let str = localStorage.getItem(`${Editor.Project.name}_psd2ui_output`);
if (str) {
let outputInput = root.getElementById("output");
outputInput.value = str;
}
Editor.Ipc.sendToMain('ccc-tnt-psd2ui:check-update');
2023-07-20 11:00:23 +00:00
},
onDragEnter(event) {
event.stopPropagation()
event.preventDefault()
},
onDragLeave(event) {
event.stopPropagation()
event.preventDefault()
},
onDragOver(event) {
event.stopPropagation()
event.preventDefault()
},
onDropFiles(event) {
if (this.isProcessing) {
Editor.Dialog.warn("当前有正在处理的文件,请等待完成。\n如果已完成请关闭 DOS 窗口。")
return;
}
event.stopPropagation()
event.preventDefault()
let files = [];
[].forEach.call(event.dataTransfer.files, function (file) {
files.push(file.path);
}, false);
this.processPsd(files);
},
onClickDropArea(event) {
if (this.isProcessing) {
// Editor.Dialog.warn("当前有正在处理的文件,请等待完成。\n如果已完成请关闭 DOS 窗口。")
// Editor.
return;
}
// 参数参考
// https://www.electronjs.org/docs/latest/api/dialog/#dialogshowopendialogbrowserwindow-options
2023-07-20 11:00:23 +00:00
let result = Editor.Dialog.openFile({
properties: ['openFile', 'multiSelections'],
type: "file",
filters: [
2023-07-20 11:00:23 +00:00
{
extensions: ["psd"],
name: "请选择 PSD"
2023-07-20 11:00:23 +00:00
}
]
});
let files = result;
this.processPsd(files);
},
processPsd(files) {
if (this.isProcessing) {
return;
}
let outputInput = root.getElementById("output")
let output = outputInput.value;
//
this.isProcessing = true;
2023-07-27 06:30:29 +00:00
Editor.Ipc.sendToMain('ccc-tnt-psd2ui:on-drop-file', { output, files, isForceImg: this.isForceImg, isImgOnly: this.isImgOnly, isPinyin: this.isPinyin }, (err) => {
2023-07-20 11:00:23 +00:00
this.isProcessing = false;
});
},
onClickCache() {
if (this.isProcessing) {
return;
}
this.isProcessing = true;
// Editor.Ipc.sendToMain('ccc-tnt-psd2ui:clicked');
Editor.Ipc.sendToMain('ccc-tnt-psd2ui:onClickCache', null, () => {
this.isProcessing = false;
});
},
/**
* 保存配置
*/
onSaveBtnClick() {
console.log(`index-> onclick`);
if (this.isProcessing) return;
this.isProcessing = true;
let config = this.cache;
// Editor.Ipc.sendToMain('ccc-tnt-psd2ui:clicked');
Editor.Ipc.sendToMain('ccc-tnt-psd2ui:save-config', config, () => {
this.isProcessing = false;
console.log(`index-> `);
});
},
/**
* 读取配置
*/
readConfig() {
Editor.Ipc.sendToMain('ccc-tnt-psd2ui:read-cache', (err, config) => {
if (err || !config) return;
});
},
}
});
// app.readConfig();
app.start();
},
close() {
const root = this.shadowRoot;
let outputInput = root.getElementById("output")
localStorage.setItem(`${Editor.Project.name}_psd2ui_output`, outputInput.value);
},
// register your ipc messages here
messages: {
// 'ccc-tnt-psd2ui:hello' (event) {
// this.$label.innerText = 'Hello!';
// }
}
});
/**
* 加载样式表
* @param {HTMLElement} root 根元素
* @param {string} path CSS 文件路径
*/
function loadCSS(root, path) {
const link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = path;
const el = root.querySelector('#app');
root.insertBefore(link, el);
}