misskey/src/client/app/mobile/views/components/ui.header.vue

144 lines
2.6 KiB
Vue
Raw Normal View History

2018-02-14 06:53:52 +01:00
<template>
2019-02-26 06:37:17 +01: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 15:31:41 +01:00
<div class="main" ref="main">
2018-02-14 06:53:52 +01:00
<div class="backdrop"></div>
2018-02-25 15:31:41 +01: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 09:50:19 +01:00
<h1>
<slot>{{ $root.instanceName }}</slot>
2018-02-15 09:50:19 +01:00
</h1>
2018-02-23 18:46:09 +01:00
<slot name="func"></slot>
2018-02-14 06:53:52 +01:00
</div>
</div>
2018-05-17 16:53:55 +02:00
<div class="indicator" v-show="$store.state.indicate"></div>
2018-02-14 06:53:52 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
import { env } from '../../../config';
2018-02-14 06:53:52 +01:00
export default Vue.extend({
i18n: i18n(),
2018-02-21 18:37:04 +01:00
props: ['func'],
2018-02-14 06:53:52 +01:00
data() {
return {
env: env
2018-02-14 06:53:52 +01:00
};
},
2018-02-14 06:53:52 +01:00
mounted() {
2018-12-12 05:05:37 +01:00
this.$store.commit('setUiHeaderHeight', 48);
2018-02-14 06:53:52 +01:00
},
});
</script>
<style lang="stylus" scoped>
2018-09-28 04:40:47 +02:00
.header
2018-02-14 06:53:52 +01:00
$height = 48px
position fixed
top 0
2018-12-27 21:14:04 +01:00
left -8px
2018-02-14 06:53:52 +01:00
z-index 1024
2018-12-27 21:14:04 +01:00
width calc(100% + 16px)
padding 0 8px
2019-02-26 06:37:17 +01:00
&.shadow
box-shadow 0 0px 8px rgba(0, 0, 0, 0.25)
2018-02-14 06:53:52 +01:00
2018-04-20 05:55:18 +02:00
&, *
user-select none
2018-05-17 16:53:55 +02:00
> .indicator
height 3px
2018-09-26 13:19:35 +02:00
background var(--primary)
2018-05-17 16:53:55 +02:00
> .warn
display block
margin 0
padding 4px
text-align center
font-size 12px
background #f00
color #fff
2018-02-14 06:53:52 +01:00
> .main
2018-09-28 04:40:47 +02:00
color var(--mobileHeaderFg)
2018-02-14 06:53:52 +01:00
> .backdrop
position absolute
top 0
2018-02-25 15:31:41 +01:00
z-index 1000
2018-02-14 06:53:52 +01:00
width 100%
height $height
-webkit-backdrop-filter blur(12px)
backdrop-filter blur(12px)
2018-09-28 04:40:47 +02:00
background-color var(--mobileHeaderBg)
2018-02-14 06:53:52 +01:00
> .content
2018-02-25 15:31:41 +01:00
z-index 1001
2018-02-14 06:53:52 +01: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 08:59:00 +01:00
padding 0
2018-02-14 06:53:52 +01:00
width $height
font-size 1.4em
line-height $height
border-right solid 1px rgba(#000, 0.1)
> [data-icon]
2018-02-14 06:53:52 +01:00
transition all 0.2s ease
> i.circle
2018-02-14 06:53:52 +01:00
position absolute
top 8px
left 8px
pointer-events none
font-size 10px
2018-12-30 17:15:32 +01:00
color var(--notificationIndicator)
2018-02-14 06:53:52 +01:00
> button:last-child
display block
position absolute
top 0
right 0
2018-03-03 08:59:00 +01:00
padding 0
2018-02-14 06:53:52 +01:00
width $height
text-align center
font-size 1.4em
color inherit
line-height $height
border-left solid 1px rgba(#000, 0.1)
</style>