GNXSOFT.COM

This commit is contained in:
Iliyan Angelov
2025-09-26 00:15:37 +03:00
commit fe26b7cca4
16323 changed files with 2011881 additions and 0 deletions

View File

@@ -0,0 +1,334 @@
import { API_BASE_URL } from '../config/api';
// Types for About Us data
export interface AboutStat {
number: string;
label: string;
order: number;
}
export interface AboutSocialLink {
platform: string;
url: string;
icon: string;
aria_label: string;
order: number;
}
export interface AboutBanner {
id: number;
title: string;
subtitle: string;
description: string;
badge_text: string;
badge_icon: string;
cta_text: string;
cta_link: string;
cta_icon: string;
image_url: string | null;
is_active: boolean;
stats: AboutStat[];
social_links: AboutSocialLink[];
created_at: string;
updated_at: string;
}
export interface AboutFeature {
title: string;
description: string;
icon: string;
order: number;
}
export interface AboutService {
id: number;
title: string;
subtitle: string;
description: string;
badge_text: string;
badge_icon: string;
image_url: string | null;
cta_text: string;
cta_link: string;
is_active: boolean;
features: AboutFeature[];
created_at: string;
updated_at: string;
}
export interface AboutProcessStep {
step_number: string;
title: string;
description: string;
order: number;
}
export interface AboutProcess {
id: number;
title: string;
subtitle: string;
description: string;
badge_text: string;
badge_icon: string;
image_url: string | null;
cta_text: string;
cta_link: string;
is_active: boolean;
steps: AboutProcessStep[];
created_at: string;
updated_at: string;
}
export interface AboutMilestone {
year: string;
title: string;
description: string;
order: number;
}
export interface AboutJourney {
id: number;
title: string;
subtitle: string;
description: string;
badge_text: string;
badge_icon: string;
image_url: string | null;
cta_text: string;
cta_link: string;
is_active: boolean;
milestones: AboutMilestone[];
created_at: string;
updated_at: string;
}
export interface AboutPageData {
banner: AboutBanner;
service: AboutService;
process: AboutProcess;
journey: AboutJourney;
}
class AboutService {
private baseUrl = `${API_BASE_URL}/api/about`;
/**
* Get all about page data in one request
*/
async getAboutPageData(): Promise<AboutPageData> {
try {
const response = await fetch(`${this.baseUrl}/page/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data;
} catch (error) {
console.error('Error fetching about page data:', error);
throw error;
}
}
/**
* Get all about banners
*/
async getBanners(): Promise<AboutBanner[]> {
try {
const response = await fetch(`${this.baseUrl}/banner/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching about banners:', error);
throw error;
}
}
/**
* Get a specific about banner by ID
*/
async getBanner(id: number): Promise<AboutBanner> {
try {
const response = await fetch(`${this.baseUrl}/banner/${id}/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching about banner ${id}:`, error);
throw error;
}
}
/**
* Get all about services
*/
async getServices(): Promise<AboutService[]> {
try {
const response = await fetch(`${this.baseUrl}/service/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching about services:', error);
throw error;
}
}
/**
* Get a specific about service by ID
*/
async getService(id: number): Promise<AboutService> {
try {
const response = await fetch(`${this.baseUrl}/service/${id}/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching about service ${id}:`, error);
throw error;
}
}
/**
* Get all about processes
*/
async getProcesses(): Promise<AboutProcess[]> {
try {
const response = await fetch(`${this.baseUrl}/process/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching about processes:', error);
throw error;
}
}
/**
* Get a specific about process by ID
*/
async getProcess(id: number): Promise<AboutProcess> {
try {
const response = await fetch(`${this.baseUrl}/process/${id}/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching about process ${id}:`, error);
throw error;
}
}
/**
* Get all about journeys
*/
async getJourneys(): Promise<AboutJourney[]> {
try {
const response = await fetch(`${this.baseUrl}/journey/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching about journeys:', error);
throw error;
}
}
/**
* Get a specific about journey by ID
*/
async getJourney(id: number): Promise<AboutJourney> {
try {
const response = await fetch(`${this.baseUrl}/journey/${id}/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching about journey ${id}:`, error);
throw error;
}
}
}
// Export a singleton instance
export const aboutService = new AboutService();
export default aboutService;

View File

@@ -0,0 +1,131 @@
/**
* Contact API Service
* Handles communication with the Django REST API for contact form submissions
*/
import { API_CONFIG } from '@/lib/config/api';
export interface ContactFormData {
first_name: string;
last_name: string;
email: string;
phone?: string;
company: string;
job_title: string;
industry?: string;
company_size?: string;
project_type?: string;
timeline?: string;
budget?: string;
message: string;
newsletter_subscription: boolean;
privacy_consent: boolean;
}
export interface ContactSubmissionResponse {
message: string;
submission_id: number;
status: string;
}
export interface ApiError {
message: string;
errors?: Record<string, string[]>;
status: number;
}
class ContactApiService {
private baseUrl: string;
constructor() {
this.baseUrl = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.CONTACT}`;
}
/**
* Submit a contact form to the Django API
*/
async submitContactForm(data: ContactFormData): Promise<ContactSubmissionResponse> {
try {
const response = await fetch(`${this.baseUrl}/submissions/`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data),
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
const result = await response.json();
return result;
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to submit contact form: ${error.message}`);
}
throw new Error('Failed to submit contact form: Unknown error');
}
}
/**
* Get contact submission statistics (admin only)
*/
async getContactStats(): Promise<any> {
try {
const response = await fetch(`${this.baseUrl}/submissions/stats/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to fetch contact stats: ${error.message}`);
}
throw new Error('Failed to fetch contact stats: Unknown error');
}
}
/**
* Get recent contact submissions (admin only)
*/
async getRecentSubmissions(): Promise<any[]> {
try {
const response = await fetch(`${this.baseUrl}/submissions/recent/`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to fetch recent submissions: ${error.message}`);
}
throw new Error('Failed to fetch recent submissions: Unknown error');
}
}
}
// Create and export a singleton instance
export const contactApiService = new ContactApiService();
// Export the class for testing purposes
export default ContactApiService;

View File

@@ -0,0 +1,495 @@
import { API_CONFIG } from '../config/api';
// Types for Service API
export interface ServiceFeature {
id: number;
title: string;
description: string;
icon: string;
display_order: number;
}
export interface ServiceExpertise {
id: number;
title: string;
description: string;
icon: string;
display_order: number;
}
export interface ServiceCategory {
id: number;
name: string;
slug: string;
description: string;
display_order: number;
}
export interface Service {
id: number;
title: string;
description: string;
short_description?: string;
slug: string;
icon: string;
image?: File | string;
image_url?: string;
price: string;
formatted_price: string;
category?: ServiceCategory;
duration?: string;
deliverables?: string;
technologies?: string;
process_steps?: string;
features_description?: string;
deliverables_description?: string;
process_description?: string;
why_choose_description?: string;
expertise_description?: string;
featured: boolean;
display_order: number;
is_active: boolean;
created_at: string;
updated_at: string;
features?: ServiceFeature[];
expertise_items?: ServiceExpertise[];
}
export interface ServiceListResponse {
count: number;
next: string | null;
previous: string | null;
results: Service[];
}
export interface ServiceStats {
total_services: number;
featured_services: number;
categories: number;
average_price: number;
}
export interface ServiceSearchResponse {
query: string;
count: number;
results: Service[];
}
// Helper function to build query string
const buildQueryString = (params: Record<string, any>): string => {
const searchParams = new URLSearchParams();
Object.entries(params).forEach(([key, value]) => {
if (value !== undefined && value !== null) {
searchParams.append(key, value.toString());
}
});
return searchParams.toString();
};
// Service API functions
export const serviceService = {
// Get all services with optional filtering
getServices: async (params?: {
featured?: boolean;
category?: string;
min_price?: number;
max_price?: number;
search?: string;
ordering?: string;
page?: number;
}): Promise<ServiceListResponse> => {
try {
const queryString = params ? buildQueryString(params) : '';
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES}/${queryString ? `?${queryString}` : ''}`;
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to fetch services: ${error.message}`);
}
throw new Error('Failed to fetch services: Unknown error');
}
},
// Get a single service by slug
getServiceBySlug: async (slug: string): Promise<Service> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES}/${slug}/`;
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to fetch service: ${error.message}`);
}
throw new Error('Failed to fetch service: Unknown error');
}
},
// Get featured services
getFeaturedServices: async (): Promise<ServiceListResponse> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES_FEATURED}/`;
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to fetch featured services: ${error.message}`);
}
throw new Error('Failed to fetch featured services: Unknown error');
}
},
// Search services
searchServices: async (query: string): Promise<ServiceSearchResponse> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES_SEARCH}/?q=${encodeURIComponent(query)}`;
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to search services: ${error.message}`);
}
throw new Error('Failed to search services: Unknown error');
}
},
// Get service statistics
getServiceStats: async (): Promise<ServiceStats> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES_STATS}/`;
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to fetch service stats: ${error.message}`);
}
throw new Error('Failed to fetch service stats: Unknown error');
}
},
// Get all service categories
getCategories: async (): Promise<ServiceCategory[]> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES_CATEGORIES}/`;
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to fetch categories: ${error.message}`);
}
throw new Error('Failed to fetch categories: Unknown error');
}
},
// Get a single category by slug
getCategoryBySlug: async (slug: string): Promise<ServiceCategory> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES_CATEGORIES}/${slug}/`;
const response = await fetch(url, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to fetch category: ${error.message}`);
}
throw new Error('Failed to fetch category: Unknown error');
}
},
// Admin functions (require authentication)
createService: async (serviceData: Partial<Service>): Promise<Service> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES}/admin/create/`;
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(serviceData),
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to create service: ${error.message}`);
}
throw new Error('Failed to create service: Unknown error');
}
},
updateService: async (slug: string, serviceData: Partial<Service>): Promise<Service> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES}/admin/${slug}/update/`;
const response = await fetch(url, {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(serviceData),
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
return await response.json();
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to update service: ${error.message}`);
}
throw new Error('Failed to update service: Unknown error');
}
},
deleteService: async (slug: string): Promise<void> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES}/admin/${slug}/delete/`;
const response = await fetch(url, {
method: 'DELETE',
headers: {
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to delete service: ${error.message}`);
}
throw new Error('Failed to delete service: Unknown error');
}
},
// Upload image for a service
uploadServiceImage: async (slug: string, imageFile: File): Promise<Service> => {
try {
const url = `${API_CONFIG.BASE_URL}${API_CONFIG.ENDPOINTS.SERVICES}/admin/${slug}/upload-image/`;
const formData = new FormData();
formData.append('image', imageFile);
const response = await fetch(url, {
method: 'POST',
body: formData,
});
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
throw new Error(
errorData.message ||
errorData.detail ||
`HTTP error! status: ${response.status}`
);
}
const result = await response.json();
return result.service;
} catch (error) {
if (error instanceof Error) {
throw new Error(`Failed to upload service image: ${error.message}`);
}
throw new Error('Failed to upload service image: Unknown error');
}
},
};
// Utility functions
export const serviceUtils = {
// Format price for display
formatPrice: (price: string | number): string => {
const numPrice = typeof price === 'string' ? parseFloat(price) : price;
return new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 0,
maximumFractionDigits: 0,
}).format(numPrice);
},
// Get service image URL
getServiceImageUrl: (service: Service): string => {
// If service has an uploaded image
if (service.image && typeof service.image === 'string' && service.image.startsWith('/media/')) {
return `${API_CONFIG.BASE_URL}${service.image}`;
}
// If service has an image_url
if (service.image_url) {
if (service.image_url.startsWith('http')) {
return service.image_url;
}
return `${API_CONFIG.BASE_URL}${service.image_url}`;
}
// Fallback to default image
return '/images/service/default.png';
},
// Generate service slug from title
generateSlug: (title: string): string => {
return title
.toLowerCase()
.replace(/[^a-z0-9\s-]/g, '')
.replace(/\s+/g, '-')
.replace(/-+/g, '-')
.trim();
},
// Check if service is featured
isFeatured: (service: Service): boolean => {
return service.featured;
},
// Sort services by display order
sortByDisplayOrder: (services: Service[]): Service[] => {
return [...services].sort((a, b) => a.display_order - b.display_order);
},
// Filter services by category
filterByCategory: (services: Service[], categorySlug: string): Service[] => {
return services.filter(service => service.category?.slug === categorySlug);
},
// Get services within price range
filterByPriceRange: (services: Service[], minPrice: number, maxPrice: number): Service[] => {
return services.filter(service => {
const price = parseFloat(service.price);
return price >= minPrice && price <= maxPrice;
});
},
};