Merge pull request 'feat: local only boost' (#10089) from naskya/calckey:feat/local-only-boost-option into develop

Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10089
This commit is contained in:
Kainoa Kanter 2023-05-11 20:31:04 +00:00
commit 619250a51d

View file

@ -179,6 +179,43 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => {
});
}
if (canRenote) {
buttonActions.push({
text: `${i18n.ts.renote} (${i18n.ts.local})`,
icon: "ph-hand-fist ph-bold ph-lg",
danger: false,
action: () => {
os.api(
"notes/create",
props.note.visibility === "specified"
? {
renoteId: props.note.id,
visibility: props.note.visibility,
visibleUserIds: props.note.visibleUserIds,
localOnly: true,
}
: {
renoteId: props.note.id,
visibility: props.note.visibility,
localOnly: true,
}
);
const el =
ev &&
((ev.currentTarget ?? ev.target) as
| HTMLElement
| null
| undefined);
if (el) {
const rect = el.getBoundingClientRect();
const x = rect.left + el.offsetWidth / 2;
const y = rect.top + el.offsetHeight / 2;
os.popup(Ripple, { x, y }, {}, "end");
}
},
});
}
if (!defaultStore.state.seperateRenoteQuote) {
buttonActions.push({
text: i18n.ts.quote,