mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-31 01:24:42 +02:00
Completed theme switching functionality
This commit is contained in:
parent
e31e6d4239
commit
8b3d3cab88
@ -87,7 +87,6 @@ export default {
|
|||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|
||||||
@import '@/styles/constants.scss';
|
|
||||||
@import '@/styles/media-queries.scss';
|
@import '@/styles/media-queries.scss';
|
||||||
|
|
||||||
.collapsable {
|
.collapsable {
|
||||||
@ -143,7 +142,7 @@ export default {
|
|||||||
border-radius: var(--curve-factor);
|
border-radius: var(--curve-factor);
|
||||||
transition: all 0.25s ease-out;
|
transition: all 0.25s ease-out;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: var(--background-transparent);
|
color: var(--item-group-background);
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -177,8 +176,8 @@ export default {
|
|||||||
max-height: 0px;
|
max-height: 0px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: max-height .25s ease-in-out;
|
transition: max-height .25s ease-in-out;
|
||||||
background: var(--background-transparent);
|
background: var(--item-group-background);
|
||||||
border-radius: 0 0 $inner-radius $inner-radius;
|
border-radius: 0 0 var(--curve-factor) var(--curve-factor);
|
||||||
}
|
}
|
||||||
|
|
||||||
.toggle:checked + .lbl-toggle + .collapsible-content {
|
.toggle:checked + .lbl-toggle + .collapsible-content {
|
||||||
|
@ -93,7 +93,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
@import '../../../src/styles/constants.scss';
|
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
@ -68,7 +68,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
@import '../../../src/styles/constants.scss';
|
|
||||||
|
|
||||||
.no-items {
|
.no-items {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
@ -76,7 +75,7 @@ export default {
|
|||||||
padding: 0.8rem;
|
padding: 0.8rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
border-radius: $curve-factor;
|
border-radius: var(--curve-factor);
|
||||||
background: #607d8b33;
|
background: #607d8b33;
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
box-shadow: 1px 1px 2px #373737;
|
box-shadow: 1px 1px 2px #373737;
|
||||||
|
@ -63,7 +63,6 @@ span.options-label {
|
|||||||
background: var(--background);
|
background: var(--background);
|
||||||
border: 1px solid currentColor;
|
border: 1px solid currentColor;
|
||||||
border-radius: var(--curve-factor);
|
border-radius: var(--curve-factor);
|
||||||
opacity: var(--dimming-factor);
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
&:hover, &.selected {
|
&:hover, &.selected {
|
||||||
background: var(--primary);
|
background: var(--primary);
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<section>
|
<section>
|
||||||
<SearchBar @user-is-searchin="userIsTypingSomething" ref="SearchBar" />
|
<SearchBar @user-is-searchin="userIsTypingSomething" ref="SearchBar" />
|
||||||
<div class="options-container">
|
<div class="options-container">
|
||||||
<ThemeSelector class="theme-selector" :themes="availableThemes" />
|
<ThemeSelector :themes="availableThemes" :confTheme="getInitialTheme()"/>
|
||||||
<LayoutSelector :displayLayout="displayLayout" @layoutUpdated="updateDisplayLayout"/>
|
<LayoutSelector :displayLayout="displayLayout" @layoutUpdated="updateDisplayLayout"/>
|
||||||
<ItemSizeSelector :iconSize="iconSize" @iconSizeUpdated="updateIconSize" />
|
<ItemSizeSelector :iconSize="iconSize" @iconSizeUpdated="updateIconSize" />
|
||||||
</div>
|
</div>
|
||||||
@ -23,6 +23,7 @@ export default {
|
|||||||
displayLayout: String,
|
displayLayout: String,
|
||||||
iconSize: String,
|
iconSize: String,
|
||||||
availableThemes: Object,
|
availableThemes: Object,
|
||||||
|
appConfig: Object,
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
SearchBar,
|
SearchBar,
|
||||||
@ -44,6 +45,9 @@ export default {
|
|||||||
updateIconSize(iconSize) {
|
updateIconSize(iconSize) {
|
||||||
this.$emit('change-icon-size', iconSize);
|
this.$emit('change-icon-size', iconSize);
|
||||||
},
|
},
|
||||||
|
getInitialTheme() {
|
||||||
|
return this.appConfig.theme || '';
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -13,42 +13,74 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
import ThemeHelper from '@/utils/ThemeHelper';
|
import ThemeHelper from '@/utils/ThemeHelper';
|
||||||
|
import Defaults from '@/utils/defaults';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ThemeSelector',
|
name: 'ThemeSelector',
|
||||||
props: {
|
props: {
|
||||||
themes: Object,
|
themes: Object,
|
||||||
|
confTheme: String,
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
selectedTheme(newTheme) {
|
selectedTheme(newTheme) { this.updateTheme(newTheme); },
|
||||||
this.themeHelper.theme = newTheme;
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
selectedTheme: 'Default',
|
selectedTheme: this.getInitialTheme(),
|
||||||
themeHelper: new ThemeHelper(),
|
themeHelper: new ThemeHelper(),
|
||||||
loading: true,
|
loading: true,
|
||||||
|
builtInThemes: Defaults.builtInThemes,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
themeNames: function themeNames() { return Object.keys(this.themes); },
|
themeNames: function themeNames() {
|
||||||
|
const externalThemeNames = Object.keys(this.themes);
|
||||||
|
return externalThemeNames.concat(this.builtInThemes);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const added = Object.keys(this.themes).map(
|
const added = Object.keys(this.themes).map(
|
||||||
name => this.themeHelper.add(name, this.themes[name]),
|
name => this.themeHelper.add(name, this.themes[name]),
|
||||||
);
|
);
|
||||||
|
// Quicker loading, if the theme is local we can apply it immidiatley
|
||||||
|
if (this.isThemeLocal(this.selectedTheme)) {
|
||||||
|
this.updateTheme(this.selectedTheme);
|
||||||
|
// If it's an external stylesheet, then wait for promise to resolve
|
||||||
|
} else if (this.selectedTheme !== 'Default') {
|
||||||
Promise.all(added).then(() => {
|
Promise.all(added).then(() => {
|
||||||
this.loading = false;
|
this.updateTheme(this.selectedTheme);
|
||||||
this.themeHelper.theme = 'Deafault';
|
|
||||||
});
|
});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
toggleLocalTheme(newTheme) {
|
setLocalTheme(newTheme) {
|
||||||
const htmlTag = document.getElementsByTagName('html')[0];
|
const htmlTag = document.getElementsByTagName('html')[0];
|
||||||
if (htmlTag.hasAttribute('data-theme')) htmlTag.removeAttribute('data-theme');
|
if (htmlTag.hasAttribute('data-theme')) htmlTag.removeAttribute('data-theme');
|
||||||
htmlTag.setAttribute('data-theme', newTheme);
|
htmlTag.setAttribute('data-theme', newTheme);
|
||||||
},
|
},
|
||||||
|
/* Get default theme */
|
||||||
|
getInitialTheme() {
|
||||||
|
return localStorage.theme || this.confTheme || Defaults.defaultTheme;
|
||||||
|
},
|
||||||
|
isThemeLocal(themeToCheck) {
|
||||||
|
return this.builtInThemes.includes(themeToCheck);
|
||||||
|
},
|
||||||
|
/* Updates theme. Checks if the new theme is local or external,
|
||||||
|
and calls appropirate updating function. Updates local storage */
|
||||||
|
updateTheme(newTheme) {
|
||||||
|
if (newTheme === 'Deafault') {
|
||||||
|
this.resetToDefault();
|
||||||
|
this.themeHelper.theme = 'Deafault';
|
||||||
|
} else if (this.isThemeLocal(newTheme)) {
|
||||||
|
this.setLocalTheme(newTheme);
|
||||||
|
} else {
|
||||||
|
this.themeHelper.theme = newTheme;
|
||||||
|
}
|
||||||
|
localStorage.setItem('theme', newTheme);
|
||||||
|
},
|
||||||
|
resetToDefault() {
|
||||||
|
document.getElementsByTagName('html')[0].removeAttribute('data-theme');
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -3,6 +3,7 @@ pageInfo:
|
|||||||
title: Hello World
|
title: Hello World
|
||||||
description: 'This is a demo'
|
description: 'This is a demo'
|
||||||
appConfig:
|
appConfig:
|
||||||
|
theme: 'Default'
|
||||||
externalStyleSheet: 'https://bootswatch.com/4/solar/bootstrap.min.css'
|
externalStyleSheet: 'https://bootswatch.com/4/solar/bootstrap.min.css'
|
||||||
sections:
|
sections:
|
||||||
- name: Firewall
|
- name: Firewall
|
||||||
|
@ -6,20 +6,19 @@
|
|||||||
--primary: #5cabca;
|
--primary: #5cabca;
|
||||||
|
|
||||||
/* Modified Colors */
|
/* Modified Colors */
|
||||||
--background-transparent: #0b1021cc;
|
--item-group-background: #0b1021cc;
|
||||||
--medium-grey: #5e6474;
|
--medium-grey: #5e6474;
|
||||||
|
|
||||||
--outline-color: none;
|
|
||||||
--curve-factor: 5px;
|
|
||||||
--curve-factor-navbar: 16px;
|
|
||||||
|
|
||||||
--dimming-factor: 0.8;
|
|
||||||
|
|
||||||
/* Semi-Transparent Black*/
|
/* Semi-Transparent Black*/
|
||||||
--transparent-70: #000000b3;
|
--transparent-70: #000000b3;
|
||||||
--transparent-50: #00000080;
|
--transparent-50: #00000080;
|
||||||
--transparent-30: #0000004d;
|
--transparent-30: #0000004d;
|
||||||
|
|
||||||
|
/* Other Variables */
|
||||||
|
--outline-color: none;
|
||||||
|
--curve-factor: 5px;
|
||||||
|
--curve-factor-navbar: 16px;
|
||||||
|
--dimming-factor: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
html[data-theme='hacker-red'] {
|
html[data-theme='hacker-red'] {
|
||||||
@ -30,9 +29,26 @@ html[data-theme='hacker-red'] {
|
|||||||
--curve-factor: 0px;
|
--curve-factor: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html[data-theme='hacker-green'] {
|
||||||
|
--background: #000;
|
||||||
|
--background-darker: #000;
|
||||||
|
--primary: #2bca2b;
|
||||||
|
--outline-color: #2bca2b;
|
||||||
|
--curve-factor: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-theme='hacker-pink'] {
|
||||||
|
--background: #000;
|
||||||
|
--background-darker: #000;
|
||||||
|
--primary: #e435f1;
|
||||||
|
--outline-color: #e435f1;
|
||||||
|
--curve-factor: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
html[data-theme='high-contrast-light'] {
|
html[data-theme='high-contrast-light'] {
|
||||||
--background: #fff;
|
--background: #fff;
|
||||||
--background-darker: #fff;
|
--background-darker: #fff;
|
||||||
|
--item-group-background: #fff;
|
||||||
--primary: #000;
|
--primary: #000;
|
||||||
--outline-color: #000;
|
--outline-color: #000;
|
||||||
--curve-factor: 0px;
|
--curve-factor: 0px;
|
||||||
@ -41,6 +57,7 @@ html[data-theme='high-contrast-light'] {
|
|||||||
html[data-theme='high-contrast-dark'] {
|
html[data-theme='high-contrast-dark'] {
|
||||||
--background: #000;
|
--background: #000;
|
||||||
--background-darker: #000;
|
--background-darker: #000;
|
||||||
|
--item-group-background: #000;
|
||||||
--primary: #fff;
|
--primary: #fff;
|
||||||
--outline-color: #fff;
|
--outline-color: #fff;
|
||||||
--curve-factor: 0px;
|
--curve-factor: 0px;
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
|
|
||||||
// Used as constant border radius
|
|
||||||
$curve-factor: 5px;
|
|
||||||
|
|
||||||
$inner-radius: $curve-factor - 2;
|
|
@ -1,8 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
* A function for pre-loading, and easy switching of external stylesheets
|
* A function for pre-loading, and easy switching of external stylesheets
|
||||||
|
* External CSS is preloaded to avoid FOUC
|
||||||
*/
|
*/
|
||||||
const ThemeHelper = function th() {
|
const ThemeHelper = function th() {
|
||||||
/* Preload content, to avoid FOUC */
|
|
||||||
const preloadTheme = (href) => {
|
const preloadTheme = (href) => {
|
||||||
const link = document.createElement('link');
|
const link = document.createElement('link');
|
||||||
link.rel = 'stylesheet';
|
link.rel = 'stylesheet';
|
||||||
@ -19,11 +19,9 @@ const ThemeHelper = function th() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const selectTheme = (themes, name) => {
|
const selectTheme = (themes, name) => {
|
||||||
const themeResults = themes;
|
const t = themes; // To avoid ESLint complaining about mutating a param
|
||||||
if (name && !themes[name]) {
|
if (name && !themes[name]) throw new Error(`Theme: '${name}' does not exist.`);
|
||||||
throw new Error(`'${name}' has not been defined as a theme.`);
|
Object.keys(themes).forEach(n => { t[n].disabled = (n !== name); });
|
||||||
}
|
|
||||||
Object.keys(themeResults).forEach(n => { themeResults[n].disabled = (n !== name); });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const themes = {};
|
const themes = {};
|
||||||
|
4
src/utils/defaults.js
Normal file
4
src/utils/defaults.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
module.exports = {
|
||||||
|
defaultTheme: 'Default',
|
||||||
|
builtInThemes: ['hacker-green', 'hacker-red', 'hacker-pink'],
|
||||||
|
};
|
@ -7,7 +7,8 @@
|
|||||||
@change-icon-size="setItemSize"
|
@change-icon-size="setItemSize"
|
||||||
:displayLayout="layout"
|
:displayLayout="layout"
|
||||||
:iconSize="itemSizeBound"
|
:iconSize="itemSizeBound"
|
||||||
:availableThemes="getAvailibleThemes()"
|
:availableThemes="getExternalCSSLinks()"
|
||||||
|
:appConfig="appConfig"
|
||||||
class="filter-container"
|
class="filter-container"
|
||||||
/>
|
/>
|
||||||
<!-- Main content, section for each group of items -->
|
<!-- Main content, section for each group of items -->
|
||||||
@ -108,7 +109,8 @@ export default {
|
|||||||
setItemSize(itemSize) {
|
setItemSize(itemSize) {
|
||||||
this.iconSize = itemSize;
|
this.iconSize = itemSize;
|
||||||
},
|
},
|
||||||
getAvailibleThemes() {
|
/* Returns an array of links to external CSS from the Config */
|
||||||
|
getExternalCSSLinks() {
|
||||||
const availibleThemes = {};
|
const availibleThemes = {};
|
||||||
if (this.appConfig) {
|
if (this.appConfig) {
|
||||||
if (this.appConfig.externalStyleSheet) {
|
if (this.appConfig.externalStyleSheet) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user