mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-01 20:53:45 +02:00
134 lines
5.6 KiB
Vue
134 lines
5.6 KiB
Vue
<template>
|
|
<div>
|
|
<div style="display: flex; align-items: center; justify-content: space-between">
|
|
<div>
|
|
<el-button size="small" @click="showFriendExportDialog">{{ t('view.favorite.export') }}</el-button>
|
|
<el-button size="small" style="margin-left: 5px" @click="showFriendImportDialog">{{
|
|
t('view.favorite.import')
|
|
}}</el-button>
|
|
</div>
|
|
<div style="display: flex; align-items: center; font-size: 13px; margin-right: 10px">
|
|
<span class="name" style="margin-right: 5px; line-height: 10px">{{ t('view.favorite.sort_by') }}</span>
|
|
<el-radio-group v-model="sortFav">
|
|
<el-radio :label="false">{{
|
|
t('view.settings.appearance.appearance.sort_favorite_by_name')
|
|
}}</el-radio>
|
|
<el-radio :label="true">{{
|
|
t('view.settings.appearance.appearance.sort_favorite_by_date')
|
|
}}</el-radio>
|
|
</el-radio-group>
|
|
</div>
|
|
</div>
|
|
<span style="display: block; margin-top: 30px">{{ t('view.favorite.avatars.vrchat_favorites') }}</span>
|
|
<el-collapse style="border: 0">
|
|
<el-collapse-item v-for="group in favoriteFriendGroups" :key="group.name">
|
|
<template #title>
|
|
<span
|
|
style="font-weight: bold; font-size: 14px; margin-left: 10px"
|
|
v-text="group.displayName"></span>
|
|
<span style="color: #909399; font-size: 12px; margin-left: 10px"
|
|
>{{ group.count }}/{{ group.capacity }}</span
|
|
>
|
|
<el-tooltip placement="top" :content="t('view.favorite.rename_tooltip')" :teleported="false">
|
|
<el-button
|
|
size="small"
|
|
:icon="Edit"
|
|
circle
|
|
style="margin-left: 10px"
|
|
@click.stop="changeFavoriteGroupName(group)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip placement="right" :content="t('view.favorite.clear_tooltip')" :teleported="false">
|
|
<el-button
|
|
size="small"
|
|
:icon="Delete"
|
|
circle
|
|
style="margin-left: 5px"
|
|
@click.stop="clearFavoriteGroup(group)"></el-button>
|
|
</el-tooltip>
|
|
</template>
|
|
<div v-if="group.count" class="x-friend-list" style="margin-top: 10px">
|
|
<FavoritesFriendItem
|
|
v-for="favorite in groupedByGroupKeyFavoriteFriends[group.key]"
|
|
:key="favorite.id"
|
|
style="display: inline-block; width: 300px; margin-right: 15px"
|
|
:favorite="favorite"
|
|
:group="group"
|
|
@click="showUserDialog(favorite.id)" />
|
|
</div>
|
|
<div
|
|
v-else
|
|
style="
|
|
padding-top: 25px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: rgb(144, 147, 153);
|
|
">
|
|
<span>No Data</span>
|
|
</div>
|
|
</el-collapse-item>
|
|
</el-collapse>
|
|
<FriendExportDialog v-model:friendExportDialogVisible="friendExportDialogVisible" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Delete, Edit } from '@element-plus/icons-vue';
|
|
import { computed, ref } from 'vue';
|
|
import { ElMessageBox } from 'element-plus';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
import { useAppearanceSettingsStore, useFavoriteStore, useUserStore } from '../../../stores';
|
|
import { favoriteRequest } from '../../../api';
|
|
|
|
import FavoritesFriendItem from './FavoritesFriendItem.vue';
|
|
import FriendExportDialog from '../dialogs/FriendExportDialog.vue';
|
|
|
|
const emit = defineEmits(['change-favorite-group-name']);
|
|
|
|
const { sortFavorites } = storeToRefs(useAppearanceSettingsStore());
|
|
const { setSortFavorites } = useAppearanceSettingsStore();
|
|
const { showUserDialog } = useUserStore();
|
|
const { favoriteFriendGroups, groupedByGroupKeyFavoriteFriends } = storeToRefs(useFavoriteStore());
|
|
const { showFriendImportDialog } = useFavoriteStore();
|
|
const { t } = useI18n();
|
|
|
|
const friendExportDialogVisible = ref(false);
|
|
|
|
const sortFav = computed({
|
|
get() {
|
|
return sortFavorites.value;
|
|
},
|
|
set() {
|
|
setSortFavorites();
|
|
}
|
|
});
|
|
|
|
function showFriendExportDialog() {
|
|
friendExportDialogVisible.value = true;
|
|
}
|
|
|
|
function clearFavoriteGroup(ctx) {
|
|
ElMessageBox.confirm('Continue? Clear Group', 'Confirm', {
|
|
confirmButtonText: 'Confirm',
|
|
cancelButtonText: 'Cancel',
|
|
type: 'info'
|
|
})
|
|
.then((action) => {
|
|
if (action === 'confirm') {
|
|
favoriteRequest.clearFavoriteGroup({
|
|
type: ctx.type,
|
|
group: ctx.name
|
|
});
|
|
}
|
|
})
|
|
.catch(() => {});
|
|
}
|
|
|
|
function changeFavoriteGroupName(group) {
|
|
emit('change-favorite-group-name', group);
|
|
}
|
|
</script>
|