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

88 lines
1.6 KiB
Vue
Raw Normal View History

2018-04-07 20:30:37 +03:00
<template>
<div class="mk-renote-form">
2018-09-13 11:44:36 +03:00
<mk-note-preview class="preview" :note="note"/>
2018-04-07 20:30:37 +03:00
<template v-if="!quote">
<footer>
2018-04-14 19:04:40 +03:00
<a class="quote" v-if="!quote" @click="onQuote">%i18n:@quote%</a>
2018-04-20 01:45:37 +03:00
<button class="ui cancel" @click="cancel">%i18n:@cancel%</button>
2018-05-20 14:26:38 +03:00
<button class="ui primary ok" @click="ok" :disabled="wait">{{ wait ? '%i18n:@reposting%' : '%i18n:@renote%' }}</button>
2018-04-07 20:30:37 +03: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 14:26:38 +03:00
(this as any).apis.notify('%i18n:@success%');
2018-04-07 20:30:37 +03:00
}).catch(err => {
2018-05-20 14:26:38 +03:00
(this as any).apis.notify('%i18n:@failure%');
2018-04-07 20:30:37 +03: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 09:34:34 +03:00
.mk-renote-form
2018-09-13 11:44:36 +03:00
> .preview
2018-04-07 20:30:37 +03:00
margin 16px 22px
> footer
height 72px
2018-09-28 09:34:34 +03:00
background var(--desktopRenoteFormFooter)
2018-04-07 20:30:37 +03: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 01:45:37 +03:00
&.cancel
right 148px
2018-04-07 20:30:37 +03:00
2018-04-20 01:45:37 +03:00
&.ok
right 16px
2018-04-07 20:30:37 +03:00
</style>