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

87 lines
1.4 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-07-24 17:43:14 +03:00
<img :src="note.user.avatarUrl" 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-09-28 06:20:22 +03:00
.mk-note-card
2018-02-15 11:33:34 +02:00
display inline-block
width 150px
//height 120px
font-size 12px
2018-09-26 14:28:13 +03:00
background var(--face)
2018-02-15 11:33:34 +02:00
border-radius 4px
2018-09-28 06:20:22 +03:00
box-shadow 0 2px 8px rgba(0, 0, 0, 0.2)
2018-02-15 11:33:34 +02:00
> a
display block
2018-09-28 06:20:22 +03:00
color var(--noteText)
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-09-28 06:20:22 +03:00
background linear-gradient(to bottom, transparent 0%, var(--face) 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
</style>