Browse Source

Readded handleMetadata for title

Owen Diffey 3 years ago
parent
commit
6e37a35b2d
1 changed files with 15 additions and 2 deletions
  1. 15 2
      frontend/src/main.js

+ 15 - 2
frontend/src/main.js

@@ -11,6 +11,18 @@ import AppComponent from "./App.vue";
 
 const REQUIRED_CONFIG_VERSION = 6;
 
+lofig.folder = "../config/default.json";
+
+const handleMetadata = attrs => {
+	lofig.get("siteSettings.sitename").then(siteName => {
+		if (siteName) {
+			document.title = `${siteName} | ${attrs.title}`;
+		} else {
+			document.title = `Musare | ${attrs.title}`;
+		}
+	});
+};
+
 const app = createApp(AppComponent);
 
 app.use(store);
@@ -35,6 +47,9 @@ app.component("PageMetadata", {
 	watch: {
 		$attrs: {
 			// eslint-disable-next-line vue/no-arrow-functions-in-watch
+			handler: attrs => {
+				handleMetadata(attrs);
+			},
 			deep: true,
 			immediate: true
 		}
@@ -159,8 +174,6 @@ const router = createRouter({
 
 app.use(router);
 
-lofig.folder = "../config/default.json";
-
 (async () => {
 	lofig.fetchConfig().then(config => {
 		const { configVersion, skipConfigVersionCheck } = config;