shiori/internal/view/index.html
Monirzadeh 6c94d56bf0
feat: Home button clear search query (#916)
* click on home will clear searchbox

* clearHome when mounted

* clearHomePage just when you are in homepage

* check clearHomePage signal out of clearHomePage method

* fix style
2024-05-26 15:33:17 +02:00

179 lines
6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<base href="$$.RootPath$$">
<title>Shiori - Bookmarks Manager</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="assets/res/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/res/apple-touch-icon-144x144.png">
<link rel="icon" type="image/png" href="assets/res/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="assets/res/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/x-icon" href="assets/res/favicon.ico">
<link href="assets/css/style.css" rel="stylesheet">
<script src="assets/js/vue.min.js"></script>
<script src="assets/js/url.min.js"></script>
</head>
<body class="night">
<div id="main-scene" :class="{night: appOptions.NightMode}">
<div id="main-sidebar">
<a v-for="item in sidebarItems" :title="item.title" :class="{active: activePage === item.page}" @click="switchPage(item.page)">
<i class="fas fa-fw" :class="item.icon"></i>
</a>
<div class="spacer"></div>
<a title="Logout" @click="logout">
<i class="fas fa-fw fa-sign-out-alt"></i>
</a>
</div>
<keep-alive>
<component :is="activePage" :active-account="activeAccount" :app-options="appOptions" @setting-changed="saveSetting"></component>
</keep-alive>
<custom-dialog v-bind="dialog" />
</div>
<script type="module">
import basePage from "./assets/js/page/base.js";
import pageHome from "./assets/js/page/home.js";
import pageSetting from "./assets/js/page/setting.js";
import customDialog from "./assets/js/component/dialog.js";
import EventBus from "../assets/js/component/eventBus.js";
Vue.prototype.$bus = EventBus;
var app = new Vue({
el: '#main-scene',
mixins: [basePage],
components: {
pageHome,
pageSetting,
customDialog
},
data: {
activePage: "page-home",
sidebarItems: [{
title: "Home",
icon: "fa-home",
page: "page-home",
}, {
title: "Setting",
icon: "fa-cog",
page: "page-setting",
}],
},
methods: {
switchPage(page) {
var pageName = page.replace("page-", ""),
state = { activePage: page },
url = new Url;
if (page === 'page-home' && this.activePage === 'page-home') {
Vue.prototype.$bus.$emit('clearHomePage', {});
}
url.hash = pageName;
this.activePage = page;
history.pushState(state, page, url);
},
logout() {
this.showDialog({
title: "Log Out",
content: "Are you sure you want to log out ?",
mainText: "Yes",
secondText: "No",
mainClick: () => {
this.dialog.loading = true;
fetch(new URL("api/logout", document.baseURI), {
method: "post"
}).then(response => {
if (!response.ok) throw response;
return response;
}).then(() => {
localStorage.removeItem("shiori-account");
localStorage.removeItem("shiori-token");
document.cookie = `session-id=; Path=${new URL(document.baseURI).pathname}; Expires=Thu, 01 Jan 1970 00:00:00 GMT;`;
location.href = new URL("login", document.baseURI);
}).catch(err => {
this.dialog.loading = false;
this.getErrorMessage(err).then(msg => {
this.showErrorDialog(msg);
})
});
}
});
},
saveSetting(opts) {
this.appOptions = opts;
document.body.className = opts.config.NightMode ? "night" : "";
},
loadSetting() {
var opts = JSON.parse(localStorage.getItem("shiori-account")) || {},
ShowId = (typeof opts.config.ShowId === "boolean") ? opts.config.ShowId : false,
ListMode = (typeof opts.config.ListMode === "boolean") ? opts.config.ListMode : false,
HideThumbnail = (typeof opts.config.HideThumbnail === "boolean") ? opts.config.HideThumbnail : false,
HideExcerpt = (typeof opts.config.HideExcerpt === "boolean") ? opts.config.HideExcerpt : false,
NightMode = (typeof opts.config.NightMode === "boolean") ? opts.config.NightMode : false,
KeepMetadata = (typeof opts.config.KeepMetadata === "boolean") ? opts.config.KeepMetadata : false,
UseArchive = (typeof opts.config.UseArchive === "boolean") ? opts.config.UseArchive : false,
CreateEbook = (typeof opts.config.CreateEbook === "boolean") ? opts.config.CreateEbook : false,
MakePublic = (typeof opts.config.MakePublic === "boolean") ? opts.config.MakePublic : false;
this.appOptions = {
ShowId: ShowId,
ListMode: ListMode,
HideThumbnail: HideThumbnail,
HideExcerpt: HideExcerpt,
NightMode: NightMode,
KeepMetadata: KeepMetadata,
UseArchive: UseArchive,
CreateEbook: CreateEbook,
MakePublic: MakePublic,
};
document.body.className = NightMode ? "night" : "";
},
loadAccount() {
var account = JSON.parse(localStorage.getItem("shiori-account")) || {},
id = (typeof account.id === "number") ? account.id : 0,
username = (typeof account.username === "string") ? account.username : "",
owner = (typeof account.owner === "boolean") ? account.owner : false;
this.activeAccount = {
id: id,
username: username,
owner: owner,
};
}
},
mounted() {
// Load setting
this.loadSetting();
this.loadAccount();
// Prepare history state watcher
var stateWatcher = (e) => {
var state = e.state || {};
this.activePage = state.activePage || "page-home";
}
window.addEventListener('popstate', stateWatcher);
this.$once('hook:beforeDestroy', function () {
window.removeEventListener('popstate', stateWatcher);
})
// Set initial active page
var initialPage = (new Url).hash || "home";
if (initialPage === "home" || initialPage === "setting") {
this.activePage = `page-${initialPage}`;
} else {
history.replaceState(null, "page-home", "/#home");
}
}
})
</script>
</body>
</html>