197 lines
4.2 KiB
TypeScript
197 lines
4.2 KiB
TypeScript
import { parse } from '../../../../mfm/parse';
|
|
import { sum, unique } from '../../../../prelude/array';
|
|
import shouldMuteNote from './should-mute-note';
|
|
import MkNoteMenu from '../views/components/note-menu.vue';
|
|
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
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
keymap(): any {
|
|
return {
|
|
'r': () => this.reply(true),
|
|
'e|a|plus': () => this.react(true),
|
|
'q': () => this.renote(true),
|
|
'f|b': this.favorite,
|
|
'delete|ctrl+d': this.del,
|
|
'ctrl+q': this.renoteDirectly,
|
|
'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;
|
|
},
|
|
|
|
isMyNote(): boolean {
|
|
return this.$store.getters.isSignedIn && (this.$store.state.i.id === this.appearNote.userId);
|
|
},
|
|
|
|
reactionsCount(): number {
|
|
return this.appearNote.reactions
|
|
? sum(Object.values(this.appearNote.reactions))
|
|
: 0;
|
|
},
|
|
|
|
title(): string {
|
|
return '';
|
|
},
|
|
|
|
urls(): string[] {
|
|
if (this.appearNote.text) {
|
|
const ast = parse(this.appearNote.text);
|
|
// TODO: 再帰的にURL要素がないか調べる
|
|
return unique(ast
|
|
.filter(t => ((t.node.type == 'url' || t.node.type == 'link') && t.node.props.url && !t.node.props.silent))
|
|
.map(t => t.node.props.url));
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.hideThisNote = shouldMuteNote(this.$store.state.i, this.$store.state.settings, this.appearNote);
|
|
},
|
|
|
|
methods: {
|
|
reply(viaKeyboard = false) {
|
|
this.$root.$post({
|
|
reply: this.appearNote,
|
|
animation: !viaKeyboard,
|
|
cb: () => {
|
|
this.focus();
|
|
}
|
|
});
|
|
},
|
|
|
|
renote(viaKeyboard = false) {
|
|
this.$root.$post({
|
|
renote: this.appearNote,
|
|
animation: !viaKeyboard,
|
|
cb: () => {
|
|
this.focus();
|
|
}
|
|
});
|
|
},
|
|
|
|
renoteDirectly() {
|
|
(this as any).api('notes/create', {
|
|
renoteId: this.appearNote.id
|
|
});
|
|
},
|
|
|
|
react(viaKeyboard = false) {
|
|
this.blur();
|
|
this.$root.new(MkReactionPicker, {
|
|
source: this.$refs.reactButton,
|
|
note: this.appearNote,
|
|
showFocus: viaKeyboard,
|
|
animation: !viaKeyboard
|
|
}).$once('closed', this.focus);
|
|
},
|
|
|
|
reactDirectly(reaction) {
|
|
this.$root.api('notes/reactions/create', {
|
|
noteId: this.appearNote.id,
|
|
reaction: reaction
|
|
});
|
|
},
|
|
|
|
undoReact(note) {
|
|
const oldReaction = note.myReaction;
|
|
if (!oldReaction) return;
|
|
this.$root.api('notes/reactions/delete', {
|
|
noteId: note.id
|
|
});
|
|
},
|
|
|
|
favorite() {
|
|
this.$root.api('notes/favorites/create', {
|
|
noteId: this.appearNote.id
|
|
}).then(() => {
|
|
this.$root.dialog({
|
|
type: 'success',
|
|
splash: true
|
|
});
|
|
});
|
|
},
|
|
|
|
del() {
|
|
this.$root.api('notes/delete', {
|
|
noteId: this.appearNote.id
|
|
});
|
|
},
|
|
|
|
menu(viaKeyboard = false) {
|
|
this.$root.new(MkNoteMenu, {
|
|
source: this.$refs.menuButton,
|
|
note: this.appearNote,
|
|
animation: !viaKeyboard
|
|
}).$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);
|
|
}
|
|
}
|
|
});
|