Editor.Panel.extend({ style: ` :host { margin: 5px; } h2 { color: #f90; } .bottom { height: 30px; } `, template: `

Uuid Convert


1. 填入要轉換的UUID

要轉換的UUID

執行
`, $: { /** uuid */ uuid: "#uuid", /** 生成按鈕 */ run: "#run", }, ready() { // Editor.Ipc.sendToMain("uuidconvert:panel-load-finish"); this.onClickRun(); }, /** 保存按鈕點擊事件 */ onClickRun() { this.$run.addEventListener("confirm", () => { if (!this.$uuid._value) { Editor.error("請輸入要轉換的UUID"); return; } Editor.Ipc.sendToMain("uuidconvert:run-click", this.$uuid._value); }); }, messages: { // "setDefault": function (event, ...agrs) { // if (event.reply) { // //if no error, the first argument should be null // event.reply(null, "Fine, thank you!"); // } // } } });