From 15bad22de687837c2226681a046625d77bf67d93 Mon Sep 17 00:00:00 2001 From: Xuan Sang LE Date: Sat, 6 Mar 2021 11:27:49 +0100 Subject: [PATCH] Regen package --- GPClient/build/debug/main.js | 215 +----------------------------- GPClient/build/release/IOMail.zip | Bin 1148 -> 0 bytes packages.json | 20 +-- 3 files changed, 11 insertions(+), 224 deletions(-) delete mode 100644 GPClient/build/release/IOMail.zip diff --git a/GPClient/build/debug/main.js b/GPClient/build/debug/main.js index ddbaf1e..360bdda 100644 --- a/GPClient/build/debug/main.js +++ b/GPClient/build/debug/main.js @@ -1,214 +1 @@ -(function() { - var ClientDialog, ClientListDialog, GPClient; - - ClientDialog = class ClientDialog extends this.OS.GUI.BasicDialog { - constructor() { - super("ClientDialog", ClientDialog.scheme); - } - - main() { - var el, i, inputs, len; - super.main(); - inputs = $(this.scheme).find("input[type=text]"); - if (this.data) { - for (i = 0, len = inputs.length; i < len; i++) { - el = inputs[i]; - if (this.data[el.name]) { - el.value = this.data[el.name]; - } - } - } - this.find("btncancel").onbtclick = () => { - return this.quit(); - }; - return this.find("btnok").onbtclick = (e) => { - var data, j, len1; - data = {}; - for (j = 0, len1 = inputs.length; j < len1; j++) { - el = inputs[j]; - if (el.value === "") { - return this.notify(__("Please enter all the fields")); - } - data[el.name] = el.value; - } - if (this.handle) { - this.handle(data); - } - return this.quit(); - }; - } - - }; - - ClientDialog.scheme = ` - -
- -
- - -
- - -
- - -
-
-
-
-
`; - - - ClientListDialog = class ClientListDialog extends this.OS.GUI.BasicDialog { - constructor() { - super("ClientListDialog", ClientListDialog.scheme); - } - - main() { - super.main(); - this.clist = this.find("client-list"); - this.clist.buttons = [ - { - text: "", - iconclass: "fa fa-plus-circle", - onbtclick: (e) => { - return this.openDialog(new ClientDialog(), - { - title: __("Add new client") - }).then((data) => { - //console.log(data) - this.parent.setting.clients.push(data); - return this.clist.data = this.parent.setting.clients; - }); - } - }, - { - text: "", - iconclass: "fa fa-minus-circle", - onbtclick: (e) => { - var index, - item; - item = this.clist.selectedItem; - index = this.clist.selected; - if (!item) { - return; - } - return this.ask({ - text: __("Do you realy want to delete: `{0}`", - item.data.text) - }).then((d) => { - if (!d) { - return; - } - this.parent.setting.clients.splice(index, - 1); - return this.clist.data = this.parent.setting.clients; - }); - } - }, - { - text: "", - iconclass: "fa fa-pencil-square-o", - onbtclick: (e) => { - var item; - item = this.clist.selectedItem; - if (!item) { - return; - } - return this.openDialog(new ClientDialog(), - { - title: __("Add new client"), - text: item.data.text, - url: item.data.url - }).then((data) => { - //console.log(data) - if (!data) { - return; - } - item.data.text = data.text; - item.data.url = data.url; - return this.clist.data = this.parent.setting.clients; - }); - } - } - ]; - this.find("btnswitch").onbtclick = (e) => { - var item; - item = this.clist.selectedItem; - if (!item) { - return; - } - this.parent.setting.curl = item.data.url; - this.parent.setting.cname = item.data.text; - this.parent.switchClient(); - return this.quit(); - }; - return this.clist.data = this.parent.setting.clients; - } - - }; - - ClientListDialog.scheme = ` - - -
- -
- -`; - - GPClient = class GPClient extends this.OS.application.BaseApplication { - constructor(args) { - super("GPClient", args); - } - - main() { - if (!this.setting.clients) { - this.setting.clients = []; - } - this.container = this.find("container"); - this.bindKey("CTRL-M", () => { - return this.openDialog(new ClientListDialog(), { - title: __("Client Manager") - }); - }); - return this.switchClient(); - } - - switchClient() { - if (this.setting.curl) { - this.container.src = this.setting.curl; - return this.scheme.apptitle = this.setting.cname; - } else { - return this.notify(__("No client selected, manager client in menu Options > Client manager")); - } - } - - menu() { - return [ - { - text: "__(Options)", - nodes: [ - { - text: "__(Client manager)", - shortcut: "C-M" - } - ], - onchildselect: (e) => { - return this.openDialog(new ClientListDialog(), - { - title: __("Client Manager") - }); - } - } - ]; - } - - }; - - GPClient.singleton = true; - - this.OS.register("GPClient", GPClient); - -}).call(this); +(function(){var t,i,e;(t=class t extends this.OS.GUI.BasicDialog{constructor(){super("ClientDialog",t.scheme)}main(){var t,i,e,n;if(super.main(),e=$(this.scheme).find("input[type=text]"),this.data)for(i=0,n=e.length;ithis.quit(),this.find("btnok").onbtclick=i=>{var n,a,s;for(n={},a=0,s=e.length;a\n \n
\n \n
\n \n \n
\n \n \n
\n \n \n
\n
\n
\n
\n',(i=class i extends this.OS.GUI.BasicDialog{constructor(){super("ClientListDialog",i.scheme)}main(){return super.main(),this.clist=this.find("client-list"),this.clist.buttons=[{text:"",iconclass:"fa fa-plus-circle",onbtclick:i=>this.openDialog(new t,{title:__("Add new client")}).then(t=>(this.parent.setting.clients.push(t),this.clist.data=this.parent.setting.clients))},{text:"",iconclass:"fa fa-minus-circle",onbtclick:t=>{var i,e;if(e=this.clist.selectedItem,i=this.clist.selected,e)return this.ask({text:__("Do you realy want to delete: `{0}`",e.data.text)}).then(t=>{if(t)return this.parent.setting.clients.splice(i,1),this.clist.data=this.parent.setting.clients})}},{text:"",iconclass:"fa fa-pencil-square-o",onbtclick:i=>{var e;if(e=this.clist.selectedItem)return this.openDialog(new t,{title:__("Add new client"),text:e.data.text,url:e.data.url}).then(t=>{if(t)return e.data.text=t.text,e.data.url=t.url,this.clist.data=this.parent.setting.clients})}}],this.find("btnswitch").onbtclick=t=>{var i;if(i=this.clist.selectedItem)return this.parent.setting.curl=i.data.url,this.parent.setting.cname=i.data.text,this.parent.switchClient(),this.quit()},this.clist.data=this.parent.setting.clients}}).scheme='\n \n \n
\n \n
\n \n',(e=class extends this.OS.application.BaseApplication{constructor(t){super("GPClient",t)}main(){return this.setting.clients||(this.setting.clients=[]),this.container=this.find("container"),this.bindKey("CTRL-M",()=>this.openDialog(new i,{title:__("Client Manager")})),this.switchClient()}switchClient(){return this.setting.curl?(this.container.src=this.setting.curl,this.scheme.apptitle=this.setting.cname):this.notify(__("No client selected, manager client in menu Options > Client manager"))}menu(){return[{text:"__(Options)",nodes:[{text:"__(Client manager)",shortcut:"C-M"}],onchildselect:t=>this.openDialog(new i,{title:__("Client Manager")})}]}}).singleton=!0,this.OS.register("GPClient",e)}).call(this); \ No newline at end of file diff --git a/GPClient/build/release/IOMail.zip b/GPClient/build/release/IOMail.zip deleted file mode 100644 index 09ea387c0e46d7f3ab5a5adefe800e8c142ab997..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1148 zcmZ`&PjAyO6z~23B5>r6F$WT9P0L|Iv`wWUhCtJ_YC9q{xz0;tme`T)wnJ6VdL^QtGcRJYN5>Olw}XgRVy>lrpnw6ABNpFt9#_k!bIseSo6fDpliM0 zO7e^ugNB3=lCU<&8Dy$}+9ek`p!p@0N&O(XiK z+odE0F-dJi_uV08mbFD3)pQI?c*^|gSY49p>>wP7L?fNVXdcnj+QRfY9fxWtR5~4p zG0f<2(5bvuX*#Y?muKh=%Kf_M;niWsKR&4ofVT zL1=`WWMGwy?sfO-(dU){k_%O`l`=ojc zo_8klA_H=a2(EY{bB#lQCW+GI-w1cS(b3lSo!0*!A{N_No6oWt*}PxtFpiIU