This commit is contained in:
syuilo 2018-02-22 22:27:28 +09:00
parent bc632cefe5
commit 29b7bd258c
9 changed files with 70 additions and 96 deletions

View file

@ -35,77 +35,74 @@ export default Vue.extend({
<style lang="stylus" scoped>
.sub
margin 0
padding 0
padding 16px
font-size 0.9em
> article
padding 16px
&:after
content ""
display block
clear both
&:after
content ""
&:hover
> .main > footer > button
color #888
> .avatar-anchor
display block
float left
margin 0 14px 0 0
> .avatar
display block
clear both
width 52px
height 52px
margin 0
border-radius 8px
vertical-align bottom
&:hover
> .main > footer > button
color #888
> .main
float left
width calc(100% - 66px)
> .avatar-anchor
display block
float left
margin 0 14px 0 0
> header
display flex
margin-bottom 2px
white-space nowrap
line-height 21px
> .avatar
> .name
display block
width 52px
height 52px
margin 0 .5em 0 0
padding 0
overflow hidden
color #607073
font-size 1em
font-weight bold
text-decoration none
text-overflow ellipsis
&:hover
text-decoration underline
> .username
margin 0 .5em 0 0
color #d1d8da
> .created-at
margin-left auto
color #b2b8bb
> .body
> .text
cursor default
margin 0
border-radius 8px
vertical-align bottom
padding 0
font-size 1.1em
color #717171
> .main
float left
width calc(100% - 66px)
> header
display flex
margin-bottom 2px
white-space nowrap
line-height 21px
> .name
display block
margin 0 .5em 0 0
padding 0
overflow hidden
color #607073
font-size 1em
font-weight bold
text-decoration none
text-overflow ellipsis
&:hover
text-decoration underline
> .username
margin 0 .5em 0 0
color #d1d8da
> .created-at
margin-left auto
color #b2b8bb
> .body
> .text
cursor default
margin 0
padding 0
font-size 1.1em
color #717171
pre
max-height 120px
font-size 80%
pre
max-height 120px
font-size 80%
</style>

View file

@ -1,7 +1,7 @@
<template>
<div class="post" tabindex="-1" :title="title" @keydown="onKeydown">
<div class="reply-to" v-if="p.reply">
<x-sub post="p.reply"/>
<x-sub :post="p.reply"/>
</div>
<div class="repost" v-if="isRepost">
<p>

View file

@ -12,7 +12,7 @@
<p class="fetching" v-if="fetching">%i18n:desktop.tags.mk-broadcast-home-widget.fetching%<mk-ellipsis/></p>
<h1 v-if="!fetching">{{ broadcasts.length == 0 ? '%i18n:desktop.tags.mk-broadcast-home-widget.no-broadcasts%' : broadcasts[i].title }}</h1>
<p v-if="!fetching">
<span v-if="broadcasts.length != 0" :v-html="broadcasts[i].text"></span>
<span v-if="broadcasts.length != 0" v-html="broadcasts[i].text"></span>
<template v-if="broadcasts.length == 0">%i18n:desktop.tags.mk-broadcast-home-widget.have-a-nice-day%</template>
</p>
<a v-if="broadcasts.length > 1" @click="next">%i18n:desktop.tags.mk-broadcast-home-widget.next% &gt;&gt;</a>

View file

@ -1,7 +1,7 @@
<template>
<div class="channel">
<p v-if="fetching">読み込み中<mk-ellipsis/></p>
<div v-if="!fetching" ref="posts">
<div v-if="!fetching" ref="posts" class="posts">
<p v-if="posts.length == 0">まだ投稿がありません</p>
<x-post class="post" v-for="post in posts.slice().reverse()" :post="post" :key="post.id" @reply="reply"/>
</div>
@ -34,7 +34,9 @@ export default Vue.extend({
}
},
mounted() {
this.zap();
this.$nextTick(() => {
this.zap();
});
},
beforeDestroy() {
this.disconnect();
@ -85,7 +87,7 @@ export default Vue.extend({
text-align center
color #aaa
> div
> .posts
height calc(100% - 38px)
overflow auto
font-size 0.9em

View file

@ -5,7 +5,7 @@
<button @click="settings" title="%i18n:desktop.tags.mk-channel-home-widget.settings%">%fa:cog%</button>
</template>
<p class="get-started" v-if="props.channel == null">%i18n:desktop.tags.mk-channel-home-widget.get-started%</p>
<x-channel class="channel" :channel="channel" v-else/>
<x-channel class="channel" :channel="channel" v-if="channel != null"/>
</div>
</template>