533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
|
_loadDictionaries: function (oResult) {
if (oResult.hasOwnProperty("shared_dictionaries")) {
this.oDictionaries = oResult.shared_dictionaries;
}
if (oResult.hasOwnProperty("personal_dictionary")) {
this.oPersonalDictionary = oResult.personal_dictionary;
oBinaryDict.load("__personal__");
}
if (oResult.hasOwnProperty("created_dictionaries_list")) {
this.lCreatedDictionaries = oResult.created_dictionaries_list;
for (let sDicName of this.lCreatedDictionaries) {
let xOption = createNode("option", {value: sDicName, textContent: sDicName});
this.xDicSelector.appendChild(xOption);
}
}
},
addDictionary: function (sDicName) {
if (!this.oDictionaries.hasOwnProperty(sDicName)) {
let xOption = createNode("option", {value: sDicName, textContent: sDicName});
this.xDicSelector.appendChild(xOption);
this.xDicSelector.selectedIndex = this.xDicSelector.options.length-1;
|
<
>
|
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
|
_loadDictionaries: function (oResult) {
if (oResult.hasOwnProperty("shared_dictionaries")) {
this.oDictionaries = oResult.shared_dictionaries;
}
if (oResult.hasOwnProperty("personal_dictionary")) {
this.oPersonalDictionary = oResult.personal_dictionary;
}
if (oResult.hasOwnProperty("created_dictionaries_list")) {
this.lCreatedDictionaries = oResult.created_dictionaries_list;
for (let sDicName of this.lCreatedDictionaries) {
let xOption = createNode("option", {value: sDicName, textContent: sDicName});
this.xDicSelector.appendChild(xOption);
}
}
oBinaryDict.load("__personal__");
},
addDictionary: function (sDicName) {
if (!this.oDictionaries.hasOwnProperty(sDicName)) {
let xOption = createNode("option", {value: sDicName, textContent: sDicName});
this.xDicSelector.appendChild(xOption);
this.xDicSelector.selectedIndex = this.xDicSelector.options.length-1;
|
584
585
586
587
588
589
590
591
592
593
594
595
596
597
|
//console.log(this.oDictionaries[sName]);
return this.oDictionaries[sName];
}
return null;
},
saveDictionary: function (sName, oJSON) {
if (sName == "__personal__") {
browser.runtime.sendMessage({ sCommand: "setDictionary", dParam: {sDictionary: "personal", oDict: oJSON}, dInfo: {} });
browser.storage.local.set({ "personal_dictionary": oJSON });
}
else {
this.oDictionaries[sName] = oJSON;
if (oJSON === null) {
|
>
>
>
>
|
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
|
//console.log(this.oDictionaries[sName]);
return this.oDictionaries[sName];
}
return null;
},
saveDictionary: function (sName, oJSON) {
if (!sName) {
console.log("Error: name of dictionary to save is empty.")
return;
}
if (sName == "__personal__") {
browser.runtime.sendMessage({ sCommand: "setDictionary", dParam: {sDictionary: "personal", oDict: oJSON}, dInfo: {} });
browser.storage.local.set({ "personal_dictionary": oJSON });
}
else {
this.oDictionaries[sName] = oJSON;
if (oJSON === null) {
|
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
|
const oBinaryDict = {
oIBDAWG: null,
sName: "",
sDescription: "",
load: function (sName) {
console.log("lexicon editor, load: " + sName);
this.sName = sName;
let oJSON = oDictHandler.getDictionary(sName);
if (oJSON) {
this.parseDict(oJSON);
} else {
oLexiconTable.clear();
|
|
|
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
|
const oBinaryDict = {
oIBDAWG: null,
sName: "",
sDescription: "",
load: function (sName="__personal__") {
console.log("lexicon editor, load: " + sName);
this.sName = sName;
let oJSON = oDictHandler.getDictionary(sName);
if (oJSON) {
this.parseDict(oJSON);
} else {
oLexiconTable.clear();
|
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
|
},
listen: function () {
document.getElementById("dic_selector").addEventListener("change", () => {this.load(document.getElementById("dic_selector").value)}, false);
document.getElementById("save_button").addEventListener("click", () => { this.build(); }, false);
document.getElementById("export_button").addEventListener("click", () => { this.export(); }, false);
document.getElementById("import_input").addEventListener("change", () => { this.import(); }, false);
document.getElementById("new_dictionary_button").addEventListener("click", () => { switchDisplay("new_dictionary_section"); }, false);
document.getElementById("delete_dictionary_button").addEventListener("click", () => { this.delete(); }, false);
document.getElementById("create_dictionary_button").addEventListener("click", () => { this.newDictionary(); }, false);
},
build: function () {
let xProgressNode = document.getElementById("wait_progress");
let lEntry = oLexiconTable.getEntries();
|
|
|
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
|
},
listen: function () {
document.getElementById("dic_selector").addEventListener("change", () => {this.load(document.getElementById("dic_selector").value)}, false);
document.getElementById("save_button").addEventListener("click", () => { this.build(); }, false);
document.getElementById("export_button").addEventListener("click", () => { this.export(); }, false);
document.getElementById("import_input").addEventListener("change", () => { this.import(); }, false);
//document.getElementById("new_dictionary_button").addEventListener("click", () => { switchDisplay("new_dictionary_section"); }, false);
document.getElementById("delete_dictionary_button").addEventListener("click", () => { this.delete(); }, false);
document.getElementById("create_dictionary_button").addEventListener("click", () => { this.newDictionary(); }, false);
},
build: function () {
let xProgressNode = document.getElementById("wait_progress");
let lEntry = oLexiconTable.getEntries();
|