2018-09-28 10:01:11 -05:00
|
|
|
<template>
|
|
|
|
<div class="nicnklzforebnpfgasiypmpdaaglujqm">
|
|
|
|
<label>
|
|
|
|
<span>%i18n:@light-theme%</span>
|
|
|
|
<ui-select v-model="light" placeholder="%i18n:@light-theme%">
|
2018-10-02 02:04:31 -05:00
|
|
|
<option v-for="x in themes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
2018-09-28 10:01:11 -05:00
|
|
|
</ui-select>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<label>
|
|
|
|
<span>%i18n:@dark-theme%</span>
|
|
|
|
<ui-select v-model="dark" placeholder="%i18n:@dark-theme%">
|
2018-10-02 02:04:31 -05:00
|
|
|
<option v-for="x in themes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
2018-09-28 10:01:11 -05:00
|
|
|
</ui-select>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<details class="creator">
|
2018-10-02 02:23:55 -05:00
|
|
|
<summary>%fa:palette% %i18n:@create-a-theme%</summary>
|
2018-09-28 10:01:11 -05:00
|
|
|
<div>
|
|
|
|
<span>%i18n:@base-theme%:</span>
|
|
|
|
<ui-radio v-model="myThemeBase" value="light">%i18n:@base-theme-light%</ui-radio>
|
|
|
|
<ui-radio v-model="myThemeBase" value="dark">%i18n:@base-theme-dark%</ui-radio>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<ui-input v-model="myThemeName">
|
|
|
|
<span>%i18n:@theme-name%</span>
|
|
|
|
</ui-input>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div style="padding-bottom:8px;">%i18n:@primary-color%:</div>
|
|
|
|
<color-picker v-model="myThemePrimary"/>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div style="padding-bottom:8px;">%i18n:@secondary-color%:</div>
|
|
|
|
<color-picker v-model="myThemeSecondary"/>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div style="padding-bottom:8px;">%i18n:@text-color%:</div>
|
|
|
|
<color-picker v-model="myThemeText"/>
|
|
|
|
</div>
|
2018-10-02 02:23:55 -05:00
|
|
|
<ui-button @click="preview()">%fa:eye% %i18n:@preview-created-theme%</ui-button>
|
|
|
|
<ui-button primary @click="gen()">%fa:save R% %i18n:@save-created-theme%</ui-button>
|
2018-09-28 10:01:11 -05:00
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
2018-10-02 02:23:55 -05:00
|
|
|
<summary>%fa:download% %i18n:@install-a-theme%</summary>
|
2018-09-28 10:01:11 -05:00
|
|
|
<ui-textarea v-model="installThemeCode">
|
|
|
|
<span>%i18n:@theme-code%</span>
|
|
|
|
</ui-textarea>
|
2018-10-02 02:23:55 -05:00
|
|
|
<ui-button @click="install()">%fa:check% %i18n:@install%</ui-button>
|
2018-09-28 10:01:11 -05:00
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
2018-10-02 02:23:55 -05:00
|
|
|
<summary>%fa:folder-open% %i18n:@installed-themes%</summary>
|
2018-10-02 02:10:45 -05:00
|
|
|
<ui-select v-model="selectedInstalledThemeId" placeholder="%i18n:@select-theme%">
|
2018-10-02 02:04:31 -05:00
|
|
|
<option v-for="x in installedThemes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
2018-09-28 10:01:11 -05:00
|
|
|
</ui-select>
|
2018-10-02 02:10:45 -05:00
|
|
|
<template v-if="selectedInstalledTheme">
|
|
|
|
<ui-input readonly :value="selectedInstalledTheme.author">
|
|
|
|
<span>%i18n:@author%</span>
|
|
|
|
</ui-input>
|
|
|
|
<ui-textarea v-if="selectedInstalledTheme.desc" readonly :value="selectedInstalledTheme.desc">
|
|
|
|
<span>%i18n:@desc%</span>
|
|
|
|
</ui-textarea>
|
|
|
|
<ui-textarea readonly :value="selectedInstalledThemeCode">
|
|
|
|
<span>%i18n:@theme-code%</span>
|
|
|
|
</ui-textarea>
|
2018-10-02 02:23:55 -05:00
|
|
|
<ui-button @click="uninstall()">%fa:trash-alt R% %i18n:@uninstall%</ui-button>
|
2018-10-02 02:10:45 -05:00
|
|
|
</template>
|
2018-09-28 10:01:11 -05:00
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-10-02 02:04:31 -05:00
|
|
|
import { lightTheme, darkTheme, builtinThemes, applyTheme, Theme } from '../../../theme';
|
2018-09-28 10:01:11 -05:00
|
|
|
import { Chrome } from 'vue-color';
|
|
|
|
import * as uuid from 'uuid';
|
|
|
|
import * as tinycolor from 'tinycolor2';
|
2018-10-02 02:04:31 -05:00
|
|
|
import * as JSON5 from 'json5';
|
|
|
|
|
|
|
|
// 後方互換性のため
|
|
|
|
function convertOldThemedefinition(t) {
|
|
|
|
const t2 = {
|
|
|
|
id: t.meta.id,
|
|
|
|
name: t.meta.name,
|
|
|
|
author: t.meta.author,
|
|
|
|
base: t.meta.base,
|
|
|
|
vars: t.meta.vars,
|
|
|
|
props: t
|
|
|
|
};
|
|
|
|
delete t2.props.meta;
|
|
|
|
return t2;
|
|
|
|
}
|
2018-09-28 10:01:11 -05:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
ColorPicker: Chrome
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
installThemeCode: null,
|
2018-10-02 02:10:45 -05:00
|
|
|
selectedInstalledThemeId: null,
|
2018-09-28 10:01:11 -05:00
|
|
|
myThemeBase: 'light',
|
|
|
|
myThemeName: '',
|
2018-10-02 02:04:31 -05:00
|
|
|
myThemePrimary: lightTheme.vars.primary,
|
|
|
|
myThemeSecondary: lightTheme.vars.secondary,
|
|
|
|
myThemeText: lightTheme.vars.text
|
2018-09-28 10:01:11 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2018-10-02 02:04:31 -05:00
|
|
|
themes(): Theme[] {
|
2018-09-28 10:01:11 -05:00
|
|
|
return this.$store.state.device.themes.concat(builtinThemes);
|
|
|
|
},
|
|
|
|
|
2018-10-02 02:04:31 -05:00
|
|
|
installedThemes(): Theme[] {
|
2018-09-28 10:01:11 -05:00
|
|
|
return this.$store.state.device.themes;
|
|
|
|
},
|
|
|
|
|
|
|
|
light: {
|
|
|
|
get() { return this.$store.state.device.lightTheme; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'lightTheme', value }); }
|
|
|
|
},
|
|
|
|
|
|
|
|
dark: {
|
|
|
|
get() { return this.$store.state.device.darkTheme; },
|
|
|
|
set(value) { this.$store.commit('device/set', { key: 'darkTheme', value }); }
|
|
|
|
},
|
|
|
|
|
2018-10-02 02:10:45 -05:00
|
|
|
selectedInstalledTheme() {
|
|
|
|
if (this.selectedInstalledThemeId == null) return null;
|
|
|
|
return this.installedThemes.find(x => x.id == this.selectedInstalledThemeId);
|
|
|
|
},
|
|
|
|
|
2018-09-28 10:01:11 -05:00
|
|
|
selectedInstalledThemeCode() {
|
|
|
|
if (this.selectedInstalledTheme == null) return null;
|
2018-10-02 02:10:45 -05:00
|
|
|
return JSON5.stringify(this.selectedInstalledTheme, null, '\t');
|
2018-09-28 10:01:11 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
myTheme(): any {
|
|
|
|
return {
|
2018-10-02 02:04:31 -05:00
|
|
|
name: this.myThemeName,
|
2018-10-02 02:10:45 -05:00
|
|
|
author: this.$store.state.i.username,
|
2018-10-02 02:04:31 -05:00
|
|
|
base: this.myThemeBase,
|
|
|
|
vars: {
|
|
|
|
primary: tinycolor(typeof this.myThemePrimary == 'string' ? this.myThemePrimary : this.myThemePrimary.rgba).toRgbString(),
|
|
|
|
secondary: tinycolor(typeof this.myThemeSecondary == 'string' ? this.myThemeSecondary : this.myThemeSecondary.rgba).toRgbString(),
|
|
|
|
text: tinycolor(typeof this.myThemeText == 'string' ? this.myThemeText : this.myThemeText.rgba).toRgbString()
|
2018-09-28 10:01:11 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
myThemeBase(v) {
|
|
|
|
const theme = v == 'light' ? lightTheme : darkTheme;
|
2018-10-02 02:04:31 -05:00
|
|
|
this.myThemePrimary = theme.vars.primary;
|
|
|
|
this.myThemeSecondary = theme.vars.secondary;
|
|
|
|
this.myThemeText = theme.vars.text;
|
2018-09-28 10:01:11 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-10-02 02:04:31 -05:00
|
|
|
beforeCreate() {
|
|
|
|
// migrate old theme definitions
|
|
|
|
// 後方互換性のため
|
|
|
|
this.$store.commit('device/set', {
|
|
|
|
key: 'themes', value: this.$store.state.device.themes.map(t => {
|
|
|
|
if (t.id == null) {
|
|
|
|
return convertOldThemedefinition(t);
|
|
|
|
} else {
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-09-28 10:01:11 -05:00
|
|
|
methods: {
|
|
|
|
install() {
|
2018-10-02 02:04:31 -05:00
|
|
|
let theme;
|
|
|
|
|
|
|
|
try {
|
|
|
|
theme = JSON5.parse(this.installThemeCode);
|
|
|
|
} catch (e) {
|
2018-09-28 10:01:11 -05:00
|
|
|
alert('%i18n:@invalid-theme%');
|
|
|
|
return;
|
|
|
|
}
|
2018-10-02 02:04:31 -05:00
|
|
|
|
|
|
|
// 後方互換性のため
|
|
|
|
if (theme.id == null && theme.meta != null) {
|
|
|
|
theme = convertOldThemedefinition(theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (theme.id == null) {
|
|
|
|
alert('%i18n:@invalid-theme%');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.$store.state.device.themes.some(t => t.id == theme.id)) {
|
2018-09-28 10:01:11 -05:00
|
|
|
alert('%i18n:@already-installed%');
|
|
|
|
return;
|
|
|
|
}
|
2018-10-02 02:04:31 -05:00
|
|
|
|
2018-09-28 10:01:11 -05:00
|
|
|
const themes = this.$store.state.device.themes.concat(theme);
|
|
|
|
this.$store.commit('device/set', {
|
|
|
|
key: 'themes', value: themes
|
|
|
|
});
|
2018-10-02 02:04:31 -05:00
|
|
|
|
|
|
|
alert('%i18n:@installed%'.replace('{}', theme.name));
|
2018-09-30 09:03:21 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
uninstall() {
|
2018-10-02 02:10:45 -05:00
|
|
|
const theme = this.selectedInstalledTheme;
|
2018-10-02 02:04:31 -05:00
|
|
|
const themes = this.$store.state.device.themes.filter(t => t.id != theme.id);
|
2018-09-30 09:03:21 -05:00
|
|
|
this.$store.commit('device/set', {
|
|
|
|
key: 'themes', value: themes
|
|
|
|
});
|
2018-10-02 02:04:31 -05:00
|
|
|
alert('%i18n:@uninstalled%'.replace('{}', theme.name));
|
2018-09-28 10:01:11 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
preview() {
|
|
|
|
applyTheme(this.myTheme, false);
|
|
|
|
},
|
|
|
|
|
|
|
|
gen() {
|
|
|
|
const theme = this.myTheme;
|
2018-10-02 02:04:31 -05:00
|
|
|
theme.id = uuid();
|
2018-09-28 10:01:11 -05:00
|
|
|
const themes = this.$store.state.device.themes.concat(theme);
|
|
|
|
this.$store.commit('device/set', {
|
|
|
|
key: 'themes', value: themes
|
|
|
|
});
|
|
|
|
alert('%i18n:@saved%');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.nicnklzforebnpfgasiypmpdaaglujqm
|
2018-10-02 02:23:55 -05:00
|
|
|
> details
|
|
|
|
margin-top 16px
|
|
|
|
padding-top 16px
|
|
|
|
border-top solid 1px var(--faceDivider)
|
|
|
|
|
2018-09-28 10:01:11 -05:00
|
|
|
> .creator
|
|
|
|
> div
|
|
|
|
padding 16px 0
|
|
|
|
border-bottom solid 1px var(--faceDivider)
|
|
|
|
</style>
|