2018-04-07 19:30:37 +02:00
|
|
|
<template>
|
|
|
|
<div class="mk-renote-form">
|
2018-09-13 10:44:36 +02:00
|
|
|
<mk-note-preview class="preview" :note="note"/>
|
2018-04-07 19:30:37 +02:00
|
|
|
<template v-if="!quote">
|
|
|
|
<footer>
|
2018-11-08 19:44:35 +01:00
|
|
|
<a class="quote" v-if="!quote" @click="onQuote">{{ $t('quote') }}</a>
|
|
|
|
<ui-button class="button cancel" inline @click="cancel">{{ $t('cancel') }}</ui-button>
|
2018-11-16 19:25:48 +01:00
|
|
|
<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>
|
2018-04-07 19:30:37 +02:00
|
|
|
</footer>
|
|
|
|
</template>
|
|
|
|
<template v-if="quote">
|
|
|
|
<mk-post-form ref="form" :renote="note" @posted="onChildFormPosted"/>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('desktop/views/components/renote-form.vue'),
|
2018-04-07 19:30:37 +02:00
|
|
|
props: ['note'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
wait: false,
|
2018-11-16 19:25:48 +01:00
|
|
|
quote: false,
|
|
|
|
visibility: this.$store.state.settings.defaultNoteVisibility
|
2018-04-07 19:30:37 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
2018-11-16 19:25:48 +01:00
|
|
|
ok(v: string) {
|
2018-04-07 19:30:37 +02:00
|
|
|
this.wait = true;
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('notes/create', {
|
2018-11-16 19:25:48 +01:00
|
|
|
renoteId: this.note.id,
|
|
|
|
visibility: v || this.visibility
|
2018-04-07 19:30:37 +02:00
|
|
|
}).then(data => {
|
|
|
|
this.$emit('posted');
|
2018-11-09 08:00:29 +01:00
|
|
|
this.$notify(this.$t('success'));
|
2018-04-07 19:30:37 +02:00
|
|
|
}).catch(err => {
|
2018-11-09 08:00:29 +01:00
|
|
|
this.$notify(this.$t('failure'));
|
2018-04-07 19:30:37 +02:00
|
|
|
}).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>
|
2018-09-28 08:34:34 +02:00
|
|
|
.mk-renote-form
|
2018-09-13 10:44:36 +02:00
|
|
|
> .preview
|
2018-04-07 19:30:37 +02:00
|
|
|
margin 16px 22px
|
|
|
|
|
|
|
|
> footer
|
|
|
|
height 72px
|
2018-09-28 08:34:34 +02:00
|
|
|
background var(--desktopRenoteFormFooter)
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
> .quote
|
|
|
|
position absolute
|
|
|
|
bottom 16px
|
|
|
|
left 28px
|
|
|
|
line-height 40px
|
|
|
|
|
2018-09-28 13:39:32 +02:00
|
|
|
> .button
|
2018-04-07 19:30:37 +02:00
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
bottom 16px
|
|
|
|
width 120px
|
|
|
|
height 40px
|
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
&.cancel
|
2018-11-16 19:25:48 +01:00
|
|
|
right 280px
|
|
|
|
|
|
|
|
&.home
|
2018-04-20 00:45:37 +02:00
|
|
|
right 148px
|
2018-11-16 19:25:48 +01:00
|
|
|
font-size 13px
|
2018-04-07 19:30:37 +02:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
&.ok
|
|
|
|
right 16px
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
</style>
|