mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 13:53:52 +02:00
75 lines
2.3 KiB
Vue
75 lines
2.3 KiB
Vue
<template>
|
|
<div v-if="isVisible" :class="['inline-block']">
|
|
<el-tooltip v-if="!canOpenInstanceInGame" placement="top" :content="t('dialog.user.info.self_invite_tooltip')">
|
|
<el-button v-show="isVisible" @click="confirmInvite" size="small" :icon="Message" circle />
|
|
</el-tooltip>
|
|
<el-tooltip v-else placement="top" :content="t('dialog.user.info.open_in_vrchat_tooltip')">
|
|
<el-button v-if="isOpeningInstance" size="small" circle>
|
|
<el-icon class="is-loading">
|
|
<Loading />
|
|
</el-icon>
|
|
</el-button>
|
|
<el-button v-else @click="openInstance" size="small" :icon="Message" circle />
|
|
</el-tooltip>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Loading, Message } from '@element-plus/icons-vue';
|
|
import { ElMessage } from 'element-plus';
|
|
import { computed } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
import { checkCanInviteSelf, parseLocation } from '../shared/utils';
|
|
import { useInviteStore, useLaunchStore } from '../stores';
|
|
import { instanceRequest } from '../api';
|
|
|
|
const props = defineProps({
|
|
location: String,
|
|
shortname: String
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
|
|
const { canOpenInstanceInGame } = useInviteStore();
|
|
const { tryOpenInstanceInVrc } = useLaunchStore();
|
|
|
|
const { isOpeningInstance } = storeToRefs(useLaunchStore());
|
|
|
|
const isVisible = computed(() => checkCanInviteSelf(props.location));
|
|
|
|
function confirmInvite() {
|
|
const L = parseLocation(props.location);
|
|
if (!L.isRealInstance) {
|
|
return;
|
|
}
|
|
|
|
instanceRequest
|
|
.selfInvite({
|
|
instanceId: L.instanceId,
|
|
worldId: L.worldId,
|
|
shortName: props.shortname
|
|
})
|
|
.then((args) => {
|
|
ElMessage({ message: 'Self invite sent', type: 'success' });
|
|
return args;
|
|
});
|
|
}
|
|
|
|
function openInstance() {
|
|
const L = parseLocation(props.location);
|
|
if (!L.isRealInstance) {
|
|
return;
|
|
}
|
|
|
|
tryOpenInstanceInVrc(L.tag, props.shortname);
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.inline-block {
|
|
display: inline-block;
|
|
}
|
|
</style>
|