Sharkey/src/client/app/common/views/components/messaging-room.message.vue

272 lines
5.1 KiB
Vue
Raw Normal View History

2018-02-13 08:38:53 +02:00
<template>
2018-02-20 18:39:51 +02:00
<div class="message" :data-is-me="isMe">
2018-04-29 11:17:15 +03:00
<mk-avatar class="avatar" :user="message.user" target="_blank"/>
2018-02-26 19:10:52 +02:00
<div class="content">
<div class="balloon" :data-no-text="message.text == null">
<p class="read" v-if="isMe && message.isRead">%i18n:@is-read%</p>
2018-07-19 01:48:42 +03:00
<!-- <button class="delete-button" v-if="isMe" title="%i18n:common.delete%">
2018-02-18 17:18:01 +02:00
<img src="/assets/desktop/messaging/delete.png" alt="Delete"/>
2018-07-19 01:48:42 +03:00
</button> -->
2018-03-29 08:48:47 +03:00
<div class="content" v-if="!message.isDeleted">
2018-06-20 13:55:34 +03:00
<misskey-flavored-markdown class="text" v-if="message.text" ref="text" :text="message.text" :i="$store.state.i"/>
2018-02-26 19:10:52 +02:00
<div class="file" v-if="message.file">
<a :href="message.file.url" target="_blank" :title="message.file.name">
<img v-if="message.file.type.split('/')[0] == 'image'" :src="message.file.url" :alt="message.file.name"/>
<p v-else>{{ message.file.name }}</p>
</a>
2018-02-18 17:18:01 +02:00
</div>
2018-02-13 08:38:53 +02:00
</div>
2018-03-29 08:48:47 +03:00
<div class="content" v-if="message.isDeleted">
2018-04-14 19:04:40 +03:00
<p class="is-deleted">%i18n:@deleted%</p>
2018-02-13 08:38:53 +02:00
</div>
</div>
2018-02-26 19:10:52 +02:00
<div></div>
<mk-url-preview v-for="url in urls" :url="url" :key="url"/>
2018-02-13 08:38:53 +02:00
<footer>
2018-03-29 08:48:47 +03:00
<mk-time :time="message.createdAt"/>
2018-02-18 17:18:01 +02:00
<template v-if="message.is_edited">%fa:pencil-alt%</template>
2018-02-13 08:38:53 +02:00
</footer>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import parse from '../../../../../mfm/parse';
2018-02-13 08:38:53 +02:00
export default Vue.extend({
props: {
message: {
required: true
}
2018-03-31 13:53:30 +03:00
},
2018-02-13 08:38:53 +02:00
computed: {
isMe(): boolean {
2018-05-27 07:49:09 +03:00
return this.message.userId == this.$store.state.i.id;
},
urls(): string[] {
if (this.message.text) {
const ast = parse(this.message.text);
return ast
.filter(t => (t.type == 'url' || t.type == 'link') && !t.silent)
.map(t => t.url);
} else {
return null;
}
2018-02-13 08:38:53 +02:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-05-23 23:46:09 +03:00
@import '~const.styl'
root(isDark)
$me-balloon-color = $theme-color
2018-02-13 08:38:53 +02:00
padding 10px 12px 10px 12px
background-color transparent
2018-04-29 11:17:15 +03:00
> .avatar
2018-02-13 08:38:53 +02:00
display block
2018-02-26 19:10:52 +02:00
position absolute
top 10px
2018-04-29 11:17:15 +03:00
width 54px
height 54px
border-radius 8px
transition all 0.1s ease
2018-02-13 08:38:53 +02:00
2018-02-26 19:10:52 +02:00
> .content
2018-02-13 08:38:53 +02:00
> .balloon
display block
padding 0
2018-02-26 19:10:52 +02:00
max-width calc(100% - 16px)
2018-02-13 08:38:53 +02:00
min-height 38px
border-radius 16px
&:before
content ""
pointer-events none
display block
position absolute
top 12px
2018-02-26 19:10:52 +02:00
& + *
clear both
2018-02-13 08:38:53 +02:00
&:hover
> .delete-button
display block
> .delete-button
display none
position absolute
z-index 1
top -4px
right -4px
margin 0
padding 0
cursor pointer
outline none
border none
border-radius 0
box-shadow none
background transparent
> img
vertical-align bottom
width 16px
height 16px
cursor pointer
> .read
user-select none
display block
position absolute
z-index 1
bottom -4px
left -12px
margin 0
color isDark ? rgba(#fff, 0.5) : rgba(#000, 0.5)
font-size 11px
2018-02-13 08:38:53 +02:00
> .content
> .is-deleted
display block
margin 0
padding 0
overflow hidden
overflow-wrap break-word
font-size 1em
2018-04-29 02:51:17 +03:00
color rgba(#000, 0.5)
2018-02-13 08:38:53 +02:00
2018-02-18 17:18:01 +02:00
> .text
2018-02-13 08:38:53 +02:00
display block
margin 0
padding 8px 16px
overflow hidden
overflow-wrap break-word
font-size 1em
2018-04-29 02:51:17 +03:00
color rgba(#000, 0.8)
2018-02-13 08:38:53 +02:00
& + .file
2018-02-26 19:10:52 +02:00
> a
border-radius 0 0 16px 16px
2018-02-13 08:38:53 +02:00
> .file
2018-02-26 19:10:52 +02:00
> a
display block
max-width 100%
max-height 512px
border-radius 16px
overflow hidden
text-decoration none
&:hover
text-decoration none
> p
background #ccc
> *
2018-02-13 08:38:53 +02:00
display block
2018-02-26 19:10:52 +02:00
margin 0
width 100%
height 100%
> p
padding 30px
text-align center
color #555
background #ddd
> .mk-url-preview
margin 8px 0
2018-02-13 08:38:53 +02:00
> footer
display block
2018-02-26 19:10:52 +02:00
margin 2px 0 0 0
font-size 10px
2018-05-23 23:46:09 +03:00
color isDark ? rgba(#fff, 0.4) : rgba(#000, 0.4)
2018-02-13 08:38:53 +02:00
> [data-fa]
margin-left 4px
2018-02-20 18:39:51 +02:00
&:not([data-is-me])
2018-04-29 11:17:15 +03:00
> .avatar
2018-02-26 19:10:52 +02:00
left 12px
2018-02-13 08:38:53 +02:00
2018-02-26 19:10:52 +02:00
> .content
padding-left 66px
2018-02-13 08:38:53 +02:00
> .balloon
2018-05-23 23:46:09 +03:00
$color = isDark ? #2d3338 : #eee
2018-02-26 19:10:52 +02:00
float left
2018-05-23 23:46:09 +03:00
background $color
2018-02-13 08:38:53 +02:00
2018-02-26 19:10:52 +02:00
&[data-no-text]
background transparent
&:not([data-no-text]):before
2018-02-13 08:38:53 +02:00
left -14px
border-top solid 8px transparent
2018-05-23 23:46:09 +03:00
border-right solid 8px $color
2018-02-13 08:38:53 +02:00
border-bottom solid 8px transparent
border-left solid 8px transparent
2018-05-23 23:46:09 +03:00
> .content
> .text
if isDark
color #fff
2018-02-13 08:38:53 +02:00
> footer
text-align left
2018-02-13 08:38:53 +02:00
2018-02-20 18:39:51 +02:00
&[data-is-me]
2018-04-29 11:17:15 +03:00
> .avatar
2018-02-26 19:10:52 +02:00
right 12px
2018-02-13 08:38:53 +02:00
2018-02-26 19:10:52 +02:00
> .content
padding-right 66px
2018-02-13 08:38:53 +02:00
> .balloon
2018-02-26 19:10:52 +02:00
float right
2018-02-13 08:38:53 +02:00
background $me-balloon-color
2018-02-26 19:10:52 +02:00
&[data-no-text]
background transparent
&:not([data-no-text]):before
2018-02-13 08:38:53 +02:00
right -14px
left auto
border-top solid 8px transparent
border-right solid 8px transparent
border-bottom solid 8px transparent
border-left solid 8px $me-balloon-color
> .content
> p.is-deleted
2018-05-23 23:46:09 +03:00
color rgba(#fff, 0.5)
2018-02-13 08:38:53 +02:00
2018-02-22 22:43:19 +02:00
> .text >>>
2018-02-13 08:38:53 +02:00
&, *
color #fff !important
> footer
text-align right
2018-02-13 08:38:53 +02:00
2018-02-20 18:39:51 +02:00
&[data-is-deleted]
2018-02-26 19:10:52 +02:00
> .baloon
opacity 0.5
2018-02-13 08:38:53 +02:00
2018-05-23 23:46:09 +03:00
.message[data-darkmode]
root(true)
.message:not([data-darkmode])
root(false)
2018-02-13 08:38:53 +02:00
</style>