frequi_origin/src/components/BootswatchThemeSelect.vue

140 lines
4.6 KiB
Vue
Raw Normal View History

2020-05-22 21:02:17 +00:00
<template>
<div>
<b-nav-item-dropdown
v-if="!simple"
2020-05-22 21:02:17 +00:00
id="my-nav-dropdown"
text="Theme"
toggle-class="nav-link-custom"
right
lazy
>
<b-dropdown-item v-if="themeList.length === 0">
<b-spinner small></b-spinner> Loading Themes...
</b-dropdown-item>
<!-- 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
v-for="(theme, key) in themeList"
2020-05-22 21:02:17 +00:00
:key="key"
v-b-tooltip.hover.right
2020-08-31 15:43:44 +00:00
:active="activeTheme === theme.name"
:title="theme.description"
:name="theme.name"
2020-08-31 15:43:44 +00:00
@click="handleClick"
>{{ theme.name }}{{ theme.dark ? ' [dark]' : '' }}</b-dropdown-item-button
>
2020-05-22 21:02:17 +00:00
</b-nav-item-dropdown>
<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>
<script lang="ts">
import Vue from 'vue';
2020-05-22 21:02:17 +00:00
import axios from 'axios';
import ThemeLightDark from 'vue-material-design-icons/Brightness6.vue';
import { themeList } from '@/shared/themes';
import { mapActions } from 'vuex';
2020-05-22 21:02:17 +00:00
export default Vue.extend({
2020-08-31 15:43:44 +00:00
name: 'BootswatchThemeSelect',
components: { ThemeLightDark },
props: {
simple: {
type: Boolean,
default: true,
},
},
2020-05-22 21:02:17 +00:00
data() {
return {
activeTheme: '',
themeList,
2020-05-22 21:02:17 +00:00
};
},
mounted() {
// 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: {
...mapActions(['setCurrentTheme']),
2020-05-22 21:02:17 +00:00
handleClick(e) {
this.setTheme(e.target.name.trim());
2020-05-22 21:02:17 +00:00
},
toggleNight() {
2020-12-29 09:52:14 +00:00
this.setTheme(this.activeTheme === 'bootstrap' ? 'bootstrap_dark' : 'bootstrap');
},
setTheme(themeName) {
// If theme is already active, do nothing.
if (this.activeTheme === themeName) {
2020-05-22 21:02:17 +00:00
return;
}
if (themeName.toLowerCase() === 'bootstrap' || themeName.toLowerCase() === 'bootstrap_dark') {
const styles = document.getElementsByTagName('style');
const bw = Array.from(styles).filter((w) => w.textContent?.includes('bootswatch'));
document.documentElement.setAttribute(
'data-theme',
2020-12-29 09:52:14 +00:00
themeName.toLowerCase() === 'bootstrap' ? 'light' : 'dark',
);
2020-07-26 09:16:40 +00:00
// Reset all bootswatch styles
bw.forEach((style, index) => {
(bw[index] as any).disabled = true;
});
2020-12-30 07:18:50 +00:00
if (this.simple && this.activeTheme) {
// 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.
import(`bootswatch/dist/${themeName.toLowerCase()}/bootstrap.min.css`).then((mod) => {
console.log('theme', mod);
document.documentElement.removeAttribute('data-theme');
2020-07-26 09:16:40 +00:00
const styles = document.getElementsByTagName('style');
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.
(bw[index] as any).disabled = false;
2020-07-26 09:16:40 +00:00
} else {
// All other style themes should be disabled.
(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
this.setCurrentTheme(themeName);
this.activeTheme = themeName;
},
2020-05-22 21:02:17 +00:00
fetchApi() {
// Fetches boostswatch api and dynamically sets themes.
// 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')
// .then((res) => {
// 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-05-22 21:02:17 +00:00
</script>
<style scoped></style>