1
0
forked from mirror/misskey
mi.moris.day/src/client/app/mobile/views/components/ui.header.vue

144 lines
2.6 KiB
Vue
Raw Normal View History

2018-02-14 14:53:52 +09:00
<template>
2019-02-26 14:37:17 +09:00
<div class="header" ref="root" :class="{ shadow: $store.state.device.useShadow }">
<p class="warn" v-if="env != 'production'">{{ $t('@.do-not-use-in-production') }} <a href="/assets/flush.html?force">Flush</a></p>
2018-02-25 23:31:41 +09:00
<div class="main" ref="main">
2018-02-14 14:53:52 +09:00
<div class="backdrop"></div>
2018-02-25 23:31:41 +09:00
<div class="content" ref="mainContainer">
<button class="nav" @click="$parent.isDrawerOpening = true"><fa icon="bars"/></button>
<i v-if="$parent.indicate" class="circle"><fa icon="circle"/></i>
2018-02-15 17:50:19 +09:00
<h1>
<slot>{{ $root.instanceName }}</slot>
2018-02-15 17:50:19 +09:00
</h1>
2018-02-24 02:46:09 +09:00
<slot name="func"></slot>
2018-02-14 14:53:52 +09:00
</div>
</div>
2018-05-17 23:53:55 +09:00
<div class="indicator" v-show="$store.state.indicate"></div>
2018-02-14 14:53:52 +09:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
import { env } from '../../../config';
2018-02-14 14:53:52 +09:00
export default Vue.extend({
i18n: i18n(),
2018-02-22 02:37:04 +09:00
props: ['func'],
2018-02-14 14:53:52 +09:00
data() {
return {
env: env
2018-02-14 14:53:52 +09:00
};
},
2018-02-14 14:53:52 +09:00
mounted() {
2018-12-12 13:05:37 +09:00
this.$store.commit('setUiHeaderHeight', 48);
2018-02-14 14:53:52 +09:00
},
});
</script>
<style lang="stylus" scoped>
2018-09-28 11:40:47 +09:00
.header
2018-02-14 14:53:52 +09:00
$height = 48px
position fixed
top 0
2018-12-28 05:14:04 +09:00
left -8px
2018-02-14 14:53:52 +09:00
z-index 1024
2018-12-28 05:14:04 +09:00
width calc(100% + 16px)
padding 0 8px
2019-02-26 14:37:17 +09:00
&.shadow
box-shadow 0 0px 8px rgba(0, 0, 0, 0.25)
2018-02-14 14:53:52 +09:00
2018-04-20 12:55:18 +09:00
&, *
user-select none
2018-05-17 23:53:55 +09:00
> .indicator
height 3px
2018-09-26 20:19:35 +09:00
background var(--primary)
2018-05-17 23:53:55 +09:00
> .warn
display block
margin 0
padding 4px
text-align center
font-size 12px
background #f00
color #fff
2018-02-14 14:53:52 +09:00
> .main
2018-09-28 11:40:47 +09:00
color var(--mobileHeaderFg)
2018-02-14 14:53:52 +09:00
> .backdrop
position absolute
top 0
2018-02-25 23:31:41 +09:00
z-index 1000
2018-02-14 14:53:52 +09:00
width 100%
height $height
-webkit-backdrop-filter blur(12px)
backdrop-filter blur(12px)
2018-09-28 11:40:47 +09:00
background-color var(--mobileHeaderBg)
2018-02-14 14:53:52 +09:00
> .content
2018-02-25 23:31:41 +09:00
z-index 1001
2018-02-14 14:53:52 +09:00
> h1
display block
margin 0 auto
padding 0
width 100%
max-width calc(100% - 112px)
text-align center
font-size 1.1em
font-weight normal
line-height $height
white-space nowrap
overflow hidden
text-overflow ellipsis
> img
display inline-block
vertical-align bottom
width ($height - 16px)
height ($height - 16px)
margin 8px
border-radius 6px
> .nav
display block
position absolute
top 0
left 0
2018-03-03 16:59:00 +09:00
padding 0
2018-02-14 14:53:52 +09:00
width $height
font-size 1.4em
line-height $height
border-right solid 1px rgba(#000, 0.1)
> [data-icon]
2018-02-14 14:53:52 +09:00
transition all 0.2s ease
> i.circle
2018-02-14 14:53:52 +09:00
position absolute
top 8px
left 8px
pointer-events none
font-size 10px
2018-12-31 01:15:32 +09:00
color var(--notificationIndicator)
2018-02-14 14:53:52 +09:00
> button:last-child
display block
position absolute
top 0
right 0
2018-03-03 16:59:00 +09:00
padding 0
2018-02-14 14:53:52 +09:00
width $height
text-align center
font-size 1.4em
color inherit
line-height $height
border-left solid 1px rgba(#000, 0.1)
</style>