1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 00:15:35 +02:00
This commit is contained in:
syuilo
2018-10-12 14:34:54 +09:00
parent dded76099c
commit 9b253ccb3a
6 changed files with 27 additions and 54 deletions

View File

@@ -84,6 +84,26 @@ export default (opts: Opts = {}) => ({
},
methods: {
reply(viaKeyboard = false) {
(this as any).apis.post({
reply: this.appearNote,
animation: !viaKeyboard,
cb: () => {
this.focus();
}
});
},
renote(viaKeyboard = false) {
(this as any).apis.post({
renote: this.appearNote,
animation: !viaKeyboard,
cb: () => {
this.focus();
}
});
},
renoteDirectly() {
(this as any).api('notes/create', {
renoteId: this.appearNote.id