mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 00:02:15 +01:00
117 lines
3.9 KiB
TypeScript
117 lines
3.9 KiB
TypeScript
import { router } from '@inertiajs/vue3';
|
|
import { initializeStores } from '@/utils/init';
|
|
import { defineStore } from 'pinia';
|
|
import { computed, ref } from 'vue';
|
|
import axios from 'axios';
|
|
import type {
|
|
Organization,
|
|
OrganizationResponse,
|
|
DeleteOrganizationBody,
|
|
UpdateOrganizationBody,
|
|
} from '@/packages/api/src';
|
|
import { useNotificationsStore } from '@/utils/notification';
|
|
import { getCurrentOrganizationId } from '@/utils/useUser';
|
|
import { api } from '@/packages/api/src';
|
|
|
|
export async function switchOrganization(organizationId: string) {
|
|
const { handleApiRequestNotifications } = useNotificationsStore();
|
|
try {
|
|
await handleApiRequestNotifications(
|
|
() => api.updateMyCurrentOrganization({ organization_id: organizationId }),
|
|
undefined,
|
|
'Failed to switch organization'
|
|
);
|
|
} catch {
|
|
// The error notification is surfaced by the request handler.
|
|
return;
|
|
}
|
|
|
|
// The current organization changed server-side. Clear Inertia's prefetch
|
|
// cache and reload into the dashboard so the new organization context
|
|
// (auth.user.current_team) is picked up everywhere.
|
|
router.flushAll();
|
|
router.visit(route('dashboard'), {
|
|
preserveState: false,
|
|
onSuccess: () => {
|
|
initializeStores();
|
|
},
|
|
});
|
|
}
|
|
|
|
export const useOrganizationStore = defineStore('organization', () => {
|
|
const organizationResponse = ref<OrganizationResponse | null>(null);
|
|
const { addNotification, handleApiRequestNotifications } = useNotificationsStore();
|
|
|
|
async function fetchOrganization() {
|
|
const organization = getCurrentOrganizationId();
|
|
if (organization) {
|
|
organizationResponse.value = await handleApiRequestNotifications(
|
|
() =>
|
|
api.getOrganization({
|
|
params: {
|
|
organization: organization,
|
|
},
|
|
}),
|
|
undefined,
|
|
'Failed to fetch organization'
|
|
);
|
|
}
|
|
}
|
|
|
|
async function updateOrganization(organizationBody: UpdateOrganizationBody) {
|
|
const organization = getCurrentOrganizationId();
|
|
if (organization) {
|
|
await handleApiRequestNotifications(
|
|
() =>
|
|
api.updateOrganization(organizationBody, {
|
|
params: {
|
|
organization: organization,
|
|
},
|
|
}),
|
|
'Organization updated successfully',
|
|
'Failed to update organization'
|
|
);
|
|
await fetchOrganization();
|
|
}
|
|
}
|
|
|
|
async function createOrganization(name: string): Promise<Organization | null> {
|
|
const response = await api.createOrganization({ name });
|
|
return response?.data ?? null;
|
|
}
|
|
|
|
async function deleteOrganization(organizationId: string, body: DeleteOrganizationBody) {
|
|
try {
|
|
await api.deleteOrganization(body, {
|
|
params: {
|
|
organization: organizationId,
|
|
},
|
|
});
|
|
addNotification('success', 'Organization deleted successfully');
|
|
} catch (error) {
|
|
if (!axios.isAxiosError(error) || error.response?.status !== 422) {
|
|
addNotification(
|
|
'error',
|
|
'Failed to delete organization',
|
|
axios.isAxiosError(error)
|
|
? (error.response?.data?.message ?? 'Please try again later.')
|
|
: 'Please try again later.'
|
|
);
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
const organization = computed<Organization | null>(() => {
|
|
return organizationResponse.value?.data || null;
|
|
});
|
|
|
|
return {
|
|
organization,
|
|
fetchOrganization,
|
|
updateOrganization,
|
|
createOrganization,
|
|
deleteOrganization,
|
|
};
|
|
});
|