mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
164 lines
6.9 KiB
Vue
164 lines
6.9 KiB
Vue
<template>
|
|
<div :class="cardClasses" @click="$emit('click')">
|
|
<template v-if="favorite.ref">
|
|
<div class="favorites-search-card__content">
|
|
<div
|
|
class="favorites-search-card__avatar"
|
|
:class="{ 'is-empty': !favorite.ref.thumbnailImageUrl }"
|
|
v-once>
|
|
<img
|
|
v-if="favorite.ref.thumbnailImageUrl"
|
|
:src="smallThumbnail"
|
|
loading="lazy"
|
|
decoding="async"
|
|
fetchpriority="low" />
|
|
</div>
|
|
<div class="favorites-search-card__detail" v-once>
|
|
<div class="favorites-search-card__title">
|
|
<span class="name">{{ props.favorite.ref.name }}</span>
|
|
<span
|
|
v-if="favorite.deleted || favorite.ref.releaseStatus === 'private'"
|
|
class="favorites-search-card__badges">
|
|
<i
|
|
v-if="favorite.deleted"
|
|
:title="t('view.favorite.unavailable_tooltip')"
|
|
class="ri-error-warning-line"></i>
|
|
<i
|
|
v-if="favorite.ref.releaseStatus === 'private'"
|
|
:title="t('view.favorite.private')"
|
|
class="ri-lock-line"></i>
|
|
</span>
|
|
</div>
|
|
<span class="extra">
|
|
{{ props.favorite.ref.authorName }}
|
|
<template v-if="props.favorite.ref.occupants"> ({{ props.favorite.ref.occupants }}) </template>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="favorites-search-card__actions">
|
|
<template v-if="editMode">
|
|
<div class="favorites-search-card__action favorites-search-card__action--checkbox" @click.stop>
|
|
<el-checkbox v-model="isSelected"></el-checkbox>
|
|
</div>
|
|
<div class="favorites-search-card__action-group">
|
|
<div class="favorites-search-card__action favorites-search-card__action--full" @click.stop>
|
|
<FavoritesMoveDropdown
|
|
:favoriteGroup="favoriteWorldGroups"
|
|
:currentFavorite="props.favorite"
|
|
:currentGroup="group"
|
|
class="favorites-search-card__dropdown"
|
|
type="world" />
|
|
</div>
|
|
<div class="favorites-search-card__action">
|
|
<el-button
|
|
size="small"
|
|
circle
|
|
class="favorites-search-card__action-btn"
|
|
type="default"
|
|
@click.stop="handleDeleteFavorite">
|
|
<i class="ri-delete-bin-line"></i>
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template v-else>
|
|
<div class="favorites-search-card__action">
|
|
<el-tooltip placement="top" :content="inviteOrLaunchText">
|
|
<el-button
|
|
size="small"
|
|
:icon="Message"
|
|
class="favorites-search-card__action-btn"
|
|
@click.stop="newInstanceSelfInvite(favorite.id)"
|
|
circle />
|
|
</el-tooltip>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
<template v-else>
|
|
<div class="favorites-search-card__content">
|
|
<div class="favorites-search-card__avatar is-empty"></div>
|
|
<div class="favorites-search-card__detail" v-once>
|
|
<span class="name">{{ favorite.name || favorite.id }}</span>
|
|
<i
|
|
v-if="favorite.deleted"
|
|
:title="t('view.favorite.unavailable_tooltip')"
|
|
class="ri-error-warning-line"></i>
|
|
</div>
|
|
</div>
|
|
<div class="favorites-search-card__actions">
|
|
<div class="favorites-search-card__action">
|
|
<el-button circle type="default" size="small" @click.stop="handleDeleteFavorite">
|
|
<i class="ri-delete-bin-line"></i>
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Message } from '@element-plus/icons-vue';
|
|
import { computed } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
import { useFavoriteStore, useInviteStore } from '../../../stores';
|
|
import { favoriteRequest } from '../../../api';
|
|
|
|
import FavoritesMoveDropdown from './FavoritesMoveDropdown.vue';
|
|
|
|
const props = defineProps({
|
|
group: [Object, String],
|
|
favorite: Object,
|
|
isLocalFavorite: { type: Boolean, default: false },
|
|
editMode: { type: Boolean, default: false },
|
|
selected: { type: Boolean, default: false }
|
|
});
|
|
|
|
const emit = defineEmits(['toggle-select', 'remove-local-world-favorite', 'click']);
|
|
const { favoriteWorldGroups } = storeToRefs(useFavoriteStore());
|
|
const { newInstanceSelfInvite } = useInviteStore();
|
|
const { t } = useI18n();
|
|
const { canOpenInstanceInGame } = useInviteStore();
|
|
|
|
const isSelected = computed({
|
|
get: () => props.selected,
|
|
set: (value) => emit('toggle-select', value)
|
|
});
|
|
|
|
const cardClasses = computed(() => [
|
|
'favorites-search-card',
|
|
'favorites-search-card--world',
|
|
{
|
|
'is-selected': props.selected,
|
|
'is-edit-mode': props.editMode
|
|
}
|
|
]);
|
|
|
|
const smallThumbnail = computed(() => {
|
|
const url = props.favorite.ref.thumbnailImageUrl?.replace('256', '128');
|
|
return url || props.favorite.ref.thumbnailImageUrl;
|
|
});
|
|
|
|
const inviteOrLaunchText = computed(() => {
|
|
return canOpenInstanceInGame
|
|
? t('dialog.world.actions.new_instance_and_open_ingame')
|
|
: t('dialog.world.actions.new_instance_and_self_invite');
|
|
});
|
|
|
|
function handleDeleteFavorite() {
|
|
if (props.isLocalFavorite) {
|
|
emit('remove-local-world-favorite', props.favorite.id, props.group);
|
|
} else {
|
|
deleteFavorite(props.favorite.id);
|
|
}
|
|
}
|
|
|
|
function deleteFavorite(objectId) {
|
|
favoriteRequest.deleteFavorite({ objectId });
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|