Explorar el Código

refactor: Made christmas lights a component

Owen Diffey hace 3 años
padre
commit
4d89cb8e04

+ 0 - 135
frontend/src/App.vue

@@ -376,141 +376,6 @@ export default {
 
 .christmas-mode {
 	--primary-color: var(--red);
-
-	.christmas-lights {
-		position: absolute;
-		width: 100%;
-		height: 50px;
-		left: 0;
-		top: 64px;
-		display: flex;
-		justify-content: space-around;
-		overflow: hidden;
-		pointer-events: none;
-
-		.christmas-light {
-			height: 34px;
-			width: 12px;
-			border-top-left-radius: 50%;
-			border-top-right-radius: 50%;
-			border-bottom-left-radius: 50%;
-			border-bottom-right-radius: 50%;
-			z-index: 2;
-			box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1),
-				0 0 10px rgba(10, 10, 10, 0.1);
-			animation: christmas-lights 30s ease infinite;
-
-			&::before {
-				content: "";
-				display: block;
-				width: 12px;
-				height: 12px;
-				background-color: rgb(6, 49, 19);
-				border-top-left-radius: 25%;
-				border-top-right-radius: 25%;
-				border-bottom-left-radius: 25%;
-				border-bottom-right-radius: 25%;
-			}
-
-			&:nth-of-type(1) {
-				transform: rotate(5deg);
-			}
-
-			&:nth-of-type(2) {
-				transform: rotate(-7deg);
-				animation-delay: -5s;
-			}
-
-			&:nth-of-type(3) {
-				transform: rotate(3deg);
-				animation-delay: -10s;
-			}
-
-			&:nth-of-type(4) {
-				transform: rotate(10deg);
-				animation-delay: -15s;
-			}
-
-			&:nth-of-type(5) {
-				transform: rotate(-3deg);
-				animation-delay: -20s;
-			}
-
-			&:nth-of-type(6) {
-				transform: rotate(8deg);
-				animation-delay: -25s;
-			}
-
-			&:nth-of-type(7) {
-				transform: rotate(-1deg);
-				animation-delay: -30s;
-			}
-
-			&:nth-of-type(8) {
-				transform: rotate(-4deg);
-				animation-delay: -35s;
-			}
-
-			&:nth-of-type(9) {
-				transform: rotate(3deg);
-				animation-delay: -40s;
-			}
-
-			&:nth-of-type(10) {
-				transform: rotate(-10deg);
-				animation-delay: -45s;
-			}
-		}
-
-		.christmas-wire {
-			flex: 1;
-			margin-bottom: 15px;
-			z-index: 1;
-
-			border-top: 2px solid var(--primary-color);
-			border-radius: 50%;
-			margin-left: -7px;
-			margin-right: -7px;
-			transform: scaleY(-1);
-			transform-origin: 0% 20%;
-		}
-	}
-}
-
-@keyframes christmas-lights {
-	0% {
-		background-color: magenta;
-	}
-	10% {
-		background-color: cyan;
-	}
-	20% {
-		background-color: lime;
-	}
-	30% {
-		background-color: yellow;
-	}
-	40% {
-		background-color: orange;
-	}
-	50% {
-		background-color: red;
-	}
-	60% {
-		background-color: magenta;
-	}
-	70% {
-		background-color: cyan;
-	}
-	80% {
-		background-color: lime;
-	}
-	90% {
-		background-color: orange;
-	}
-	100% {
-		background-color: magenta;
-	}
 }
 
 /* inter-regular - latin */

+ 167 - 0
frontend/src/components/ChristmasLights.vue

@@ -0,0 +1,167 @@
+<template>
+	<div :class="{ 'christmas-lights': true, loggedIn }">
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+		<span class="christmas-light"></span>
+		<div class="christmas-wire"></div>
+	</div>
+</template>
+
+<script>
+import { mapState } from "vuex";
+
+export default {
+	computed: {
+		...mapState({
+			loggedIn: state => state.user.auth.loggedIn
+		})
+	},
+	async mounted() {
+		this.christmas = await lofig.get("siteSettings.christmas");
+	}
+};
+</script>
+
+<style lang="scss" scoped>
+.christmas-mode {
+	.christmas-lights {
+		position: absolute;
+		width: 100%;
+		height: 50px;
+		left: 0;
+		top: 64px;
+		display: flex;
+		justify-content: space-around;
+		overflow: hidden;
+		pointer-events: none;
+
+		.christmas-light {
+			height: 34px;
+			width: 12px;
+			border-top-left-radius: 50%;
+			border-top-right-radius: 50%;
+			border-bottom-left-radius: 50%;
+			border-bottom-right-radius: 50%;
+			z-index: 2;
+			box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1),
+				0 0 10px rgba(10, 10, 10, 0.1);
+			animation: christmas-lights 30s ease infinite;
+
+			&::before {
+				content: "";
+				display: block;
+				width: 12px;
+				height: 12px;
+				background-color: rgb(6, 49, 19);
+				border-top-left-radius: 25%;
+				border-top-right-radius: 25%;
+				border-bottom-left-radius: 25%;
+				border-bottom-right-radius: 25%;
+			}
+
+			&:nth-of-type(1) {
+				transform: rotate(5deg);
+			}
+
+			&:nth-of-type(2) {
+				transform: rotate(-7deg);
+				animation-delay: -5s;
+			}
+
+			&:nth-of-type(3) {
+				transform: rotate(3deg);
+				animation-delay: -15s;
+			}
+
+			&:nth-of-type(4) {
+				transform: rotate(10deg);
+				animation-delay: -10s;
+			}
+
+			&:nth-of-type(5) {
+				transform: rotate(-3deg);
+				animation-delay: -20s;
+			}
+
+			&:nth-of-type(6) {
+				transform: rotate(8deg);
+				animation-delay: -25s;
+			}
+
+			&:nth-of-type(7) {
+				transform: rotate(-1deg);
+				animation-delay: -30s;
+			}
+
+			&:nth-of-type(8) {
+				transform: rotate(-4deg);
+				animation-delay: -40s;
+			}
+
+			&:nth-of-type(9) {
+				transform: rotate(3deg);
+				animation-delay: -45s;
+			}
+
+			&:nth-of-type(10) {
+				transform: rotate(-10deg);
+				animation-delay: -35s;
+			}
+		}
+
+		.christmas-wire {
+			flex: 1;
+			margin-bottom: 15px;
+			z-index: 1;
+
+			border-top: 2px solid var(--primary-color);
+			border-radius: 50%;
+			margin-left: -7px;
+			margin-right: -7px;
+			transform: scaleY(-1);
+			transform-origin: 0% 20%;
+		}
+	}
+}
+
+@keyframes christmas-lights {
+	0% {
+		background-color: magenta;
+	}
+	17% {
+		background-color: cyan;
+	}
+	34% {
+		background-color: lime;
+	}
+	51% {
+		background-color: yellow;
+	}
+	68% {
+		background-color: orange;
+	}
+	85% {
+		background-color: red;
+	}
+	100% {
+		background-color: magenta;
+	}
+}
+</style>

+ 7 - 26
frontend/src/components/Modal.vue

@@ -15,32 +15,7 @@
 				<span class="delete material-icons" @click="closeCurrentModal()"
 					>highlight_off</span
 				>
-				<div
-					v-if="christmas"
-					:class="{ 'christmas-lights': true, loggedIn }"
-				>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-					<span class="christmas-light"></span>
-					<div class="christmas-wire"></div>
-				</div>
+				<christmas-lights v-if="christmas" />
 			</header>
 			<section class="modal-card-body">
 				<slot name="body" />
@@ -54,8 +29,14 @@
 
 <script>
 import { mapState, mapActions } from "vuex";
+import { defineAsyncComponent } from "vue";
 
 export default {
+	components: {
+		ChristmasLights: defineAsyncComponent(() =>
+			import("@/components/ChristmasLights.vue")
+		)
+	},
 	props: {
 		title: { type: String, default: "Modal" },
 		wide: { type: Boolean, default: false },

+ 9 - 27
frontend/src/components/layout/MainHeader.vue

@@ -67,40 +67,21 @@
 			</div>
 		</div>
 
-		<div
-			v-if="siteSettings.christmas"
-			:class="{ 'christmas-lights': true, loggedIn }"
-		>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-			<span class="christmas-light"></span>
-			<div class="christmas-wire"></div>
-		</div>
+		<christmas-lights v-if="siteSettings.christmas" />
 	</nav>
 </template>
 
 <script>
 import Toast from "toasters";
 import { mapState, mapGetters, mapActions } from "vuex";
+import { defineAsyncComponent } from "vue";
 
 export default {
+	components: {
+		ChristmasLights: defineAsyncComponent(() =>
+			import("@/components/ChristmasLights.vue")
+		)
+	},
 	props: {
 		hideLogo: { type: Boolean, default: false },
 		transparent: { type: Boolean, default: false },
@@ -113,7 +94,8 @@ export default {
 			frontendDomain: "",
 			siteSettings: {
 				logo: "",
-				sitename: ""
+				sitename: "",
+				christmas: false
 			}
 		};
 	},