This commit is contained in:
neauoire
2019-11-08 11:19:27 -05:00
parent c9165d876c
commit fe35350fb1
5 changed files with 72 additions and 34 deletions

View File

@@ -4,7 +4,7 @@
/* global FileReader */
/* global DOMParser */
function Theme () {
function Theme (client) {
this.el = document.createElement('style')
this.el.type = 'text/css'
@@ -32,7 +32,7 @@ function Theme () {
if (isJson(localStorage.theme)) {
const storage = JSON.parse(localStorage.theme)
if (isValid(storage)) {
console.log('Theme', 'Loading localStorage..')
console.log('Theme', 'Loading theme in localStorage..')
this.load(storage)
return
}
@@ -40,6 +40,16 @@ function Theme () {
this.load(this.default)
}
this.open = () => {
console.log('Theme', 'Open theme..')
const input = document.createElement('input')
input.type = 'file'
input.onchange = (e) => {
this.read(e.target.files[0], this.load)
}
input.click()
}
this.load = (data) => {
const theme = this.parse(data)
if (!isValid(theme)) { console.warn('Theme', 'Invalid format'); return }
@@ -84,16 +94,20 @@ function Theme () {
this.drop = (e) => {
e.preventDefault()
const file = e.dataTransfer.files[0]
if (!file || !file.name) { console.warn('Theme', 'Could not read file.'); return }
if (file.name.indexOf('.svg') < 0) { console.warn('Theme', 'Not a SVG file.'); return }
const reader = new FileReader()
reader.onload = (e) => {
this.load(e.target.result)
if (file.name.indexOf('.svg') > -1) {
this.read(file, this.load)
}
reader.readAsText(file)
e.stopPropagation()
}
this.read = (file, callback) => {
const reader = new FileReader()
reader.onload = (event) => {
callback(event.target.result)
}
reader.readAsText(file, 'UTF-8')
}
// Helpers
function extract (xml) {