mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
import { defineStore } from 'pinia';
|
|
import { api } from '@/packages/api/src';
|
|
import { computed, ref } from 'vue';
|
|
import type {
|
|
InvitationsIndexResponse,
|
|
CreateInvitationBody,
|
|
Invitation,
|
|
} from '@/packages/api/src';
|
|
import { getCurrentOrganizationId } from '@/utils/useUser';
|
|
import { useNotificationsStore } from '@/utils/notification';
|
|
|
|
export const useInvitationsStore = defineStore('invitations', () => {
|
|
const invitationsResponse = ref<InvitationsIndexResponse | null>(null);
|
|
const { handleApiRequestNotifications } = useNotificationsStore();
|
|
|
|
async function fetchInvitations() {
|
|
const organization = getCurrentOrganizationId();
|
|
if (organization) {
|
|
invitationsResponse.value = await handleApiRequestNotifications(
|
|
() =>
|
|
api.getInvitations({
|
|
params: {
|
|
organization: organization,
|
|
},
|
|
}),
|
|
undefined,
|
|
'Failed to fetch invitations'
|
|
);
|
|
}
|
|
}
|
|
|
|
async function createInvitation(
|
|
inviteBody: CreateInvitationBody
|
|
): Promise<undefined> {
|
|
const organization = getCurrentOrganizationId();
|
|
if (organization) {
|
|
await handleApiRequestNotifications(
|
|
() =>
|
|
api.invite(inviteBody, {
|
|
params: {
|
|
organization: organization,
|
|
},
|
|
}),
|
|
'User successfully invited',
|
|
'Failed to invite user'
|
|
);
|
|
await fetchInvitations();
|
|
}
|
|
}
|
|
|
|
const invitations = computed<Invitation[]>(() => {
|
|
return invitationsResponse.value?.data || [];
|
|
});
|
|
|
|
return { invitations, fetchInvitations, createInvitation };
|
|
});
|