mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
- Remove nested git repository from bugulma/frontend/.git - Add all frontend files to main repository tracking - Convert from separate frontend/backend repos to unified monorepo - Preserve all frontend code and development history as tracked files - Eliminate nested repository complexity for simpler development workflow This creates a proper monorepo structure with frontend and backend coexisting in the same repository for easier development and deployment.
155 lines
5.1 KiB
TypeScript
155 lines
5.1 KiB
TypeScript
import { z } from 'zod';
|
|
import { reportError } from '@/lib/error-handling';
|
|
import { CrudService } from '@/lib/service-base';
|
|
import { SERVICE_CONFIGS } from '@/lib/service-config';
|
|
import {
|
|
createProposalRequestSchema,
|
|
organizationProposalsResponseSchema,
|
|
proposalSchema,
|
|
proposalsResponseSchema,
|
|
updateProposalStatusRequestSchema,
|
|
type CreateProposalRequest,
|
|
type OrganizationProposalsResponse,
|
|
type Proposal,
|
|
type ProposalsResponse,
|
|
type UpdateProposalStatusRequest,
|
|
} from '@/schemas/proposal';
|
|
|
|
// Query parameter schemas
|
|
const getProposalsParamsSchema = z.object({
|
|
organization_id: z.string().optional(),
|
|
status: z.enum(['pending', 'accepted', 'rejected']).optional(),
|
|
type: z.enum(['incoming', 'outgoing']).optional(),
|
|
});
|
|
|
|
const getProposalsForOrganizationParamsSchema = z.object({
|
|
type: z.enum(['incoming', 'outgoing']).optional(),
|
|
});
|
|
|
|
type GetProposalsParams = z.infer<typeof getProposalsParamsSchema>;
|
|
type GetProposalsForOrganizationParams = z.infer<typeof getProposalsForOrganizationParamsSchema>;
|
|
|
|
/**
|
|
* Proposals Service
|
|
* Handles all proposal-related API operations with improved reliability and type safety
|
|
*/
|
|
class ProposalsService extends CrudService<Proposal, CreateProposalRequest> {
|
|
protected entitySchema = proposalSchema;
|
|
protected createSchema = createProposalRequestSchema;
|
|
protected updateSchema = createProposalRequestSchema.partial(); // Allow partial updates
|
|
|
|
constructor() {
|
|
super(SERVICE_CONFIGS.PROPOSALS);
|
|
}
|
|
|
|
/**
|
|
* Get all proposals with optional filters
|
|
*/
|
|
async getAllProposals(params?: GetProposalsParams): Promise<ProposalsResponse> {
|
|
const validatedParams = params ? this.validateStrict(getProposalsParamsSchema, params, 'getProposals params') : {};
|
|
|
|
const query = this.createQuery()
|
|
.whenDefined('organization_id', validatedParams.organization_id)
|
|
.whenDefined('status', validatedParams.status)
|
|
.whenDefined('type', validatedParams.type);
|
|
|
|
const result = await this.get('', proposalsResponseSchema, query.toParams(), {
|
|
context: 'getAllProposals',
|
|
});
|
|
|
|
if (!result.success) {
|
|
const error = reportError(
|
|
new Error(result.error?.message || 'Failed to fetch proposals'),
|
|
{ operation: 'getAllProposals', params: validatedParams }
|
|
);
|
|
throw error;
|
|
}
|
|
|
|
return result.data;
|
|
}
|
|
|
|
/**
|
|
* Get proposals for a specific organization
|
|
*/
|
|
async getProposalsForOrganization(
|
|
orgId: string,
|
|
params?: GetProposalsForOrganizationParams
|
|
): Promise<OrganizationProposalsResponse> {
|
|
const validatedParams = params ? this.validateStrict(getProposalsForOrganizationParamsSchema, params, 'getProposalsForOrganization params') : {};
|
|
|
|
const query = this.createQuery()
|
|
.whenDefined('type', validatedParams.type);
|
|
|
|
const result = await this.get(`organization/${orgId}`, organizationProposalsResponseSchema, query.toParams(), {
|
|
context: `getProposalsForOrganization(${orgId})`,
|
|
});
|
|
|
|
if (!result.success) {
|
|
const error = reportError(
|
|
new Error(result.error?.message || 'Failed to fetch organization proposals'),
|
|
{ operation: 'getProposalsForOrganization', orgId, params: validatedParams }
|
|
);
|
|
throw error;
|
|
}
|
|
|
|
return result.data;
|
|
}
|
|
|
|
/**
|
|
* Update proposal status
|
|
*/
|
|
async updateStatus(id: string, statusUpdate: UpdateProposalStatusRequest): Promise<Proposal> {
|
|
const validatedUpdate = this.validateStrict(updateProposalStatusRequestSchema, statusUpdate, 'updateStatus request');
|
|
|
|
const result = await this.post(`${id}/status`, validatedUpdate, this.entitySchema, {
|
|
context: `updateStatus(${id})`,
|
|
});
|
|
|
|
if (!result.success) {
|
|
const error = reportError(
|
|
new Error(result.error?.message || 'Failed to update proposal status'),
|
|
{ operation: 'updateStatus', id, statusUpdate: validatedUpdate }
|
|
);
|
|
throw error;
|
|
}
|
|
|
|
return result.data;
|
|
}
|
|
}
|
|
|
|
// Create and export service instance
|
|
const proposalsService = new ProposalsService();
|
|
|
|
// Export service instance for direct usage
|
|
export { proposalsService };
|
|
|
|
// Export service methods directly for cleaner imports
|
|
export const getProposals = proposalsService.getAllProposals.bind(proposalsService);
|
|
|
|
export const getProposalById = (id: string) => proposalsService.getById(id).then(result => {
|
|
if (!result.success) {
|
|
const error = reportError(
|
|
new Error(result.error?.message || 'Failed to fetch proposal'),
|
|
{ operation: 'getProposalById', id }
|
|
);
|
|
throw error;
|
|
}
|
|
return result.data;
|
|
});
|
|
|
|
export const createProposal = (request: CreateProposalRequest) => proposalsService.create(request).then(result => {
|
|
if (!result.success) {
|
|
const error = reportError(
|
|
new Error(result.error?.message || 'Failed to create proposal'),
|
|
{ operation: 'createProposal', request }
|
|
);
|
|
throw error;
|
|
}
|
|
return result.data;
|
|
});
|
|
|
|
export const updateProposalStatus = proposalsService.updateStatus.bind(proposalsService);
|
|
|
|
export const getProposalsForOrganization = (orgId: string, type?: 'incoming' | 'outgoing') =>
|
|
proposalsService.getProposalsForOrganization(orgId, type ? { type } : undefined);
|