Sharkey/src/client/app/mobile/views/components/note-card.vue

92 lines
1.6 KiB
Vue
Raw Normal View History

2018-02-15 11:33:34 +02:00
<template>
2018-04-07 20:30:37 +03:00
<div class="mk-note-card">
2018-04-09 12:52:29 +03:00
<a :href="note | notePage">
2018-02-15 11:33:34 +02:00
<header>
2018-04-09 12:52:29 +03:00
<img :src="`${note.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/><h3>{{ note.user | userName }}</h3>
2018-02-15 11:33:34 +02:00
</header>
<div>
{{ text }}
</div>
2018-04-07 20:30:37 +03:00
<mk-time :time="note.createdAt"/>
2018-02-15 11:33:34 +02:00
</a>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-07-07 13:19:00 +03:00
import summary from '../../../../../misc/get-note-summary';
2018-02-15 11:33:34 +02:00
export default Vue.extend({
2018-04-07 20:30:37 +03:00
props: ['note'],
2018-02-15 11:33:34 +02:00
computed: {
text(): string {
2018-04-07 20:30:37 +03:00
return summary(this.note);
2018-02-15 11:33:34 +02:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-04-28 04:59:37 +03:00
root(isDark)
2018-02-15 11:33:34 +02:00
display inline-block
width 150px
//height 120px
font-size 12px
2018-04-28 04:59:37 +03:00
background isDark ? #282c37 : #fff
2018-02-15 11:33:34 +02:00
border-radius 4px
> a
display block
2018-04-28 04:59:37 +03:00
color isDark ? #fff : #2c3940
2018-02-15 11:33:34 +02:00
&:hover
text-decoration none
> header
> img
position absolute
top 8px
left 8px
width 28px
height 28px
border-radius 6px
> h3
display inline-block
overflow hidden
width calc(100% - 45px)
margin 8px 0 0 42px
line-height 28px
white-space nowrap
text-overflow ellipsis
font-size 12px
> div
padding 2px 8px 8px 8px
height 60px
overflow hidden
white-space normal
&:after
content ""
display block
position absolute
top 40px
left 0
width 100%
height 20px
2018-04-28 04:59:37 +03:00
background isDark ? linear-gradient(to bottom, rgba(#282c37, 0) 0%, #282c37 100%) : linear-gradient(to bottom, rgba(#fff, 0) 0%, #fff 100%)
2018-02-15 11:33:34 +02:00
2018-02-16 20:01:00 +02:00
> .mk-time
2018-02-15 11:33:34 +02:00
display inline-block
padding 8px
color #aaa
2018-04-28 04:59:37 +03:00
.mk-note-card[data-darkmode]
root(true)
.mk-note-card:not([data-darkmode])
root(false)
2018-02-15 11:33:34 +02:00
</style>