egirlskey/src/client/app/common/scripts/note-mixin.ts

187 lines
3.9 KiB
TypeScript
Raw Normal View History

2018-10-12 05:28:48 +00:00
import parse from '../../../../mfm/parse';
import { sum } from '../../../../prelude/array';
import shouldMuteNote from './should-mute-note';
2018-10-13 03:48:33 +00:00
import MkNoteMenu from '../views/components/note-menu.vue';
2018-10-12 05:28:48 +00:00
import MkReactionPicker from '../views/components/reaction-picker.vue';
function focus(el, fn) {
const target = fn(el);
if (target) {
if (target.hasAttribute('tabindex')) {
target.focus();
} else {
focus(target, fn);
}
}
}
type Opts = {
mobile?: boolean;
};
export default (opts: Opts = {}) => ({
data() {
return {
showContent: false,
hideThisNote: false
2018-10-12 05:28:48 +00:00
};
},
computed: {
keymap(): any {
return {
'r': () => this.reply(true),
2018-10-12 05:28:48 +00:00
'e|a|plus': () => this.react(true),
'q': () => this.renote(true),
2018-10-13 03:48:33 +00:00
'f|b': this.favorite,
'delete|ctrl+d': this.del,
'ctrl+q': this.renoteDirectly,
2018-10-12 05:28:48 +00:00
'up|k|shift+tab': this.focusBefore,
'down|j|tab': this.focusAfter,
'esc': this.blur,
'm|o': () => this.menu(true),
's': this.toggleShowContent,
'1': () => this.reactDirectly('like'),
'2': () => this.reactDirectly('love'),
'3': () => this.reactDirectly('laugh'),
'4': () => this.reactDirectly('hmm'),
'5': () => this.reactDirectly('surprise'),
'6': () => this.reactDirectly('congrats'),
'7': () => this.reactDirectly('angry'),
'8': () => this.reactDirectly('confused'),
'9': () => this.reactDirectly('rip'),
'0': () => this.reactDirectly('pudding'),
};
},
isRenote(): boolean {
return (this.note.renote &&
this.note.text == null &&
this.note.fileIds.length == 0 &&
this.note.poll == null);
},
appearNote(): any {
return this.isRenote ? this.note.renote : this.note;
},
reactionsCount(): number {
return this.appearNote.reactionCounts
? sum(Object.values(this.appearNote.reactionCounts))
: 0;
},
title(): string {
return new Date(this.appearNote.createdAt).toLocaleString();
},
urls(): string[] {
if (this.appearNote.text) {
const ast = parse(this.appearNote.text);
return ast
.filter(t => (t.type == 'url' || t.type == 'link') && !t.silent)
.map(t => t.url);
} else {
return null;
}
}
},
created() {
this.hideThisNote = shouldMuteNote(this.$store.state.i, this.$store.state.settings, this.appearNote);
},
2018-10-12 05:28:48 +00:00
methods: {
2018-10-12 05:34:54 +00:00
reply(viaKeyboard = false) {
this.$root.$post({
2018-10-12 05:34:54 +00:00
reply: this.appearNote,
animation: !viaKeyboard,
cb: () => {
this.focus();
}
});
},
renote(viaKeyboard = false) {
this.$root.$post({
2018-10-12 05:34:54 +00:00
renote: this.appearNote,
animation: !viaKeyboard,
cb: () => {
this.focus();
}
});
},
2018-10-12 05:28:48 +00:00
renoteDirectly() {
(this as any).api('notes/create', {
renoteId: this.appearNote.id
});
},
react(viaKeyboard = false) {
this.blur();
2018-11-08 23:13:34 +00:00
this.$root.new(MkReactionPicker, {
2018-10-12 05:28:48 +00:00
source: this.$refs.reactButton,
note: this.appearNote,
showFocus: viaKeyboard,
animation: !viaKeyboard,
compact: opts.mobile,
big: opts.mobile
}).$once('closed', this.focus);
},
reactDirectly(reaction) {
2018-11-08 23:13:34 +00:00
(this.$root.api('notes/reactions/create', {
2018-10-12 05:28:48 +00:00
noteId: this.appearNote.id,
reaction: reaction
});
},
2018-10-13 03:48:33 +00:00
favorite() {
2018-11-08 23:13:34 +00:00
this.$root.api('notes/favorites/create', {
2018-10-13 03:48:33 +00:00
noteId: this.appearNote.id
}).then(() => {
2018-11-14 15:01:49 +00:00
this.$root.alert({
type: 'success',
splash: true
});
2018-10-13 03:48:33 +00:00
});
},
del() {
2018-11-08 23:13:34 +00:00
this.$root.api('notes/delete', {
2018-10-13 03:48:33 +00:00
noteId: this.appearNote.id
});
},
2018-10-12 05:28:48 +00:00
menu(viaKeyboard = false) {
2018-11-08 23:13:34 +00:00
this.$root.new(MkNoteMenu, {
2018-10-12 05:28:48 +00:00
source: this.$refs.menuButton,
note: this.appearNote,
animation: !viaKeyboard,
compact: opts.mobile,
}).$once('closed', this.focus);
},
toggleShowContent() {
this.showContent = !this.showContent;
},
focus() {
this.$el.focus();
},
blur() {
this.$el.blur();
},
focusBefore() {
focus(this.$el, e => e.previousElementSibling);
},
focusAfter() {
focus(this.$el, e => e.nextElementSibling);
}
}
});