2020-05-22 21:02:17 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<b-nav-item-dropdown
|
2020-12-28 18:33:03 +00:00
|
|
|
v-if="!simple"
|
2020-05-22 21:02:17 +00:00
|
|
|
id="my-nav-dropdown"
|
|
|
|
text="Theme"
|
|
|
|
toggle-class="nav-link-custom"
|
|
|
|
right
|
|
|
|
lazy
|
|
|
|
>
|
2020-12-28 19:34:54 +00:00
|
|
|
<b-dropdown-item v-if="themeList.length === 0">
|
2020-05-24 09:19:45 +00:00
|
|
|
<b-spinner small></b-spinner> Loading Themes...
|
2020-05-23 12:05:59 +00:00
|
|
|
</b-dropdown-item>
|
|
|
|
|
2020-05-24 09:19:45 +00:00
|
|
|
<!-- TODO Add v-b-tooltip.hover.right=="{ variant: 'className' }" for tooltip class rendered from bootswatch-->
|
2020-05-22 21:02:17 +00:00
|
|
|
<b-dropdown-item-button
|
2020-12-28 19:34:54 +00:00
|
|
|
v-for="(theme, key) in themeList"
|
2020-05-22 21:02:17 +00:00
|
|
|
:key="key"
|
2020-05-23 12:05:59 +00:00
|
|
|
v-b-tooltip.hover.right
|
2020-08-31 15:43:44 +00:00
|
|
|
:active="activeTheme === theme.name"
|
2020-05-23 12:05:59 +00:00
|
|
|
:title="theme.description"
|
2020-12-28 09:49:26 +00:00
|
|
|
:name="theme.name"
|
2020-08-31 15:43:44 +00:00
|
|
|
@click="handleClick"
|
2020-12-28 09:49:26 +00:00
|
|
|
>{{ theme.name }}{{ theme.dark ? ' [dark]' : '' }}</b-dropdown-item-button
|
2020-05-24 09:19:45 +00:00
|
|
|
>
|
2020-05-22 21:02:17 +00:00
|
|
|
</b-nav-item-dropdown>
|
2020-12-28 18:33:03 +00:00
|
|
|
<b-link v-else variant="outline-primary" class="nav-link" @click="toggleNight">
|
|
|
|
<ThemeLightDark :size="16" />
|
|
|
|
</b-link>
|
2020-05-22 21:02:17 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2020-12-28 18:33:03 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-05-22 21:02:17 +00:00
|
|
|
import axios from 'axios';
|
2020-12-28 18:33:03 +00:00
|
|
|
import ThemeLightDark from 'vue-material-design-icons/Brightness6.vue';
|
2020-12-28 19:34:54 +00:00
|
|
|
import { themeList } from '@/shared/themes';
|
|
|
|
import { mapActions } from 'vuex';
|
2020-05-22 21:02:17 +00:00
|
|
|
|
2020-12-28 18:33:03 +00:00
|
|
|
export default Vue.extend({
|
2020-08-31 15:43:44 +00:00
|
|
|
name: 'BootswatchThemeSelect',
|
2020-12-28 18:33:03 +00:00
|
|
|
components: { ThemeLightDark },
|
|
|
|
props: {
|
|
|
|
simple: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
},
|
2020-05-22 21:02:17 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
activeTheme: '',
|
2020-12-28 19:34:54 +00:00
|
|
|
themeList,
|
2020-05-22 21:02:17 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2020-05-24 09:19:45 +00:00
|
|
|
// If a theme has been stored in localstorage, the theme will be set.
|
|
|
|
if (window.localStorage.theme) this.setTheme(window.localStorage.theme);
|
2020-05-22 21:02:17 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2020-12-28 19:34:54 +00:00
|
|
|
...mapActions(['setCurrentTheme']),
|
2020-05-22 21:02:17 +00:00
|
|
|
handleClick(e) {
|
2020-12-28 09:49:26 +00:00
|
|
|
this.setTheme(e.target.name.trim());
|
2020-05-22 21:02:17 +00:00
|
|
|
},
|
2020-12-28 18:33:03 +00:00
|
|
|
toggleNight() {
|
2020-12-29 09:52:14 +00:00
|
|
|
this.setTheme(this.activeTheme === 'bootstrap' ? 'bootstrap_dark' : 'bootstrap');
|
2020-12-28 18:33:03 +00:00
|
|
|
},
|
2020-05-23 12:05:59 +00:00
|
|
|
setTheme(themeName) {
|
2020-05-24 09:19:45 +00:00
|
|
|
// If theme is already active, do nothing.
|
2020-05-23 12:05:59 +00:00
|
|
|
if (this.activeTheme === themeName) {
|
2020-05-22 21:02:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-12-28 15:54:14 +00:00
|
|
|
if (themeName.toLowerCase() === 'bootstrap' || themeName.toLowerCase() === 'bootstrap_dark') {
|
2020-05-23 12:05:59 +00:00
|
|
|
const styles = document.getElementsByTagName('style');
|
2020-12-28 18:33:03 +00:00
|
|
|
const bw = Array.from(styles).filter((w) => w.textContent?.includes('bootswatch'));
|
2020-12-28 15:54:14 +00:00
|
|
|
document.documentElement.setAttribute(
|
|
|
|
'data-theme',
|
2020-12-29 09:52:14 +00:00
|
|
|
themeName.toLowerCase() === 'bootstrap' ? 'light' : 'dark',
|
2020-12-28 15:54:14 +00:00
|
|
|
);
|
2020-07-26 09:16:40 +00:00
|
|
|
// Reset all bootswatch styles
|
2020-05-23 12:05:59 +00:00
|
|
|
bw.forEach((style, index) => {
|
2020-12-28 18:33:03 +00:00
|
|
|
(bw[index] as any).disabled = true;
|
2020-05-23 12:05:59 +00:00
|
|
|
});
|
2020-12-28 19:34:54 +00:00
|
|
|
if (this.simple) {
|
|
|
|
// Only transition if simple mode is active
|
|
|
|
document.documentElement.classList.add('ft-theme-transition');
|
|
|
|
window.setTimeout(() => {
|
|
|
|
document.documentElement.classList.remove('ft-theme-transition');
|
|
|
|
}, 1000);
|
|
|
|
}
|
2020-07-26 09:16:40 +00:00
|
|
|
} else {
|
|
|
|
// Dynamic import for a different theme, to avoid loading ALL themes.
|
2020-12-28 09:49:26 +00:00
|
|
|
import(`bootswatch/dist/${themeName.toLowerCase()}/bootstrap.min.css`).then((mod) => {
|
|
|
|
console.log('theme', mod);
|
2020-12-28 15:54:14 +00:00
|
|
|
document.documentElement.removeAttribute('data-theme');
|
2020-07-26 09:16:40 +00:00
|
|
|
const styles = document.getElementsByTagName('style');
|
2020-12-28 18:33:03 +00:00
|
|
|
const bw = Array.from(styles).filter((w) => w.textContent?.includes('bootswatch'));
|
2020-07-26 09:16:40 +00:00
|
|
|
bw.forEach((style, index) => {
|
|
|
|
if (!style.id) {
|
|
|
|
// If its a style that was just imported and hasn't been assigned an id.
|
|
|
|
bw[index].id = themeName;
|
|
|
|
} else if (style.id === themeName) {
|
|
|
|
// If it's a style that has been imported already.
|
2020-12-28 18:33:03 +00:00
|
|
|
(bw[index] as any).disabled = false;
|
2020-07-26 09:16:40 +00:00
|
|
|
} else {
|
|
|
|
// All other style themes should be disabled.
|
2020-12-28 18:33:03 +00:00
|
|
|
(bw[index] as any).disabled = true;
|
2020-07-26 09:16:40 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2020-05-22 21:02:17 +00:00
|
|
|
// Save the theme as localstorage
|
2020-12-28 19:34:54 +00:00
|
|
|
this.setCurrentTheme(themeName);
|
2020-05-23 12:05:59 +00:00
|
|
|
this.activeTheme = themeName;
|
|
|
|
},
|
2020-05-22 21:02:17 +00:00
|
|
|
fetchApi() {
|
2020-05-23 12:05:59 +00:00
|
|
|
// Fetches boostswatch api and dynamically sets themes.
|
2020-05-24 09:19:45 +00:00
|
|
|
// Not used, but useful for updating the static array of themes if bootswatch dependency is outdated.
|
2020-05-22 21:02:17 +00:00
|
|
|
axios
|
|
|
|
.get('https://bootswatch.com/api/4.json')
|
2020-12-28 19:34:54 +00:00
|
|
|
// .then((res) => {
|
2020-05-24 09:19:45 +00:00
|
|
|
|
2020-12-28 19:34:54 +00:00
|
|
|
// const { themes } = res.data;
|
|
|
|
// this.themes = themes;
|
|
|
|
// Use this code in the browser console and copy and paste the filteredThemes into this.themes
|
|
|
|
// console.log(themes);
|
|
|
|
// const filteredThemes = [];
|
|
|
|
// themes.forEach((item) =>
|
|
|
|
// filteredThemes.push({ name: item.name, description: item.description }),
|
|
|
|
// );
|
|
|
|
// })
|
2020-05-22 21:02:17 +00:00
|
|
|
.catch((error) => {
|
2020-12-06 08:44:58 +00:00
|
|
|
console.error(error);
|
2020-05-22 21:02:17 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
2020-12-28 18:33:03 +00:00
|
|
|
});
|
2020-05-22 21:02:17 +00:00
|
|
|
</script>
|
|
|
|
|
2020-07-26 08:48:07 +00:00
|
|
|
<style scoped></style>
|