Bläddra i källkod

Merge branch 'owen-sitename' into staging

Owen Diffey 3 år sedan
förälder
incheckning
6e4e61f895

+ 3 - 5
frontend/dist/index.tpl.html

@@ -2,15 +2,13 @@
 <html lang='en'>
 
 <head>
-	<title>Musare</title>
+	<title><%= htmlWebpackPlugin.options.title %></title>
 
 	<meta charset='UTF-8'>
 	<meta http-equiv='X-UA-Compatible' content='IE=edge'>
 	<meta name='viewport' content='width=device-width, initial-scale=1, user-scalable=no'>
-	<meta name='keywords'
-		content='music, musare, listen, station, station, radio, edm, chill, community, official, rooms, room, party, good, mus, pop'>
-	<meta name='description'
-		content='On Musare you can listen to lots of different songs, playing 24/7 in our official stations and in user-made community stations!'>
+	<meta name='keywords' content='music, <%= htmlWebpackPlugin.options.title %>, listen, station, station, radio, edm, chill, community, official, rooms, room, party, good, mus, pop'>
+	<meta name='description' content='On <%= htmlWebpackPlugin.options.title %> you can listen to lots of different songs, playing 24/7 in our official stations and in user-made community stations!'>
 	<meta name='copyright' content='© Copyright Musare 2015-2022 All Right Reserved'>
 
 	<link rel='apple-touch-icon' sizes='57x57' href='/assets/favicon/apple-touch-icon-57x57.png?v=06042016'>

+ 35 - 16
frontend/src/components/layout/MainFooter.vue

@@ -5,9 +5,14 @@
 				<div id="footer-copyright">
 					<p>© Copyright Musare 2015 - 2022</p>
 				</div>
-				<router-link id="footer-logo" to="/"
-					><img src="/assets/blue_wordmark.png" alt="Musare"
-				/></router-link>
+				<router-link id="footer-logo" to="/">
+					<img
+						v-if="siteSettings.sitename === 'Musare'"
+						:src="siteSettings.logo_blue"
+						:alt="siteSettings.sitename || `Musare`"
+					/>
+					<span v-else>{{ siteSettings.sitename }}</span>
+				</router-link>
 				<div id="footer-links">
 					<a
 						v-for="(url, title, index) in filteredFooterLinks"
@@ -46,13 +51,17 @@
 export default {
 	data() {
 		return {
-			footerLinks: {}
+			siteSettings: {
+				logo_blue: "/assets/blue_wordmark.png",
+				sitename: "Musare",
+				footerLinks: {}
+			}
 		};
 	},
 	computed: {
 		filteredFooterLinks() {
 			return Object.fromEntries(
-				Object.entries(this.footerLinks).filter(
+				Object.entries(this.siteSettings.footerLinks).filter(
 					([title, url]) =>
 						!(
 							["about", "team", "news"].includes(
@@ -64,19 +73,22 @@ export default {
 		}
 	},
 	async mounted() {
-		lofig.get("siteSettings.footerLinks").then(footerLinks => {
-			this.footerLinks = {
-				about: true,
-				team: true,
-				news: true,
-				...footerLinks
+		lofig.get("siteSettings").then(siteSettings => {
+			this.siteSettings = {
+				...siteSettings,
+				footerLinks: {
+					about: true,
+					team: true,
+					news: true,
+					...siteSettings.footerLinks
+				}
 			};
 		});
 	},
 	methods: {
 		getLink(title) {
-			return this.footerLinks[
-				Object.keys(this.footerLinks).find(
+			return this.siteSettings.footerLinks[
+				Object.keys(this.siteSettings.footerLinks).find(
 					key => key.toLowerCase() === title
 				)
 			];
@@ -131,9 +143,16 @@ export default {
 		margin-right: auto;
 		width: 160px;
 		order: 1;
+		user-select: none;
+		font-size: 2.5rem !important;
+		line-height: 50px !important;
+		font-family: Pacifico, cursive;
+		color: var(--primary-color);
+		white-space: nowrap;
 
 		img {
 			max-width: 100%;
+			color: var(--primary-color);
 			user-select: none;
 			-webkit-user-drag: none;
 		}
@@ -147,15 +166,15 @@ export default {
 		}
 
 		a {
-			padding: 0 7px 0 4px;
+			padding: 0 5px;
 			color: var(--primary-color);
 
 			&:first-of-type {
-				padding: 0 7px 0 0;
+				padding: 0 5px 0 0;
 			}
 
 			&:last-of-type {
-				padding: 0 0 0 7px;
+				padding: 0 0 0 5px;
 			}
 
 			&:hover {

+ 3 - 1
frontend/src/components/layout/MainHeader.vue

@@ -6,9 +6,11 @@
 		<div class="nav-left">
 			<router-link v-if="!hideLogo" class="nav-item is-brand" to="/">
 				<img
+					v-if="siteSettings.sitename === 'Musare'"
 					:src="siteSettings.logo_white"
 					:alt="siteSettings.sitename || `Musare`"
 				/>
+				<span v-else>{{ siteSettings.sitename }}</span>
 			</router-link>
 		</div>
 
@@ -108,7 +110,7 @@ export default {
 			isMobile: false,
 			frontendDomain: "",
 			siteSettings: {
-				logo: "",
+				logo_white: "",
 				sitename: "",
 				christmas: false,
 				registrationDisabled: false

+ 9 - 1
frontend/src/main.js

@@ -13,8 +13,16 @@ import AppComponent from "./App.vue";
 
 const REQUIRED_CONFIG_VERSION = 11;
 
+lofig.folder = "../config/default.json";
+
 const handleMetadata = attrs => {
-	document.title = `Musare | ${attrs.title}`;
+	lofig.get("siteSettings.sitename").then(siteName => {
+		if (siteName) {
+			document.title = `${siteName} | ${attrs.title}`;
+		} else {
+			document.title = `Musare | ${attrs.title}`;
+		}
+	});
 };
 
 const app = createApp(AppComponent);

+ 10 - 4
frontend/src/pages/Home.vue

@@ -13,10 +13,14 @@
 				<div class="content-container">
 					<div class="content">
 						<img
+							v-if="siteSettings.sitename === 'Musare'"
+							:src="siteSettings.logo_white"
+							:alt="siteSettings.sitename || `Musare`"
 							class="logo"
-							src="/assets/white_wordmark.png"
-							:alt="`${this.siteSettings.sitename}` || `Musare`"
 						/>
+						<span v-else class="logo">{{
+							siteSettings.sitename
+						}}</span>
 						<div v-if="!loggedIn" class="buttons">
 							<button
 								class="button login"
@@ -536,6 +540,7 @@ export default {
 			favoriteStations: [],
 			searchQuery: "",
 			siteSettings: {
+				logo_white: "",
 				sitename: "Musare",
 				registrationDisabled: false
 			},
@@ -979,12 +984,13 @@ html {
 			right: 0;
 			transform: translateY(-50%);
 			background-color: transparent !important;
-			img.logo {
+			.logo {
 				max-height: 90px;
-				font-size: 40px;
+				font-size: 50px;
 				color: var(--white);
 				font-family: Pacifico, cursive;
 				user-select: none;
+				white-space: nowrap;
 			}
 			.buttons {
 				display: flex;

+ 1 - 0
frontend/webpack.common.js

@@ -111,6 +111,7 @@ module.exports = {
 	plugins: [
 		new VueLoaderPlugin(),
 		new HtmlWebpackPlugin({
+			title: config.get("siteSettings.sitename"),
 			hash: true,
 			template: "dist/index.tpl.html",
 			inject: "body",