mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 14:26:06 +02:00
202 lines
8.8 KiB
Vue
202 lines
8.8 KiB
Vue
<template>
|
|
<template v-if="localFavFakeRef">
|
|
<ContextMenu>
|
|
<ContextMenuTrigger as-child>
|
|
<Item variant="outline" class="cursor-pointer" :style="itemStyle" @click="handleViewDetails">
|
|
<ItemMedia variant="image">
|
|
<img
|
|
v-if="smallThumbnail"
|
|
:src="smallThumbnail"
|
|
loading="lazy"
|
|
decoding="async"
|
|
fetchpriority="low"
|
|
class="object-cover" />
|
|
<Avatar v-else>
|
|
<AvatarFallback>{{ avatarFallback }}</AvatarFallback>
|
|
</Avatar>
|
|
</ItemMedia>
|
|
<ItemContent class="min-w-0">
|
|
<ItemTitle class="truncate max-w-full">
|
|
{{ localFavFakeRef.name }}
|
|
<AlertTriangle
|
|
v-if="showUnavailable"
|
|
:title="t('view.favorite.unavailable_tooltip')"
|
|
class="h-4 w-4" />
|
|
<Lock v-if="isPrivateAvatar" :title="t('view.favorite.private')" class="h-4 w-4" />
|
|
</ItemTitle>
|
|
<ItemDescription class="truncate line-clamp-1 text-xs">
|
|
{{ localFavFakeRef.authorName }}
|
|
</ItemDescription>
|
|
</ItemContent>
|
|
<ItemActions v-if="editMode && !isLocalFavorite" @click.stop>
|
|
<Checkbox v-model="isSelected" />
|
|
</ItemActions>
|
|
<ItemActions v-else-if="!editMode">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button size="icon-sm" variant="ghost" class="rounded-full" @click.stop>
|
|
<MoreHorizontal class="h-4 w-4" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem @click="handleViewDetails">
|
|
{{ t('common.actions.view_details') }}
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
v-if="canSelectAvatar"
|
|
:disabled="currentUser.currentAvatar === favorite.id"
|
|
@click="selectAvatarWithConfirmation(favorite.id)">
|
|
{{ t('view.favorite.select_avatar_tooltip') }}
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator v-if="canSelectAvatar" />
|
|
<DropdownMenuItem @click="showFavoriteDialog('avatar', favorite.id)">
|
|
{{ t('view.favorite.edit_favorite_tooltip') }}
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem variant="destructive" @click="handleDeleteFavorite">
|
|
{{ deleteMenuLabel }}
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</ItemActions>
|
|
</Item>
|
|
</ContextMenuTrigger>
|
|
<ContextMenuContent>
|
|
<ContextMenuItem @click="handleViewDetails">{{ t('common.actions.view_details') }}</ContextMenuItem>
|
|
<ContextMenuItem
|
|
v-if="canSelectAvatar"
|
|
:disabled="currentUser.currentAvatar === favorite.id"
|
|
@click="selectAvatarWithConfirmation(favorite.id)">
|
|
{{ t('view.favorite.select_avatar_tooltip') }}
|
|
</ContextMenuItem>
|
|
<ContextMenuSeparator v-if="canSelectAvatar" />
|
|
<ContextMenuItem @click="showFavoriteDialog('avatar', favorite.id)">
|
|
{{ t('view.favorite.edit_favorite_tooltip') }}
|
|
</ContextMenuItem>
|
|
<ContextMenuItem variant="destructive" @click="handleDeleteFavorite">
|
|
{{ deleteMenuLabel }}
|
|
</ContextMenuItem>
|
|
</ContextMenuContent>
|
|
</ContextMenu>
|
|
</template>
|
|
<template v-else>
|
|
<Item variant="outline" :style="itemStyle">
|
|
<ItemMedia variant="image" />
|
|
<ItemContent class="min-w-0">
|
|
<ItemTitle class="truncate max-w-full">{{ favorite.name || favorite.id }}</ItemTitle>
|
|
</ItemContent>
|
|
<ItemActions>
|
|
<Button class="rounded-full h-6 w-6" size="icon-sm" variant="ghost" @click.stop="handleDeleteFavorite">
|
|
<Trash2 class="h-4 w-4" />
|
|
</Button>
|
|
</ItemActions>
|
|
</Item>
|
|
</template>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { AlertTriangle, Lock, MoreHorizontal, Trash2 } from 'lucide-vue-next';
|
|
import { Avatar, AvatarFallback } from '@/components/ui/avatar';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Checkbox } from '@/components/ui/checkbox';
|
|
import {
|
|
ContextMenu,
|
|
ContextMenuContent,
|
|
ContextMenuItem,
|
|
ContextMenuSeparator,
|
|
ContextMenuTrigger
|
|
} from '@/components/ui/context-menu';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger
|
|
} from '@/components/ui/dropdown-menu';
|
|
import { Item, ItemActions, ItemContent, ItemDescription, ItemMedia, ItemTitle } from '@/components/ui/item';
|
|
import { computed } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
import { favoriteRequest } from '../../../api';
|
|
import { selectAvatarWithConfirmation, showAvatarDialog } from '../../../coordinators/avatarCoordinator';
|
|
import { removeLocalAvatarFavorite } from '../../../coordinators/favoriteCoordinator';
|
|
import { useFavoriteStore, useUserStore } from '../../../stores';
|
|
|
|
const props = defineProps({
|
|
favorite: Object,
|
|
group: [Object, String],
|
|
isLocalFavorite: Boolean,
|
|
editMode: { type: Boolean, default: false },
|
|
selected: { type: Boolean, default: false }
|
|
});
|
|
const emit = defineEmits(['toggle-select']);
|
|
|
|
const { t } = useI18n();
|
|
const { showFavoriteDialog } = useFavoriteStore();
|
|
const { currentUser } = storeToRefs(useUserStore());
|
|
|
|
const isSelected = computed({
|
|
get: () => props.selected,
|
|
set: (value) => emit('toggle-select', value)
|
|
});
|
|
|
|
const localFavFakeRef = computed(() => (props.isLocalFavorite ? props.favorite : props.favorite?.ref));
|
|
|
|
const displayName = computed(() => localFavFakeRef.value?.name || props.favorite?.name || props.favorite?.id);
|
|
|
|
const avatarFallback = computed(() => displayName.value?.charAt(0)?.toUpperCase() || '?');
|
|
|
|
const showUnavailable = computed(() => !props.isLocalFavorite && props.favorite?.deleted);
|
|
|
|
const isPrivateAvatar = computed(() => !props.isLocalFavorite && props.favorite?.ref?.releaseStatus === 'private');
|
|
|
|
const deleteMenuLabel = computed(() =>
|
|
props.isLocalFavorite ? t('view.favorite.delete_tooltip') : t('view.favorite.unfavorite_tooltip')
|
|
);
|
|
|
|
const itemStyle = computed(() => ({
|
|
padding: 'var(--favorites-card-padding-y, 8px) var(--favorites-card-padding-x, 10px)',
|
|
gap: 'var(--favorites-card-content-gap, 10px)',
|
|
minWidth: 'var(--favorites-card-min-width, 220px)',
|
|
maxWidth: 'var(--favorites-card-target-width, 220px)',
|
|
width: '100%',
|
|
fontSize: 'calc(0.875rem * var(--favorites-card-scale, 1))'
|
|
}));
|
|
|
|
const smallThumbnail = computed(() => {
|
|
if (!localFavFakeRef.value?.thumbnailImageUrl) {
|
|
return '';
|
|
}
|
|
return localFavFakeRef.value.thumbnailImageUrl.replace('256', '128');
|
|
});
|
|
|
|
const favoriteGroupName = computed(() => {
|
|
if (typeof props.group === 'string') {
|
|
return props.group;
|
|
}
|
|
return props.group?.name ?? props.group?.key;
|
|
});
|
|
|
|
const canSelectAvatar = computed(() => {
|
|
if (props.isLocalFavorite) {
|
|
return true;
|
|
}
|
|
if (props.favorite?.deleted) {
|
|
return false;
|
|
}
|
|
return props.favorite?.ref?.releaseStatus !== 'private';
|
|
});
|
|
|
|
function handleViewDetails() {
|
|
showAvatarDialog(props.favorite.id);
|
|
}
|
|
|
|
function handleDeleteFavorite() {
|
|
if (props.isLocalFavorite) {
|
|
removeLocalAvatarFavorite(props.favorite.id, favoriteGroupName.value);
|
|
return;
|
|
}
|
|
favoriteRequest.deleteFavorite({ objectId: props.favorite.id });
|
|
}
|
|
</script>
|