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

100 lines
1.9 KiB
Vue
Raw Normal View History

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