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-04-14 18:04:40 +02:00
|
|
|
<a class="quote" v-if="!quote" @click="onQuote">%i18n:@quote%</a>
|
2018-04-20 00:45:37 +02:00
|
|
|
<button class="ui cancel" @click="cancel">%i18n:@cancel%</button>
|
2018-05-20 13:26:38 +02:00
|
|
|
<button class="ui primary ok" @click="ok" :disabled="wait">{{ wait ? '%i18n:@reposting%' : '%i18n:@renote%' }}</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';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['note'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
wait: false,
|
|
|
|
quote: false
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
ok() {
|
|
|
|
this.wait = true;
|
|
|
|
(this as any).api('notes/create', {
|
|
|
|
renoteId: this.note.id
|
|
|
|
}).then(data => {
|
|
|
|
this.$emit('posted');
|
2018-05-20 13:26:38 +02:00
|
|
|
(this as any).apis.notify('%i18n:@success%');
|
2018-04-07 19:30:37 +02:00
|
|
|
}).catch(err => {
|
2018-05-20 13:26:38 +02:00
|
|
|
(this as any).apis.notify('%i18n:@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
|
|
|
|
|
|
|
|
button
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
bottom 16px
|
|
|
|
width 120px
|
|
|
|
height 40px
|
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
&.cancel
|
|
|
|
right 148px
|
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>
|