enhance(client): make possible to in-channel renote/quote

This commit is contained in:
syuilo 2023-02-12 10:59:22 +09:00
parent 784fc7b3f5
commit 2f48d109dd
3 changed files with 32 additions and 2 deletions

View file

@ -247,7 +247,32 @@ useTooltip(renoteButton, async (showing) => {
function renote(viaKeyboard = false) {
pleaseLogin();
os.popupMenu([{
let items = [];
if (appearNote.channel) {
items = items.concat([{
text: i18n.ts.inChannelRenote,
icon: 'ti ti-repeat',
action: () => {
os.api('notes/create', {
renoteId: appearNote.id,
channelId: appearNote.channelId,
});
},
}, {
text: i18n.ts.inChannelQuote,
icon: 'ti ti-quote',
action: () => {
os.post({
renote: appearNote,
channel: appearNote.channel,
});
},
}, null]);
}
items = items.concat([{
text: i18n.ts.renote,
icon: 'ti ti-repeat',
action: () => {
@ -263,7 +288,9 @@ function renote(viaKeyboard = false) {
renote: appearNote,
});
},
}], renoteButton.value, {
}]);
os.popupMenu(items, renoteButton.value, {
viaKeyboard,
});
}