mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 17:24:10 +00:00
Create the complete TypeScript foundation for the Vue 3 migration in a parallel scripts-v2/ directory. 72 files, 5430 lines, zero any types, strict mode. - types/ (21 files): Domain interfaces for all 17 entities derived from actual Laravel models and API resources. Enums for all statuses. Generic API response wrappers. - api/ (29 files): Typed axios client with interceptors, endpoint constants from routes/api.php, 25 typed service classes covering every API endpoint. - composables/ (14 files): Vue 3 composition functions for auth, notifications, dialogs, modals, pagination, filters, currency, dates, theme, sidebar, company context, and permissions. - utils/ (5 files): Pure typed utilities for money formatting, date formatting (date-fns), localStorage, and error handling. - config/ (3 files): Typed ability constants, app constants. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import { client } from '../client'
|
|
import { API } from '../endpoints'
|
|
import type { User, UserSetting } from '../../types/domain/user'
|
|
import type { Company } from '../../types/domain/company'
|
|
import type { Currency } from '../../types/domain/currency'
|
|
import type { Ability } from '../../types/domain/role'
|
|
|
|
export interface MenuItem {
|
|
title: string
|
|
name: string
|
|
route: string
|
|
icon: string
|
|
group: string
|
|
ability?: string
|
|
}
|
|
|
|
export interface BootstrapResponse {
|
|
current_user: User
|
|
current_user_settings: Record<string, string>
|
|
current_user_abilities: Ability[]
|
|
companies: Company[]
|
|
current_company: Company | null
|
|
current_company_settings: Record<string, string>
|
|
current_company_currency: Currency | null
|
|
main_menu: MenuItem[]
|
|
setting_menu: MenuItem[]
|
|
config: Record<string, unknown>
|
|
global_settings: Record<string, string>
|
|
modules: string[]
|
|
pending_invitations?: Array<{
|
|
token: string
|
|
company_name: string
|
|
invited_by: string
|
|
email: string
|
|
}>
|
|
}
|
|
|
|
export interface CurrentCompanyResponse {
|
|
data: Company
|
|
}
|
|
|
|
export const bootstrapService = {
|
|
async bootstrap(adminMode?: boolean): Promise<BootstrapResponse> {
|
|
const url = adminMode ? `${API.BOOTSTRAP}?admin_mode=1` : API.BOOTSTRAP
|
|
const { data } = await client.get(url)
|
|
return data
|
|
},
|
|
|
|
async getCurrentCompany(): Promise<CurrentCompanyResponse> {
|
|
const { data } = await client.get(API.CURRENT_COMPANY)
|
|
return data
|
|
},
|
|
}
|