refactor: header.vue to composition api

This commit is contained in:
Norm 2022-07-28 22:42:12 -04:00 committed by Gitea
parent 6c8eb4c4df
commit 16833b8cd8

View file

@ -1,5 +1,5 @@
<template> <template>
<div class="sqxihjet"> <div ref="header" class="sqxihjet">
<div v-if="narrow === false" class="wide"> <div v-if="narrow === false" class="wide">
<div class="content"> <div class="content">
<MkA to="/" class="link" active-class="active"><i class="fas fa-home icon"></i>{{ $ts.home }}</MkA> <MkA to="/" class="link" active-class="active"><i class="fas fa-home icon"></i>{{ $ts.home }}</MkA>
@ -13,7 +13,9 @@
<span v-if="info.title" class="text">{{ info.title }}</span> <span v-if="info.title" class="text">{{ info.title }}</span>
<MkUserName v-else-if="info.userName" :user="info.userName" :nowrap="false" class="text"/> <MkUserName v-else-if="info.userName" :user="info.userName" :nowrap="false" class="text"/>
</div> </div>
<button v-if="info.action" class="_button action" @click.stop="info.action.handler"><!-- TODO --></button> <button v-if="info.action" class="_button action" @click.stop="info.action.handler">
<!-- TODO -->
</button>
</div> </div>
<div class="right"> <div class="right">
<button class="_button search" @click="search()"><i class="fas fa-search icon"></i><span>{{ $ts.search }}</span></button> <button class="_button search" @click="search()"><i class="fas fa-search icon"></i><span>{{ $ts.search }}</span></button>
@ -22,8 +24,8 @@
</div> </div>
</div> </div>
</div> </div>
<div v-else-if="narrow === true" class="narrow"> <div v-else-if="narrow" class="narrow">
<button class="menu _button" @click="$parent.showMenu = true"> <button class="menu _button" @click="showMenu = true">
<i class="fas fa-bars icon"></i> <i class="fas fa-bars icon"></i>
</button> </button>
<div v-if="info" class="title"> <div v-if="info" class="title">
@ -39,47 +41,38 @@
</div> </div>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { defineComponent } from 'vue'; import { onMounted, ref, Ref } from 'vue';
import XSigninDialog from '@/components/signin-dialog.vue'; import XSigninDialog from '@/components/signin-dialog.vue';
import XSignupDialog from '@/components/signup-dialog.vue'; import XSignupDialog from '@/components/signup-dialog.vue';
import * as os from '@/os'; import * as os from '@/os';
import { search } from '@/scripts/search'; import { search } from '@/scripts/search';
export default defineComponent({ defineProps<{
props: { info: any;
info: { }>();
required: true
},
},
data() { const narrow = ref(false);
return { const showMenu = ref(false);
narrow: null, const header: Ref<HTMLElement | null> = ref(null);
showMenu: false,
};
},
mounted() { onMounted(() => {
this.narrow = this.$el.clientWidth < 1300; if (header.value) {
}, narrow.value = header.value.clientWidth < 1300;
methods: {
signin() {
os.popup(XSigninDialog, {
autoSet: true
}, {}, 'closed');
},
signup() {
os.popup(XSignupDialog, {
autoSet: true
}, {}, 'closed');
},
search
} }
}); });
function signin(): void {
os.popup(XSigninDialog, {
autoSet: true,
}, {}, 'closed');
}
function signup(): void {
os.popup(XSignupDialog, {
autoSet: true,
}, {}, 'closed');
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@ -94,14 +87,14 @@ export default defineComponent({
backdrop-filter: var(--blur, blur(32px)); backdrop-filter: var(--blur, blur(32px));
background-color: var(--X16); background-color: var(--X16);
> .wide { >.wide {
> .content { >.content {
max-width: 1400px; max-width: 1400px;
margin: 0 auto; margin: 0 auto;
display: flex; display: flex;
align-items: center; align-items: center;
> .link { >.link {
$line: 3px; $line: 3px;
display: inline-block; display: inline-block;
padding: 0 16px; padding: 0 16px;
@ -109,7 +102,7 @@ export default defineComponent({
border-top: solid $line transparent; border-top: solid $line transparent;
border-bottom: solid $line transparent; border-bottom: solid $line transparent;
> .icon { >.icon {
margin-right: 0.5em; margin-right: 0.5em;
} }
@ -118,8 +111,8 @@ export default defineComponent({
} }
} }
> .page { >.page {
> .title { >.title {
display: inline-block; display: inline-block;
vertical-align: bottom; vertical-align: bottom;
white-space: nowrap; white-space: nowrap;
@ -127,11 +120,11 @@ export default defineComponent({
text-overflow: ellipsis; text-overflow: ellipsis;
position: relative; position: relative;
> .icon + .text { >.icon+.text {
margin-left: 8px; margin-left: 8px;
} }
> .avatar { >.avatar {
$size: 32px; $size: 32px;
display: inline-block; display: inline-block;
width: $size; width: $size;
@ -151,76 +144,72 @@ export default defineComponent({
box-shadow: 0 -2px 0 0 var(--accent) inset; box-shadow: 0 -2px 0 0 var(--accent) inset;
color: var(--fgHighlighted); color: var(--fgHighlighted);
} }
}
> .action { el>.right {
padding: 0 0 0 16px; margin-left: auto;
}
}
> .right { >.search {
margin-left: auto; background: var(--bg);
border-radius: 999px;
width: 230px;
line-height: $height - 20px;
margin-right: 16px;
text-align: left;
> .search { >* {
background: var(--bg); opacity: 0.7;
border-radius: 999px; }
width: 230px;
line-height: $height - 20px;
margin-right: 16px;
text-align: left;
> * { >.icon {
opacity: 0.7; padding: 0 16px;
} }
}
> .icon { >.signup {
padding: 0 16px; border-radius: 999px;
padding: 0 24px;
line-height: $height - 20px;
}
>.login {
padding: 0 16px;
}
} }
} }
> .signup {
border-radius: 999px;
padding: 0 24px;
line-height: $height - 20px;
}
> .login {
padding: 0 16px;
}
}
}
}
> .narrow {
display: flex;
> .menu,
> .action {
width: $height;
height: $height;
font-size: 20px;
}
> .title {
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
text-align: center;
> .icon + .text {
margin-left: 8px;
} }
> .avatar { >.narrow {
$size: 32px; display: flex;
display: inline-block;
width: $size; >.menu,
height: $size; >.action {
vertical-align: middle; width: $height;
margin-right: 8px; height: $height;
pointer-events: none; font-size: 20px;
}
>.title {
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
text-align: center;
>.icon+.text {
margin-left: 8px;
}
>.avatar {
$size: 32px;
display: inline-block;
width: $size;
height: $size;
vertical-align: middle;
margin-right: 8px;
pointer-events: none;
}
}
} }
} }
} }