Sharkey/src/client/app/desktop/views/components/post-form-window.vue

91 lines
1.8 KiB
Vue
Raw Normal View History

2018-02-11 17:17:51 +02:00
<template>
2018-05-31 10:38:05 +03:00
<mk-window class="mk-post-form-window" ref="window" is-modal @closed="$destroy">
<span slot="header" class="mk-post-form-window--header">
<span class="icon" v-if="geo">%fa:map-marker-alt%</span>
2018-04-14 19:04:40 +03:00
<span v-if="!reply">%i18n:@note%</span>
<span v-if="reply">%i18n:@reply%</span>
2018-05-31 10:38:05 +03:00
<span class="count" v-if="media.length != 0">{{ '%i18n:@attaches%'.replace('{}', media.length) }}</span>
<span class="count" v-if="uploadings.length != 0">{{ '%i18n:@uploading-media%'.replace('{}', uploadings.length) }}<mk-ellipsis/></span>
2018-02-11 17:17:51 +02:00
</span>
2018-02-16 10:01:36 +02:00
2018-05-31 10:38:05 +03:00
<div class="mk-post-form-window--body">
<mk-note-preview v-if="reply" class="notePreview" :note="reply"/>
<mk-post-form ref="form"
:reply="reply"
@posted="onPosted"
@change-uploadings="onChangeUploadings"
@change-attached-media="onChangeMedia"
@geo-attached="onGeoAttached"
@geo-dettached="onGeoDettached"/>
</div>
2018-02-11 17:17:51 +02:00
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['reply'],
data() {
return {
uploadings: [],
2018-03-05 01:44:37 +02:00
media: [],
geo: null
2018-02-11 17:17:51 +02:00
};
},
mounted() {
2018-02-18 11:40:24 +02:00
this.$nextTick(() => {
2018-02-14 12:03:48 +02:00
(this.$refs.form as any).focus();
});
2018-02-11 17:17:51 +02:00
},
methods: {
2018-02-16 08:38:12 +02:00
onChangeUploadings(files) {
this.uploadings = files;
2018-02-11 17:17:51 +02:00
},
onChangeMedia(media) {
this.media = media;
2018-02-14 12:30:35 +02:00
},
2018-03-05 01:44:37 +02:00
onGeoAttached(geo) {
this.geo = geo;
},
2018-03-05 07:09:12 +02:00
onGeoDettached() {
this.geo = null;
},
2018-02-14 12:30:35 +02:00
onPosted() {
(this.$refs.window as any).close();
2018-02-11 17:17:51 +02:00
}
}
});
</script>
2018-05-31 10:38:05 +03:00
<style lang="stylus" scoped>
root(isDark)
.mk-post-form-window--header
.icon
margin-right 8px
2018-03-05 01:44:37 +02:00
2018-05-31 10:38:05 +03:00
.count
margin-left 8px
opacity 0.8
2018-02-11 17:17:51 +02:00
2018-05-31 10:38:05 +03:00
&:before
content '('
2018-02-11 17:17:51 +02:00
2018-05-31 10:38:05 +03:00
&:after
content ')'
2018-02-11 17:17:51 +02:00
2018-05-31 10:38:05 +03:00
.mk-post-form-window--body
.notePreview
if isDark
margin 16px 22px 0 22px
else
margin 16px 22px
.mk-post-form-window[data-darkmode]
root(true)
.mk-post-form-window:not([data-darkmode])
root(false)
2018-02-11 17:17:51 +02:00
</style>