2020-05-22 21:02:17 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<!-- <img :src="theme.thumbnail" style="height: 30px;" /> -->
|
|
|
|
<b-nav-item-dropdown
|
|
|
|
id="my-nav-dropdown"
|
|
|
|
text="Theme"
|
|
|
|
toggle-class="nav-link-custom"
|
|
|
|
right
|
|
|
|
lazy
|
|
|
|
>
|
|
|
|
<b-dropdown-item-button
|
|
|
|
v-for="(theme, key) in themes"
|
|
|
|
:key="key"
|
|
|
|
@click="handleClick"
|
|
|
|
:value="theme.cssCdn"
|
|
|
|
:active="activeTheme === theme.cssCdn"
|
|
|
|
:disabled="activeTheme === theme.cssCdn"
|
|
|
|
>{{ theme.name }}
|
|
|
|
</b-dropdown-item-button>
|
|
|
|
</b-nav-item-dropdown>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import axios from 'axios';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
activeTheme: '',
|
|
|
|
themes: [],
|
|
|
|
supportsLocalStorage: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
name: 'BootswatchThemeSelect',
|
|
|
|
created() {
|
|
|
|
console.log('Calling bootswatch api');
|
|
|
|
this.fetchApi();
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.supportsLocalStorage = window.localStorage.length > 0;
|
|
|
|
},
|
|
|
|
updated() {
|
|
|
|
if (this.supportsLocalStorage) {
|
|
|
|
const { theme } = window.localStorage;
|
2020-05-22 21:42:58 +00:00
|
|
|
console.log('theme ', window.localStorage.theme);
|
2020-05-22 21:02:17 +00:00
|
|
|
if (theme) {
|
|
|
|
console.log('Theme found in localstorage', theme);
|
|
|
|
this.setTheme(theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
handleClick(e) {
|
2020-05-22 21:42:58 +00:00
|
|
|
// this.setTheme(e.target.value);
|
|
|
|
this.setTheme(e.target.innerText.toLowerCase().trim());
|
|
|
|
// console.log(e.target);
|
2020-05-22 21:02:17 +00:00
|
|
|
},
|
|
|
|
setTheme(theme) {
|
|
|
|
// Change the stylesheet to a different cdn
|
|
|
|
if (this.activeTheme === theme) {
|
|
|
|
return;
|
|
|
|
}
|
2020-05-22 21:42:58 +00:00
|
|
|
// const stylesheet = document.querySelector(
|
|
|
|
// 'link[rel="stylesheet"][href$="/bootstrap.min.css"]',
|
|
|
|
// );
|
|
|
|
|
|
|
|
// if (stylesheet) {
|
|
|
|
// stylesheet.href = theme;
|
|
|
|
// } else {
|
|
|
|
// const link = document.createElement('link');
|
|
|
|
// link.href = theme;
|
|
|
|
// link.rel = 'stylesheet';
|
|
|
|
// link.title = 'bootswatch-theme';
|
|
|
|
// document.body.append(link);
|
|
|
|
// }
|
|
|
|
// const cdn = import(`bootswatch/dist/${theme}/bootstrap.min.css`);
|
|
|
|
|
|
|
|
// different
|
|
|
|
|
2020-05-22 21:02:17 +00:00
|
|
|
const stylesheet = document.querySelector(
|
|
|
|
'link[rel="stylesheet"][href$="/bootstrap.min.css"]',
|
|
|
|
);
|
2020-05-22 21:42:58 +00:00
|
|
|
// eslint-disable-next-line no-unused-expressions
|
|
|
|
// import(`bootswatch/dist/${theme}/bootstrap.min.css`);
|
|
|
|
|
|
|
|
console.log(stylesheet);
|
2020-05-22 21:02:17 +00:00
|
|
|
|
|
|
|
// Save the theme as localstorage
|
|
|
|
if (this.supportsLocalStorage) {
|
|
|
|
console.log('Setting new theme as ', theme);
|
|
|
|
window.localStorage.theme = theme;
|
|
|
|
}
|
|
|
|
this.activeTheme = theme;
|
|
|
|
},
|
|
|
|
fetchApi() {
|
|
|
|
axios
|
|
|
|
.get('https://bootswatch.com/api/4.json')
|
|
|
|
.then((res) => {
|
|
|
|
const { themes } = res.data;
|
|
|
|
this.themes = themes;
|
2020-05-22 21:42:58 +00:00
|
|
|
console.log(themes);
|
2020-05-22 21:02:17 +00:00
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
console.log(error);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style></style>
|