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

102 lines
2 KiB
Vue
Raw Normal View History

2018-02-11 17:17:51 +02:00
<template>
2018-09-18 08:50:13 +03:00
<mk-window class="mk-post-form-window" ref="window" is-modal @closed="onWindowClosed" :animation="animation">
2018-05-31 10:38:05 +03:00
<span slot="header" class="mk-post-form-window--header">
<span class="icon" v-if="geo"><fa icon="map-marker-alt"/></span>
<span v-if="!reply">{{ $t('note') }}</span>
<span v-if="reply">{{ $t('reply') }}</span>
<span class="count" v-if="files.length != 0">{{ this.$t('attaches').replace('{}', files.length) }}</span>
<span class="count" v-if="uploadings.length != 0">{{ this.$t('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"
2018-09-05 13:32:46 +03:00
@change-attached-files="onChangeFiles"
2018-05-31 10:38:05 +03:00
@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';
import i18n from '../../../i18n';
2018-02-11 17:17:51 +02:00
export default Vue.extend({
i18n: i18n('desktop/views/components/post-form-window.vue'),
2018-09-18 08:50:13 +03:00
props: {
reply: {
type: Object,
2018-09-18 20:26:06 +03:00
required: false
2018-09-18 08:50:13 +03:00
},
animation: {
type: Boolean,
required: false,
default: true
}
},
2018-02-11 17:17:51 +02:00
data() {
return {
uploadings: [],
2018-09-05 13:32:46 +03:00
files: [],
2018-03-05 01:44:37 +02:00
geo: null
2018-02-11 17:17:51 +02:00
};
},
2018-09-18 08:50:13 +03:00
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
},
2018-09-18 08:50:13 +03:00
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
},
2018-09-05 13:32:46 +03:00
onChangeFiles(files) {
this.files = files;
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();
},
onWindowClosed() {
this.$emit('closed');
this.destroyDom();
2018-02-11 17:17:51 +02:00
}
}
});
</script>
2018-05-31 10:38:05 +03:00
<style lang="stylus" scoped>
2018-09-28 13:59:19 +03:00
.mk-post-form-window
2018-05-31 10:38:05 +03:00
.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
margin 16px 22px
2018-02-11 17:17:51 +02:00
</style>