Changed ExportDictionary to include dictionary's name as exported file name.
This commit is contained in:
parent
9fb7061f5e
commit
78fa2e88db
|
@ -244,7 +244,9 @@ function ShowSettings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function SaveSettings() {
|
function SaveSettings() {
|
||||||
currentDictionary.name = htmlEntities(document.getElementById("dictionaryNameEdit").value);
|
if (htmlEntities(document.getElementById("dictionaryNameEdit").value) != "") {
|
||||||
|
currentDictionary.name = htmlEntities(document.getElementById("dictionaryNameEdit").value);
|
||||||
|
}
|
||||||
currentDictionary.settings.isComplete = document.getElementById("dictionaryIsComplete").checked;
|
currentDictionary.settings.isComplete = document.getElementById("dictionaryIsComplete").checked;
|
||||||
ShowDictionary();
|
ShowDictionary();
|
||||||
SaveDictionary();
|
SaveDictionary();
|
||||||
|
@ -255,20 +257,6 @@ function HideSettings() {
|
||||||
document.getElementById("wordEntryForm").style.display = (currentDictionary.settings.isComplete) ? "none" : "block";
|
document.getElementById("wordEntryForm").style.display = (currentDictionary.settings.isComplete) ? "none" : "block";
|
||||||
}
|
}
|
||||||
|
|
||||||
function dynamicSort(property) {
|
|
||||||
/* Retrieved from http://stackoverflow.com/a/4760279
|
|
||||||
Usage: theArray.sort(dynamicSort("objectProperty"));*/
|
|
||||||
var sortOrder = 1;
|
|
||||||
if (property[0] === "-") {
|
|
||||||
sortOrder = -1;
|
|
||||||
property = property.substr(1);
|
|
||||||
}
|
|
||||||
return function (a, b) {
|
|
||||||
var result = (a[property] < b[property]) ? -1 : (a[property] > b[property]) ? 1 : 0;
|
|
||||||
return result * sortOrder;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function EmptyWholeDictionary() {
|
function EmptyWholeDictionary() {
|
||||||
if (confirm("This will delete the entire current dictionary. If you do not have a backed up export, you will lose it forever!\n\nDo you still want to delete?")) {
|
if (confirm("This will delete the entire current dictionary. If you do not have a backed up export, you will lose it forever!\n\nDo you still want to delete?")) {
|
||||||
currentDictionary = JSON.parse(defaultDictionaryJSON);
|
currentDictionary = JSON.parse(defaultDictionaryJSON);
|
||||||
|
@ -294,7 +282,11 @@ function LoadDictionary() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function ExportDictionary() {
|
function ExportDictionary() {
|
||||||
download("export.dict", localStorage.getItem('dictionary'));
|
var downloadName = currentDictionary.name.replace(/\W/g, '');
|
||||||
|
if (downloadName == "") {
|
||||||
|
downloadName = "export";
|
||||||
|
}
|
||||||
|
download(downloadName + ".dict", localStorage.getItem('dictionary'));
|
||||||
}
|
}
|
||||||
|
|
||||||
function ImportDictionary() {
|
function ImportDictionary() {
|
||||||
|
@ -347,6 +339,20 @@ function htmlEntitiesParse(string) {
|
||||||
return String(string).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, "'").replace(/<br>/g, '\n');
|
return String(string).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, "'").replace(/<br>/g, '\n');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function dynamicSort(property) {
|
||||||
|
/* Retrieved from http://stackoverflow.com/a/4760279
|
||||||
|
Usage: theArray.sort(dynamicSort("objectProperty"));*/
|
||||||
|
var sortOrder = 1;
|
||||||
|
if (property[0] === "-") {
|
||||||
|
sortOrder = -1;
|
||||||
|
property = property.substr(1);
|
||||||
|
}
|
||||||
|
return function (a, b) {
|
||||||
|
var result = (a[property] < b[property]) ? -1 : (a[property] > b[property]) ? 1 : 0;
|
||||||
|
return result * sortOrder;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function download(filename, text) {
|
function download(filename, text) {
|
||||||
/* Retrieved from http://stackoverflow.com/a/18197341/3508346
|
/* Retrieved from http://stackoverflow.com/a/18197341/3508346
|
||||||
Usage: download('test.txt', 'Hello world!');*/
|
Usage: download('test.txt', 'Hello world!');*/
|
||||||
|
|
Loading…
Reference in New Issue