iceshrimp-legacy/src/client/app/desktop/views/components/renote-form.vue
2019-05-21 04:21:43 +09:00

112 lines
2.2 KiB
Vue

<template>
<div class="mk-renote-form">
<mk-note-preview class="preview" :note="note"/>
<template v-if="!quote">
<footer>
<a class="quote" v-if="!quote" @click="onQuote">{{ $t('quote') }}</a>
<ui-button class="button cancel" inline @click="cancel">{{ $t('cancel') }}</ui-button>
<ui-button class="button home" inline :primary="visibility != 'public'" @click="ok('home')" :disabled="wait">{{ wait ? this.$t('reposting') : this.$t('renote-home') }}</ui-button>
<ui-button class="button ok" inline :primary="visibility == 'public'" @click="ok('public')" :disabled="wait">{{ wait ? this.$t('reposting') : this.$t('renote') }}</ui-button>
</footer>
</template>
<template v-if="quote">
<x-post-form ref="form" :renote="note" @posted="onChildFormPosted"/>
</template>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
export default Vue.extend({
i18n: i18n('desktop/views/components/renote-form.vue'),
components: {
XPostForm: () => import('./post-form.vue').then(m => m.default)
},
props: {
note: {
type: Object,
required: true
}
},
data() {
return {
wait: false,
quote: false,
visibility: this.$store.state.settings.defaultNoteVisibility
};
},
methods: {
ok(v: string) {
this.wait = true;
this.$root.api('notes/create', {
renoteId: this.note.id,
visibility: v || this.visibility
}).then(data => {
this.$emit('posted');
this.$notify(this.$t('success'));
}).catch(err => {
this.$notify(this.$t('failure'));
}).then(() => {
this.wait = false;
});
},
cancel() {
this.$emit('canceled');
},
onQuote() {
this.quote = true;
this.$nextTick(() => {
(this.$refs.form as any).focus();
});
},
onChildFormPosted() {
this.$emit('posted');
}
}
});
</script>
<style lang="stylus" scoped>
.mk-renote-form
> .preview
margin 16px 22px
> footer
height 72px
background var(--desktopRenoteFormFooter)
> .quote
position absolute
bottom 16px
left 28px
line-height 40px
> .button
display block
position absolute
bottom 16px
width 120px
height 40px
&.cancel
right 280px
&.home
right 148px
font-size 13px
&.ok
right 16px
</style>