cleanup + fix

This commit is contained in:
Henry Jameson 2021-03-08 21:56:20 +02:00
parent fada49768d
commit 3d95ea6acb
3 changed files with 2 additions and 5 deletions

View File

@ -116,7 +116,6 @@ const SettingsModal = {
if (data) { this.$store.dispatch('loadSettings', data) } if (data) { this.$store.dispatch('loadSettings', data) }
}, },
restore () { restore () {
console.log(this.dataImporter)
this.dataImporter.importData() this.dataImporter.importData()
}, },
backup () { backup () {

View File

@ -111,7 +111,7 @@ const config = {
}, },
actions: { actions: {
loadSettings ({ dispatch }, data) { loadSettings ({ dispatch }, data) {
const knownKeys = new Set(Object.keys(this.state.config)) const knownKeys = new Set(Object.keys(defaultState))
const presentKeys = new Set(Object.keys(data)) const presentKeys = new Set(Object.keys(data))
const intersection = new Set() const intersection = new Set()
for (let elem of presentKeys) { for (let elem of presentKeys) {
@ -120,7 +120,7 @@ const config = {
} }
} }
Object.keys(intersection).forEach( intersection.forEach(
name => dispatch('setOption', { name, value: data[name] }) name => dispatch('setOption', { name, value: data[name] })
) )
}, },

View File

@ -26,7 +26,6 @@ export const newImporter = ({
const filePicker = document.createElement('input') const filePicker = document.createElement('input')
filePicker.setAttribute('type', 'file') filePicker.setAttribute('type', 'file')
filePicker.setAttribute('accept', '.json') filePicker.setAttribute('accept', '.json')
console.log(1)
filePicker.addEventListener('change', event => { filePicker.addEventListener('change', event => {
if (event.target.files[0]) { if (event.target.files[0]) {
@ -45,7 +44,6 @@ export const newImporter = ({
onImportFailure({ error }) onImportFailure({ error })
} }
} }
console.log(2)
reader.readAsText(event.target.files[0]) reader.readAsText(event.target.files[0])
} }
}) })