diff --git a/src/App.vue b/src/App.vue
index aad728f..553474a 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -152,6 +152,17 @@
|
|
+
|
+
+
+
+
+ |
+
+
|
@@ -506,6 +517,43 @@ export default {
}
list.splice(index,1);
localStorage.setItem(kind, JSON.stringify(list));
+ },
+ saveTextToFile() {
+ var data = {
+ directory: this.options.extra,
+ single: this.options.single
+ }
+ var file = new Blob([JSON.stringify(data)], {type: 'application/json;charset=utf-8'});
+
+ var anchor = document.createElement('a');
+ anchor.href = URL.createObjectURL(file);
+ anchor.download = 'explorer.json';
+ anchor.click();
+ URL.revokeObjectURL(anchor.href);
+ },
+ resetFile(e) {
+ e.target.value = '';
+ },
+ loadTextFromFile(e) {
+ var f = e.target.files;
+ var reader = new FileReader();
+ var options = this.options;
+
+ reader.onloadend = function() {
+ var data = JSON.parse(reader.result);
+ if (data.directory) {
+ options.extra = data.directory;
+ localStorage.setItem('directory', JSON.stringify(options.extra));
+ }
+ if (data.single) {
+ options.single = data.single;
+ localStorage.setItem('server', JSON.stringify(options.single));
+ }
+ }
+ reader.readAsText(f[0]);
+ },
+ clickParent(e) {
+ e.target.parentNode.click();
}
}
}
@@ -525,6 +573,11 @@ export default {
.click {
cursor: pointer;
}
+
+.centre {
+ text-align: center;
+}
+
.left {
text-align: left;
}
@@ -649,4 +702,11 @@ button.arrow {
.copyright a:hover {
text-decoration: underline;
}
+
+label.loadfile input {
+ opacity: 0;
+ width: 0.1px;
+ height: 0.1px;
+ position: absolute;
+}