mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-30 04:03:48 +02:00
106 lines
3.7 KiB
Vue
106 lines
3.7 KiB
Vue
<template>
|
|
<Dialog
|
|
:open="sendInviteResponseConfirmDialog.visible"
|
|
@update:open="(open) => (open ? null : cancelInviteResponseConfirm())">
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>{{ t('dialog.invite_response_message.header') }}</DialogTitle>
|
|
</DialogHeader>
|
|
<div style="font-size: 12px">
|
|
<span>{{ t('dialog.invite_response_message.confirmation') }}</span>
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
<Button variant="secondary" class="mr-2" @click="cancelInviteResponseConfirm">{{
|
|
t('dialog.invite_response_message.cancel')
|
|
}}</Button>
|
|
<Button @click="sendInviteResponseConfirm">{{ t('dialog.invite_response_message.confirm') }}</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog';
|
|
import { storeToRefs } from 'pinia';
|
|
import { toast } from 'vue-sonner';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
import { useGalleryStore, useNotificationStore } from '../../../stores';
|
|
import { notificationRequest } from '../../../api';
|
|
|
|
const { t } = useI18n();
|
|
|
|
const galleryStore = useGalleryStore();
|
|
const { uploadImage } = storeToRefs(galleryStore);
|
|
|
|
const props = defineProps({
|
|
sendInviteResponseDialog: {
|
|
type: Object,
|
|
default: () => ({})
|
|
},
|
|
sendInviteResponseConfirmDialog: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
});
|
|
|
|
const emit = defineEmits(['closeResponseConfirmDialog', 'closeInviteDialog']);
|
|
|
|
function cancelInviteResponseConfirm() {
|
|
emit('closeResponseConfirmDialog');
|
|
}
|
|
|
|
function sendInviteResponseConfirm() {
|
|
const D = props.sendInviteResponseDialog;
|
|
const params = {
|
|
responseSlot: D.messageSlot.slot,
|
|
rsvp: true
|
|
};
|
|
if (uploadImage.value) {
|
|
notificationRequest
|
|
.sendInviteResponsePhoto(params, D.invite.id)
|
|
.catch((err) => {
|
|
console.error('Invite response photo failed', err);
|
|
toast.error(t('message.error'));
|
|
})
|
|
.then((args) => {
|
|
notificationRequest
|
|
.hideNotification({
|
|
notificationId: D.invite.id
|
|
})
|
|
.then(() => {
|
|
useNotificationStore().handleNotificationHide(D.invite.id);
|
|
});
|
|
toast.success(t('message.invite.response_photo_sent'));
|
|
return args;
|
|
})
|
|
.finally(() => {
|
|
emit('closeInviteDialog');
|
|
});
|
|
} else {
|
|
notificationRequest
|
|
.sendInviteResponse(params, D.invite.id)
|
|
.catch((err) => {
|
|
console.error('Invite response failed', err);
|
|
toast.error(t('message.error'));
|
|
})
|
|
.then((args) => {
|
|
notificationRequest
|
|
.hideNotification({
|
|
notificationId: D.invite.id
|
|
})
|
|
.then(() => {
|
|
useNotificationStore().handleNotificationHide(D.invite.id);
|
|
});
|
|
toast.success(t('message.invite.response_sent'));
|
|
return args;
|
|
})
|
|
.finally(() => {
|
|
emit('closeInviteDialog');
|
|
});
|
|
}
|
|
cancelInviteResponseConfirm();
|
|
}
|
|
</script>
|