mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 11:55:38 +00:00
Linting
This commit is contained in:
77
src/App.vue
77
src/App.vue
@@ -1,5 +1,40 @@
|
|||||||
<style lang="scss" scoped>
|
<template>
|
||||||
@import "./src/scss/media-queries";
|
<div id="app">
|
||||||
|
<!-- Header and hamburger navigation -->
|
||||||
|
<NavigationHeader class="header"></NavigationHeader>
|
||||||
|
<NavigationIcons class="desktop-menu desktop-only" />
|
||||||
|
|
||||||
|
<!-- Display the component assigned to the given route (default: home) -->
|
||||||
|
<router-view class="content" :key="$route.fullPath"></router-view>
|
||||||
|
|
||||||
|
<!-- Movie popup that will show above existing rendered content -->
|
||||||
|
<movie-popup></movie-popup>
|
||||||
|
|
||||||
|
<darkmode-toggle />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import NavigationHeader from "@/components/NavigationHeader";
|
||||||
|
import NavigationIcons from "@/components/NavigationIcons";
|
||||||
|
import MoviePopup from "@/components/MoviePopup";
|
||||||
|
import DarkmodeToggle from "@/components/ui/darkmodeToggle";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "app",
|
||||||
|
components: {
|
||||||
|
NavigationHeader,
|
||||||
|
NavigationIcons,
|
||||||
|
MoviePopup,
|
||||||
|
DarkmodeToggle
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@import "src/scss/main";
|
||||||
|
@import "src/scss/media-queries";
|
||||||
|
|
||||||
#app {
|
#app {
|
||||||
display: grid;
|
display: grid;
|
||||||
// grid-template-columns: 90px 1fr 90px;
|
// grid-template-columns: 90px 1fr 90px;
|
||||||
@@ -35,41 +70,3 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div id="app">
|
|
||||||
<!-- Header and hamburger navigation -->
|
|
||||||
<NavigationHeader class="header"></NavigationHeader>
|
|
||||||
<NavigationIcons class="desktop-menu desktop-only" />
|
|
||||||
|
|
||||||
<!-- Display the component assigned to the given route (default: home) -->
|
|
||||||
<router-view class="content" :key="$route.fullPath"></router-view>
|
|
||||||
|
|
||||||
<!-- Movie popup that will show above existing rendered content -->
|
|
||||||
<movie-popup></movie-popup>
|
|
||||||
|
|
||||||
<darkmode-toggle />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import NavigationHeader from "@/components/NavigationHeader";
|
|
||||||
import NavigationIcons from "@/components/NavigationIcons";
|
|
||||||
import MoviePopup from "@/components/MoviePopup";
|
|
||||||
import DarkmodeToggle from "@/components/ui/darkmodeToggle";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "app",
|
|
||||||
components: {
|
|
||||||
NavigationHeader,
|
|
||||||
NavigationIcons,
|
|
||||||
MoviePopup,
|
|
||||||
DarkmodeToggle
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
@import "./src/scss/main";
|
|
||||||
@import "./src/scss/media-queries";
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div class="text-input__loading">
|
<div class="text-input__loading">
|
||||||
<div class="text-input__loading--line" :class="lineClass" v-for="_ in Array(count)"></div>
|
<div
|
||||||
|
class="text-input__loading--line"
|
||||||
|
:class="lineClass"
|
||||||
|
v-for="_ in Array(count)"
|
||||||
|
></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -15,10 +19,10 @@ export default {
|
|||||||
},
|
},
|
||||||
lineClass: {
|
lineClass: {
|
||||||
type: String,
|
type: String,
|
||||||
default: ''
|
default: ""
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|||||||
@@ -52,8 +52,9 @@ export default {
|
|||||||
elementWithoutOverflow.innerText = this.description;
|
elementWithoutOverflow.innerText = this.description;
|
||||||
|
|
||||||
document.body.appendChild(elementWithoutOverflow);
|
document.body.appendChild(elementWithoutOverflow);
|
||||||
const elemWithoutOverflowHeight =
|
const elemWithoutOverflowHeight = elementWithoutOverflow.getBoundingClientRect()[
|
||||||
elementWithoutOverflow.getBoundingClientRect()["height"];
|
"height"
|
||||||
|
];
|
||||||
|
|
||||||
this.overflow = elemWithoutOverflowHeight > height;
|
this.overflow = elemWithoutOverflowHeight > height;
|
||||||
this.removeElements(document.querySelectorAll(".dummy-non-overflow"));
|
this.removeElements(document.querySelectorAll(".dummy-non-overflow"));
|
||||||
|
|||||||
@@ -13,7 +13,6 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
messages: {
|
messages: {
|
||||||
@@ -24,26 +23,25 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
defaultTitles: {
|
defaultTitles: {
|
||||||
error: 'Unexpected error',
|
error: "Unexpected error",
|
||||||
warning: 'Something went wrong',
|
warning: "Something went wrong",
|
||||||
undefined: 'Something went wrong'
|
undefined: "Something went wrong"
|
||||||
},
|
},
|
||||||
localMessages: [...this.messages]
|
localMessages: [...this.messages]
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
reversedMessages() {
|
reversedMessages() {
|
||||||
return [...this.messages].reverse()
|
return [...this.messages].reverse();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
clicked(e) {
|
clicked(e) {
|
||||||
const removedMessage = [...this.messages].filter(mes => mes !== e)
|
const removedMessage = [...this.messages].filter(mes => mes !== e);
|
||||||
this.$emit('update:messages', removedMessage)
|
this.$emit("update:messages", removedMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@@ -51,10 +49,10 @@ export default {
|
|||||||
@import "src/scss/media-queries";
|
@import "src/scss/media-queries";
|
||||||
|
|
||||||
.fade-enter-active {
|
.fade-enter-active {
|
||||||
transition: opacity .4s;
|
transition: opacity 0.4s;
|
||||||
}
|
}
|
||||||
.fade-leave-active {
|
.fade-leave-active {
|
||||||
transition: opacity .1s;
|
transition: opacity 0.1s;
|
||||||
}
|
}
|
||||||
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
@@ -72,7 +70,6 @@ export default {
|
|||||||
> div {
|
> div {
|
||||||
margin: 10px 24px;
|
margin: 10px 24px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
@@ -81,12 +78,12 @@ export default {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 1.3rem;
|
font-size: 1.3rem;
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
transition: color .5s ease;
|
transition: color 0.5s ease;
|
||||||
}
|
}
|
||||||
.message {
|
.message {
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
color: $text-color-70;
|
color: $text-color-70;
|
||||||
transition: color .5s ease;
|
transition: color 0.5s ease;
|
||||||
margin: 0.2rem 0 0.5rem;
|
margin: 0.2rem 0 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -101,7 +98,6 @@ export default {
|
|||||||
span {
|
span {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pinstripe {
|
.pinstripe {
|
||||||
@@ -126,7 +122,7 @@ export default {
|
|||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
color: $text-color-70;
|
color: $text-color-70;
|
||||||
transition: color .5s ease;
|
transition: color 0.5s ease;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
@@ -157,5 +153,4 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
display: flex;
|
display: flex;
|
||||||
transition: color .2s ease;
|
transition: color 0.2s ease;
|
||||||
|
|
||||||
&-item {
|
&-item {
|
||||||
padding: 6px 15px;
|
padding: 6px 15px;
|
||||||
@@ -25,7 +25,8 @@
|
|||||||
&:nth-child(n + 2) {
|
&:nth-child(n + 2) {
|
||||||
border-left: solid 1px;
|
border-left: solid 1px;
|
||||||
}
|
}
|
||||||
&.active, &:hover {
|
&.active,
|
||||||
|
&:hover {
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
background-color: $teal;
|
background-color: $teal;
|
||||||
color: $green;
|
color: $green;
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user