firefish/packages/client/src/components/MkRenoteButton.vue
2024-04-22 05:43:58 +09:00

264 lines
6.1 KiB
Vue

<template>
<button
v-if="canRenote"
ref="buttonRef"
v-tooltip.noDelay.bottom="i18n.ts.renote"
class="button _button"
:class="{ renoted: hasRenotedBefore }"
@click.stop="renote(false, $event)"
>
<i :class="icon('ph-rocket-launch')"></i>
<p v-if="count > 0 && !detailedView" class="count">{{ count }}</p>
</button>
<button
v-else
v-tooltip.noDelay.bottom="i18n.ts.disabled"
class="_button"
disabled="true"
>
<i :class="icon('ph-rocket-launch')"></i>
</button>
</template>
<script lang="ts" setup>
import { computed, ref } from "vue";
import type { entities } from "firefish-js";
import Ripple from "@/components/MkRipple.vue";
import XDetails from "@/components/MkUsersTooltip.vue";
import { pleaseLogin } from "@/scripts/please-login";
import * as os from "@/os";
import { me } from "@/me";
import { useTooltip } from "@/scripts/use-tooltip";
import { i18n } from "@/i18n";
import { defaultStore } from "@/store";
import type { MenuItem } from "@/types/menu";
import { vibrate } from "@/scripts/vibrate";
import icon from "@/scripts/icon";
const props = defineProps<{
note: entities.Note;
count: number;
detailedView?;
}>();
const buttonRef = ref<HTMLElement>();
const canRenote = computed(
() =>
["public", "home"].includes(props.note.visibility) ||
props.note.userId === me?.id,
);
useTooltip(buttonRef, async (showing) => {
const renotes = await os.api("notes/renotes", {
noteId: props.note.id,
limit: 11,
});
const users = renotes.map((x) => x.user);
if (users.length < 1) return;
os.popup(
XDetails,
{
showing,
users,
count: props.count,
targetElement: buttonRef.value,
},
{},
"closed",
);
});
const hasRenotedBefore = ref(
props.note.myRenoteCount && props.note.myRenoteCount > 0,
);
const renote = (viaKeyboard = false, ev?: MouseEvent) => {
pleaseLogin();
const buttonActions: Array<MenuItem> = [];
if (props.note.visibility === "public") {
buttonActions.push({
text: i18n.ts.renote,
icon: `${icon("ph-rocket-launch")}`,
danger: false,
action: () => {
os.api("notes/create", {
renoteId: props.note.id,
visibility: "public",
});
hasRenotedBefore.value = 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 (["public", "home"].includes(props.note.visibility)) {
buttonActions.push({
text: `${i18n.ts.renote} (${i18n.ts._visibility.home})`,
icon: `${icon("ph-house")}`,
danger: false,
action: () => {
os.api("notes/create", {
renoteId: props.note.id,
visibility: "home",
});
hasRenotedBefore.value = 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 (props.note.visibility === "specified") {
buttonActions.push({
text: `${i18n.ts.renote} (${i18n.ts.recipient})`,
icon: `${icon("ph-envelope-simple-open")}`,
danger: false,
action: () => {
os.api("notes/create", {
renoteId: props.note.id,
visibility: "specified",
visibleUserIds: props.note.visibleUserIds,
});
hasRenotedBefore.value = 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");
}
},
});
} else {
buttonActions.push({
text: `${i18n.ts.renote} (${i18n.ts._visibility.followers})`,
icon: `${icon("ph-lock")}`,
danger: false,
action: () => {
os.api("notes/create", {
renoteId: props.note.id,
visibility: "followers",
});
hasRenotedBefore.value = 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 (canRenote.value) {
buttonActions.push({
text: `${i18n.ts.renote} (${i18n.ts.local})`,
icon: `${icon("ph-users")}`,
danger: false,
action: () => {
vibrate([30, 30, 60]);
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,
},
);
hasRenotedBefore.value = 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,
icon: `${icon("ph-quotes")}`,
danger: false,
action: () => {
os.post({
renote: props.note,
});
},
});
}
if (hasRenotedBefore.value) {
buttonActions.push({
text: i18n.ts.unrenote,
icon: `${icon("ph-trash")}`,
danger: true,
action: () => {
os.api("notes/unrenote", {
noteId: props.note.id,
});
hasRenotedBefore.value = false;
},
});
}
buttonActions[0].textStyle = "font-weight: bold";
os.popupMenu(buttonActions, buttonRef.value, { viaKeyboard });
};
defineExpose({
renote,
});
</script>
<style lang="scss" scoped>
.button {
&:not(.button) {
cursor: default;
}
&.renoted {
color: var(--accent) !important;
opacity: 1 !important;
font-weight: 700;
}
}
</style>