Files
Stijnus 4ca535b9d1 feat: comprehensive service integration refactor with enhanced tabs architecture (#1978)
* feat: add service tabs refactor with GitHub, GitLab, Supabase, Vercel, and Netlify integration

This commit introduces a comprehensive refactor of the connections system,
replacing the single connections tab with dedicated service integration tabs:

 New Service Tabs:
- GitHub Tab: Complete integration with repository management, stats, and API
- GitLab Tab: GitLab project integration and management
- Supabase Tab: Database project management with comprehensive analytics
- Vercel Tab: Project deployment management and monitoring
- Netlify Tab: Site deployment and build management

🔧 Supporting Infrastructure:
- Enhanced store management for each service with auto-connect via env vars
- API routes for secure server-side token handling and data fetching
- Updated TypeScript types with missing properties and interfaces
- Comprehensive hooks for service connections and state management
- Security utilities for API endpoint validation

🎨 UI/UX Improvements:
- Individual service tabs with tailored functionality
- Motion animations and improved loading states
- Connection testing and health monitoring
- Advanced analytics dashboards for each service
- Consistent design patterns across all service tabs

🛠️ Technical Changes:
- Removed legacy connection tab in favor of individual service tabs
- Updated tab configuration and routing system
- Added comprehensive error handling and loading states
- Enhanced type safety with extended interfaces
- Implemented environment variable auto-connection features

Note: Some TypeScript errors remain and will need to be resolved in follow-up commits.
The dev server runs successfully and the service tabs are functional.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

* feat: comprehensive service integration refactor with enhanced tabs architecture

Major architectural improvements to service integrations:

**Service Integration Refactor:**
- Complete restructure of service connection tabs (GitHub, GitLab, Vercel, Netlify, Supabase)
- Migrated from centralized ConnectionsTab to dedicated service-specific tabs
- Added shared service integration components for consistent UX
- Implemented auto-connection feature using environment variables

**New Components & Architecture:**
- ServiceIntegrationLayout for consistent service tab structure
- ConnectionStatus, ServiceCard components for reusable UI patterns
- BranchSelector component for repository branch management
- Enhanced authentication dialogs with improved error handling

**API & Backend Enhancements:**
- New API endpoints: github-branches, gitlab-branches, gitlab-projects, vercel-user
- Enhanced GitLab API service with comprehensive project management
- Improved connection testing hooks (useConnectionTest)
- Better error handling and rate limiting across all services

**Configuration & Environment:**
- Updated .env.example with comprehensive service integration guides
- Added auto-connection support for all major services
- Improved development and production environment configurations
- Enhanced tab management with proper service icons

**Code Quality & TypeScript:**
- Fixed all TypeScript errors across service integration components
- Enhanced type definitions for Vercel, Supabase, and other service integrations
- Improved type safety with proper optional chaining and type assertions
- Better separation of concerns between UI and business logic

**Removed Legacy Code:**
- Removed redundant connection components and consolidated into service tabs
- Cleaned up unused imports and deprecated connection patterns
- Streamlined authentication flows across all services

This refactor provides a more maintainable, scalable architecture for service integrations
while significantly improving the user experience for managing external connections.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

* refactor: clean up dead code and consolidate utilities

- Remove legacy .eslintrc.json (replaced by flat config)
- Remove duplicate app/utils/types.ts (unused type definitions)
- Remove app/utils/cn.ts and consolidate with classNames utility
- Clean up unused ServiceErrorHandler class implementation
- Enhance classNames utility to support boolean values
- Update GlowingEffect.tsx to use consolidated classNames utility

Removes ~150+ lines of unused code while maintaining all functionality.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

* Simplify terminal health checks and improve project setup

Removed aggressive health checking and reconnection logic from TerminalManager to prevent issues with terminal responsiveness. Updated TerminalTabs to remove onReconnect handlers. Enhanced projectCommands utility to generate non-interactive setup commands and detect shadcn projects, improving automation and reliability of project setup.

* fix: resolve GitLab deployment issues and enhance GitHub deployment reliability

GitLab Deployment Fixes:
- Fix COEP header issue for avatar images by adding crossOrigin and referrerPolicy attributes
- Implement repository name sanitization to handle special characters and ensure GitLab compliance
- Enhance error handling with detailed validation error parsing and user-friendly messages
- Add explicit path field and description to project creation requests
- Improve URL encoding and project path resolution for proper API calls
- Add graceful file commit handling with timeout and error recovery

GitHub Deployment Enhancements:
- Add comprehensive repository name validation and sanitization
- Implement real-time feedback for invalid characters in repository name input
- Enhance error handling with specific error types and retry suggestions
- Improve user experience with better error messages and validation feedback
- Add repository name length limits and character restrictions
- Show sanitized name preview to users before submission

General Improvements:
- Add GitLabAuthDialog component for improved authentication flow
- Enhance logging and debugging capabilities for deployment operations
- Improve accessibility with proper dialog titles and descriptions
- Add better user notifications for name sanitization and validation issues

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Claude <noreply@anthropic.com>
2025-09-08 19:29:12 +02:00

1394 lines
66 KiB
TypeScript

import React, { useState, useEffect } from 'react';
import { motion } from 'framer-motion';
import { toast } from 'react-toastify';
import { classNames } from '~/utils/classNames';
import { useStore } from '@nanostores/react';
import { netlifyConnection, updateNetlifyConnection, initializeNetlifyConnection } from '~/lib/stores/netlify';
import type { NetlifySite, NetlifyDeploy, NetlifyBuild, NetlifyUser } from '~/types/netlify';
import { Button } from '~/components/ui/Button';
import { Collapsible, CollapsibleTrigger, CollapsibleContent } from '~/components/ui/Collapsible';
import { formatDistanceToNow } from 'date-fns';
import { Badge } from '~/components/ui/Badge';
interface ConnectionTestResult {
status: 'success' | 'error' | 'testing';
message: string;
timestamp?: number;
}
interface SiteAction {
name: string;
icon: string;
action: (siteId: string) => Promise<void>;
requiresConfirmation?: boolean;
variant?: 'default' | 'destructive' | 'outline';
}
// Netlify logo SVG component
const NetlifyLogo = () => (
<svg viewBox="0 0 40 40" className="w-5 h-5">
<path
fill="currentColor"
d="M28.589 14.135l-.014-.006c-.008-.003-.016-.006-.023-.013a.11.11 0 0 1-.028-.093l.773-4.726 3.625 3.626-3.77 1.604a.083.083 0 0 1-.033.006h-.015c-.005-.003-.01-.007-.02-.017a1.716 1.716 0 0 0-.495-.381zm5.258-.288l3.876 3.876c.805.806 1.208 1.208 1.674 1.355a2 2 0 0 1 1.206 0c.466-.148.869-.55 1.674-1.356L8.73 28.73l2.349-3.643c.011-.018.022-.034.04-.047.025-.018.061-.01.091 0a2.434 2.434 0 0 0 1.638-.083c.027-.01.054-.017.075.002a.19.19 0 0 1 .028.032L21.95 38.05zM7.863 27.863L5.8 25.8l4.074-1.738a.084.084 0 0 1 .033-.007c.034 0 .054.034.072.065a2.91 2.91 0 0 0 .13.184l.013.016c.012.017.004.034-.008.05l-2.25 3.493zm-2.976-2.976l-2.61-2.61c-.444-.444-.766-.766-.99-1.043l7.936 1.646a.84.84 0 0 0 .03.005c.049.008.103.017.103.063 0 .05-.059.073-.109.092l-.023.01-4.337 1.837zM.831 19.892a2 2 0 0 1 .09-.495c.148-.466.55-.868 1.356-1.674l3.34-3.34a2175.525 2175.525 0 0 0 4.626 6.687c.027.036.057.076.026.106-.146.161-.292.337-.395.528a.16.16 0 0 1-.05.062c-.013.008-.027.005-.042.002H9.78L.831 19.892zm5.68-6.403l4.491-4.491c.422.185 1.958.834 3.332 1.414 1.04.44 1.988.84 2.286.97.03.012.057.024.07.054.008.018.004.041 0 .06a2.003 2.003 0 0 0 .523 1.828c.03.03 0 .073-.026.11l-.014.021-4.56 7.063c-.012.02-.023.037-.043.05-.024.015-.058.008-.086.001a2.274 2.274 0 0 0-.543-.074c-.164 0-.342.03-.522.063h-.001c-.02.003-.038.007-.054-.005a.21.21 0 0 1-.045-.051l-4.808-7.013zm5.398-5.398l5.814-5.814c.805-.805 1.208-1.208 1.674-1.355a2 2 0 0 1 1.206 0c.466.147.869.55 1.674 1.355l1.26 1.26-4.135 6.404a.155.155 0 0 1-.041.048c-.025.017-.06.01-.09 0a2.097 2.097 0 0 0-1.92.37c-.027.028-.067.012-.101-.003-.54-.235-4.74-2.01-5.341-2.265zm12.506-3.676l3.818 3.818-.92 5.698v.015a.135.135 0 0 1-.008.038c-.01.02-.03.024-.05.03a1.83 1.83 0 0 0-.548.273.154.154 0 0 0-.02.017c-.011.012-.022.023-.04.025a.114.114 0 0 1-.043-.007l-5.818-2.472-.011-.005c-.037-.015-.081-.033-.081-.071a2.198 2.198 0 0 0-.31-.915c-.028-.046-.059-.094-.035-.141l4.066-6.303zm-3.932 8.606l5.454 2.31c.03.014.063.027.076.058a.106.106 0 0 1 0 .057c-.016.08-.03.171-.03.263v.153c0 .038-.039.054-.075.069l-.011.004c-.864.369-12.13 5.173-12.147 5.173-.017 0-.035 0-.052-.017-.03-.03 0-.072.027-.11a.76.76 0 0 0 .014-.02l4.482-6.94.008-.012c.026-.042.056-.089.104-.089l.045.007c.102.014.192.027.283.027.68 0 1.31-.331 1.69-.897a.16.16 0 0 1 .034-.04c.027-.02.067-.01.098.004zm-6.246 9.185l12.28-5.237s.018 0 .035.017c.067.067.124.112.179.154l.027.017c.025.014.05.03.052.056 0 .01 0 .016-.002.025L25.756 23.7l-.004.026c-.007.05-.014.107-.061.107a1.729 1.729 0 0 0-1.373.847l-.005.008c-.014.023-.027.045-.05.057-.021.01-.048.006-.07.001l-9.793-2.02c-.01-.002-.152-.519-.163-.52z"
/>
</svg>
);
export default function NetlifyTab() {
const connection = useStore(netlifyConnection);
const [tokenInput, setTokenInput] = useState('');
const [fetchingStats, setFetchingStats] = useState(false);
const [sites, setSites] = useState<NetlifySite[]>([]);
const [deploys, setDeploys] = useState<NetlifyDeploy[]>([]);
const [deploymentCount, setDeploymentCount] = useState(0);
const [lastUpdated, setLastUpdated] = useState('');
const [isStatsOpen, setIsStatsOpen] = useState(false);
const [activeSiteIndex, setActiveSiteIndex] = useState(0);
const [isSitesExpanded, setIsSitesExpanded] = useState(false);
const [isDeploysExpanded, setIsDeploysExpanded] = useState(false);
const [isActionLoading, setIsActionLoading] = useState(false);
const [isConnecting, setIsConnecting] = useState(false);
const [connectionTest, setConnectionTest] = useState<ConnectionTestResult | null>(null);
// Connection testing function
const testConnection = async () => {
if (!connection.token) {
setConnectionTest({
status: 'error',
message: 'No token provided',
timestamp: Date.now(),
});
return;
}
setConnectionTest({
status: 'testing',
message: 'Testing connection...',
});
try {
const response = await fetch('https://api.netlify.com/api/v1/user', {
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (response.ok) {
const data = (await response.json()) as any;
setConnectionTest({
status: 'success',
message: `Connected successfully as ${data.email}`,
timestamp: Date.now(),
});
} else {
setConnectionTest({
status: 'error',
message: `Connection failed: ${response.status} ${response.statusText}`,
timestamp: Date.now(),
});
}
} catch (error) {
setConnectionTest({
status: 'error',
message: `Connection failed: ${error instanceof Error ? error.message : 'Unknown error'}`,
timestamp: Date.now(),
});
}
};
// Site actions
const siteActions: SiteAction[] = [
{
name: 'Clear Cache',
icon: 'i-ph:arrows-clockwise',
action: async (siteId: string) => {
try {
setIsActionLoading(true);
// Try to get site details first to check for build hooks
const siteResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}`, {
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (!siteResponse.ok) {
const errorText = await siteResponse.text();
if (siteResponse.status === 404) {
toast.error('Site not found. This may be a free account limitation.');
return;
}
throw new Error(`Failed to get site details: ${errorText}`);
}
const siteData = (await siteResponse.json()) as any;
// Check if this looks like a free account (limited features)
const isFreeAccount = !siteData.plan || siteData.plan === 'free' || siteData.plan === 'starter';
// If site has build hooks, try triggering a build instead
if (siteData.build_settings && siteData.build_settings.repo_url) {
// Try to trigger a build by making a POST to the site's build endpoint
const buildResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}/builds`, {
method: 'POST',
headers: {
Authorization: `Bearer ${connection.token}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
clear_cache: true,
}),
});
if (buildResponse.ok) {
toast.success('Build triggered with cache clear');
return;
} else if (buildResponse.status === 422) {
// Often indicates free account limitation
toast.warning('Build trigger failed. This feature may not be available on free accounts.');
return;
}
}
// Fallback: Try the standard cache purge endpoint
const cacheResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}/purge_cache`, {
method: 'POST',
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (!cacheResponse.ok) {
if (cacheResponse.status === 404) {
if (isFreeAccount) {
toast.warning('Cache purge not available on free accounts. Try triggering a build instead.');
} else {
toast.error('Cache purge endpoint not found. This feature may not be available.');
}
return;
}
const errorText = await cacheResponse.text();
throw new Error(`Cache purge failed: ${errorText}`);
}
toast.success('Site cache cleared successfully');
} catch (err: unknown) {
const error = err instanceof Error ? err.message : 'Unknown error';
toast.error(`Failed to clear site cache: ${error}`);
} finally {
setIsActionLoading(false);
}
},
},
{
name: 'Manage Environment',
icon: 'i-ph:gear',
action: async (siteId: string) => {
try {
setIsActionLoading(true);
// Get site info first to check account type
const siteResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}`, {
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (!siteResponse.ok) {
throw new Error('Failed to get site details');
}
const siteData = (await siteResponse.json()) as any;
const isFreeAccount = !siteData.plan || siteData.plan === 'free' || siteData.plan === 'starter';
// Get environment variables
const envResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}/env`, {
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (envResponse.ok) {
const envVars = (await envResponse.json()) as any[];
toast.success(`Environment variables loaded: ${envVars.length} variables`);
} else if (envResponse.status === 404) {
if (isFreeAccount) {
toast.info('Environment variables management is limited on free accounts');
} else {
toast.info('Site has no environment variables configured');
}
} else {
const errorText = await envResponse.text();
toast.error(`Failed to load environment variables: ${errorText}`);
}
} catch (err: unknown) {
const error = err instanceof Error ? err.message : 'Unknown error';
toast.error(`Failed to load environment variables: ${error}`);
} finally {
setIsActionLoading(false);
}
},
},
{
name: 'Trigger Build',
icon: 'i-ph:rocket-launch',
action: async (siteId: string) => {
try {
setIsActionLoading(true);
const buildResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}/builds`, {
method: 'POST',
headers: {
Authorization: `Bearer ${connection.token}`,
'Content-Type': 'application/json',
},
});
if (!buildResponse.ok) {
throw new Error('Failed to trigger build');
}
const buildData = (await buildResponse.json()) as any;
toast.success(`Build triggered successfully! ID: ${buildData.id}`);
} catch (err: unknown) {
const error = err instanceof Error ? err.message : 'Unknown error';
toast.error(`Failed to trigger build: ${error}`);
} finally {
setIsActionLoading(false);
}
},
},
{
name: 'View Functions',
icon: 'i-ph:code',
action: async (siteId: string) => {
try {
setIsActionLoading(true);
// Get site info first to check account type
const siteResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}`, {
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (!siteResponse.ok) {
throw new Error('Failed to get site details');
}
const siteData = (await siteResponse.json()) as any;
const isFreeAccount = !siteData.plan || siteData.plan === 'free' || siteData.plan === 'starter';
const functionsResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}/functions`, {
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (functionsResponse.ok) {
const functions = (await functionsResponse.json()) as any[];
toast.success(`Site has ${functions.length} serverless functions`);
} else if (functionsResponse.status === 404) {
if (isFreeAccount) {
toast.info('Functions may be limited or unavailable on free accounts');
} else {
toast.info('Site has no serverless functions');
}
} else {
const errorText = await functionsResponse.text();
toast.error(`Failed to load functions: ${errorText}`);
}
} catch (err: unknown) {
const error = err instanceof Error ? err.message : 'Unknown error';
toast.error(`Failed to load functions: ${error}`);
} finally {
setIsActionLoading(false);
}
},
},
{
name: 'Site Analytics',
icon: 'i-ph:chart-bar',
action: async (siteId: string) => {
try {
setIsActionLoading(true);
// Get site info first to check account type
const siteResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}`, {
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (!siteResponse.ok) {
throw new Error('Failed to get site details');
}
const siteData = (await siteResponse.json()) as any;
const isFreeAccount = !siteData.plan || siteData.plan === 'free' || siteData.plan === 'starter';
// Get site traffic data (if available)
const analyticsResponse = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}/traffic`, {
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (analyticsResponse.ok) {
await analyticsResponse.json(); // Analytics data received
toast.success('Site analytics loaded successfully');
} else if (analyticsResponse.status === 404) {
if (isFreeAccount) {
toast.info('Analytics not available on free accounts. Showing basic site info instead.');
}
// Fallback to basic site info
toast.info(`Site: ${siteData.name} - Status: ${siteData.state || 'Unknown'}`);
} else {
const errorText = await analyticsResponse.text();
if (isFreeAccount) {
toast.info(
'Analytics unavailable on free accounts. Site info: ' +
`${siteData.name} (${siteData.state || 'Unknown'})`,
);
} else {
toast.error(`Failed to load analytics: ${errorText}`);
}
}
} catch (err: unknown) {
const error = err instanceof Error ? err.message : 'Unknown error';
toast.error(`Failed to load site analytics: ${error}`);
} finally {
setIsActionLoading(false);
}
},
},
{
name: 'Delete Site',
icon: 'i-ph:trash',
action: async (siteId: string) => {
try {
const response = await fetch(`https://api.netlify.com/api/v1/sites/${siteId}`, {
method: 'DELETE',
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (!response.ok) {
throw new Error('Failed to delete site');
}
toast.success('Site deleted successfully');
fetchNetlifyStats(connection.token);
} catch (err: unknown) {
const error = err instanceof Error ? err.message : 'Unknown error';
toast.error(`Failed to delete site: ${error}`);
}
},
requiresConfirmation: true,
variant: 'destructive',
},
];
// Deploy management functions
const handleDeploy = async (siteId: string, deployId: string, action: 'lock' | 'unlock' | 'publish') => {
try {
setIsActionLoading(true);
const endpoint =
action === 'publish'
? `https://api.netlify.com/api/v1/sites/${siteId}/deploys/${deployId}/restore`
: `https://api.netlify.com/api/v1/deploys/${deployId}/${action}`;
const response = await fetch(endpoint, {
method: 'POST',
headers: {
Authorization: `Bearer ${connection.token}`,
},
});
if (!response.ok) {
throw new Error(`Failed to ${action} deploy`);
}
toast.success(`Deploy ${action}ed successfully`);
fetchNetlifyStats(connection.token);
} catch (err: unknown) {
const error = err instanceof Error ? err.message : 'Unknown error';
toast.error(`Failed to ${action} deploy: ${error}`);
} finally {
setIsActionLoading(false);
}
};
useEffect(() => {
// Initialize connection with environment token if available
initializeNetlifyConnection();
}, []);
useEffect(() => {
// Check if we have a connection with a token but no stats
if (connection.user && connection.token && (!connection.stats || !connection.stats.sites)) {
fetchNetlifyStats(connection.token);
}
// Update local state from connection
if (connection.stats) {
setSites(connection.stats.sites || []);
setDeploys(connection.stats.deploys || []);
setDeploymentCount(connection.stats.deploys?.length || 0);
setLastUpdated(connection.stats.lastDeployTime || '');
}
}, [connection]);
const handleConnect = async () => {
if (!tokenInput) {
toast.error('Please enter a Netlify API token');
return;
}
setIsConnecting(true);
try {
const response = await fetch('https://api.netlify.com/api/v1/user', {
headers: {
Authorization: `Bearer ${tokenInput}`,
},
});
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
const userData = (await response.json()) as NetlifyUser;
// Update the connection store
updateNetlifyConnection({
user: userData,
token: tokenInput,
});
toast.success('Connected to Netlify successfully');
// Fetch stats after successful connection
fetchNetlifyStats(tokenInput);
} catch (error) {
console.error('Error connecting to Netlify:', error);
toast.error(`Failed to connect to Netlify: ${error instanceof Error ? error.message : 'Unknown error'}`);
} finally {
setIsConnecting(false);
setTokenInput('');
}
};
const handleDisconnect = () => {
// Clear from localStorage
localStorage.removeItem('netlify_connection');
// Remove cookies
document.cookie = 'netlifyToken=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;';
// Update the store
updateNetlifyConnection({ user: null, token: '' });
setConnectionTest(null);
toast.success('Disconnected from Netlify');
};
const fetchNetlifyStats = async (token: string) => {
setFetchingStats(true);
try {
// Fetch sites
const sitesResponse = await fetch('https://api.netlify.com/api/v1/sites', {
headers: {
Authorization: `Bearer ${token}`,
},
});
if (!sitesResponse.ok) {
throw new Error(`Failed to fetch sites: ${sitesResponse.statusText}`);
}
const sitesData = (await sitesResponse.json()) as NetlifySite[];
setSites(sitesData);
// Fetch deploys and builds for ALL sites
const allDeploysData: NetlifyDeploy[] = [];
const allBuildsData: NetlifyBuild[] = [];
let lastDeployTime = '';
let totalDeploymentCount = 0;
if (sitesData && sitesData.length > 0) {
// Process sites in batches to avoid overwhelming the API
const batchSize = 3;
const siteBatches = [];
for (let i = 0; i < sitesData.length; i += batchSize) {
siteBatches.push(sitesData.slice(i, i + batchSize));
}
for (const batch of siteBatches) {
const batchPromises = batch.map(async (site) => {
try {
// Fetch deploys for this site
const deploysResponse = await fetch(
`https://api.netlify.com/api/v1/sites/${site.id}/deploys?per_page=20`,
{
headers: {
Authorization: `Bearer ${token}`,
},
},
);
let siteDeploys: NetlifyDeploy[] = [];
if (deploysResponse.ok) {
siteDeploys = (await deploysResponse.json()) as NetlifyDeploy[];
}
// Fetch builds for this site
const buildsResponse = await fetch(`https://api.netlify.com/api/v1/sites/${site.id}/builds?per_page=10`, {
headers: {
Authorization: `Bearer ${token}`,
},
});
let siteBuilds: NetlifyBuild[] = [];
if (buildsResponse.ok) {
siteBuilds = (await buildsResponse.json()) as NetlifyBuild[];
}
return { site, deploys: siteDeploys, builds: siteBuilds };
} catch (error) {
console.error(`Failed to fetch data for site ${site.name}:`, error);
return { site, deploys: [], builds: [] };
}
});
const batchResults = await Promise.all(batchPromises);
for (const result of batchResults) {
allDeploysData.push(...result.deploys);
allBuildsData.push(...result.builds);
totalDeploymentCount += result.deploys.length;
}
// Small delay between batches
if (batch !== siteBatches[siteBatches.length - 1]) {
await new Promise((resolve) => setTimeout(resolve, 200));
}
}
// Sort deploys by creation date (newest first)
allDeploysData.sort((a, b) => new Date(b.created_at).getTime() - new Date(a.created_at).getTime());
// Set the most recent deploy time
if (allDeploysData.length > 0) {
lastDeployTime = allDeploysData[0].created_at;
setLastUpdated(lastDeployTime);
}
setDeploys(allDeploysData);
setDeploymentCount(totalDeploymentCount);
}
// Update the stats in the store
updateNetlifyConnection({
stats: {
sites: sitesData,
deploys: allDeploysData,
builds: allBuildsData,
lastDeployTime,
totalSites: sitesData.length,
totalDeploys: totalDeploymentCount,
totalBuilds: allBuildsData.length,
},
});
toast.success('Netlify stats updated');
} catch (error) {
console.error('Error fetching Netlify stats:', error);
toast.error(`Failed to fetch Netlify stats: ${error instanceof Error ? error.message : 'Unknown error'}`);
} finally {
setFetchingStats(false);
}
};
const renderStats = () => {
if (!connection.user || !connection.stats) {
return null;
}
return (
<div className="mt-6">
<Collapsible open={isStatsOpen} onOpenChange={setIsStatsOpen}>
<CollapsibleTrigger asChild>
<div className="flex items-center justify-between p-4 rounded-lg bg-bolt-elements-background dark:bg-bolt-elements-background-depth-2 border border-bolt-elements-borderColor dark:border-bolt-elements-borderColor hover:border-bolt-elements-borderColorActive/70 dark:hover:border-bolt-elements-borderColorActive/70 transition-all duration-200 cursor-pointer">
<div className="flex items-center gap-2">
<div className="i-ph:chart-bar w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span className="text-sm font-medium text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
Netlify Stats
</span>
</div>
<div
className={classNames(
'i-ph:caret-down w-4 h-4 transform transition-transform duration-200 text-bolt-elements-textSecondary',
isStatsOpen ? 'rotate-180' : '',
)}
/>
</div>
</CollapsibleTrigger>
<CollapsibleContent className="overflow-hidden">
<div className="space-y-4 mt-4">
{/* Netlify Overview Dashboard */}
<div className="mb-6 p-4 bg-bolt-elements-background-depth-1 rounded-lg border border-bolt-elements-borderColor">
<h4 className="text-sm font-medium text-bolt-elements-textPrimary mb-3">Netlify Overview</h4>
<div className="grid grid-cols-2 md:grid-cols-4 gap-4">
<div className="text-center">
<div className="text-2xl font-bold text-bolt-elements-textPrimary">
{connection.stats.totalSites}
</div>
<div className="text-xs text-bolt-elements-textSecondary">Total Sites</div>
</div>
<div className="text-center">
<div className="text-2xl font-bold text-bolt-elements-textPrimary">
{connection.stats.totalDeploys || deploymentCount}
</div>
<div className="text-xs text-bolt-elements-textSecondary">Total Deployments</div>
</div>
<div className="text-center">
<div className="text-2xl font-bold text-bolt-elements-textPrimary">
{connection.stats.totalBuilds || 0}
</div>
<div className="text-xs text-bolt-elements-textSecondary">Total Builds</div>
</div>
<div className="text-center">
<div className="text-2xl font-bold text-bolt-elements-textPrimary">
{sites.filter((site) => site.published_deploy?.state === 'ready').length}
</div>
<div className="text-xs text-bolt-elements-textSecondary">Live Sites</div>
</div>
</div>
</div>
{/* Advanced Analytics */}
<div className="mb-6 space-y-4">
<h4 className="text-sm font-medium text-bolt-elements-textPrimary">Deployment Analytics</h4>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="bg-bolt-elements-background-depth-2 p-3 rounded-lg border border-bolt-elements-borderColor">
<h6 className="text-xs font-medium text-bolt-elements-textPrimary flex items-center gap-2 mb-2">
<div className="i-ph:chart-pie w-4 h-4 text-bolt-elements-item-contentAccent" />
Success Rate
</h6>
<div className="space-y-1">
{(() => {
const successfulDeploys = deploys.filter((deploy) => deploy.state === 'ready').length;
const failedDeploys = deploys.filter((deploy) => deploy.state === 'error').length;
const successRate =
deploys.length > 0 ? Math.round((successfulDeploys / deploys.length) * 100) : 0;
return [
{ label: 'Success Rate', value: `${successRate}%` },
{ label: 'Successful', value: successfulDeploys },
{ label: 'Failed', value: failedDeploys },
];
})().map((item, idx) => (
<div key={idx} className="flex justify-between text-xs">
<span className="text-bolt-elements-textSecondary">{item.label}:</span>
<span className="text-bolt-elements-textPrimary font-medium">{item.value}</span>
</div>
))}
</div>
</div>
<div className="bg-bolt-elements-background-depth-2 p-3 rounded-lg border border-bolt-elements-borderColor">
<h6 className="text-xs font-medium text-bolt-elements-textPrimary flex items-center gap-2 mb-2">
<div className="i-ph:clock w-4 h-4 text-bolt-elements-item-contentAccent" />
Recent Activity
</h6>
<div className="space-y-1">
{(() => {
const now = Date.now();
const last24Hours = deploys.filter(
(deploy) => now - new Date(deploy.created_at).getTime() < 24 * 60 * 60 * 1000,
).length;
const last7Days = deploys.filter(
(deploy) => now - new Date(deploy.created_at).getTime() < 7 * 24 * 60 * 60 * 1000,
).length;
const activeSites = sites.filter((site) => {
const lastDeploy = site.published_deploy?.published_at;
return lastDeploy && now - new Date(lastDeploy).getTime() < 7 * 24 * 60 * 60 * 1000;
}).length;
return [
{ label: 'Last 24 hours', value: last24Hours },
{ label: 'Last 7 days', value: last7Days },
{ label: 'Active sites', value: activeSites },
];
})().map((item, idx) => (
<div key={idx} className="flex justify-between text-xs">
<span className="text-bolt-elements-textSecondary">{item.label}:</span>
<span className="text-bolt-elements-textPrimary font-medium">{item.value}</span>
</div>
))}
</div>
</div>
</div>
</div>
{/* Site Health Metrics */}
<div className="mb-6">
<h4 className="text-sm font-medium text-bolt-elements-textPrimary mb-2">Site Health Overview</h4>
<div className="grid grid-cols-2 md:grid-cols-5 gap-4">
{(() => {
const healthySites = sites.filter(
(site) => site.published_deploy?.state === 'ready' && site.ssl_url,
).length;
const sslEnabled = sites.filter((site) => !!site.ssl_url).length;
const customDomain = sites.filter((site) => !!site.custom_domain).length;
const needsAttention = sites.filter(
(site) => site.published_deploy?.state === 'error' || !site.published_deploy,
).length;
const buildingSites = sites.filter(
(site) =>
site.published_deploy?.state === 'building' || site.published_deploy?.state === 'processing',
).length;
return [
{
label: 'Healthy',
value: healthySites,
icon: 'i-ph:heart',
color: 'text-green-500',
bgColor: 'bg-green-100 dark:bg-green-900/20',
textColor: 'text-green-800 dark:text-green-400',
},
{
label: 'SSL Enabled',
value: sslEnabled,
icon: 'i-ph:lock',
color: 'text-blue-500',
bgColor: 'bg-blue-100 dark:bg-blue-900/20',
textColor: 'text-blue-800 dark:text-blue-400',
},
{
label: 'Custom Domain',
value: customDomain,
icon: 'i-ph:globe',
color: 'text-purple-500',
bgColor: 'bg-purple-100 dark:bg-purple-900/20',
textColor: 'text-purple-800 dark:text-purple-400',
},
{
label: 'Building',
value: buildingSites,
icon: 'i-ph:gear',
color: 'text-yellow-500',
bgColor: 'bg-yellow-100 dark:bg-yellow-900/20',
textColor: 'text-yellow-800 dark:text-yellow-400',
},
{
label: 'Needs Attention',
value: needsAttention,
icon: 'i-ph:warning',
color: 'text-red-500',
bgColor: 'bg-red-100 dark:bg-red-900/20',
textColor: 'text-red-800 dark:text-red-400',
},
];
})().map((metric, index) => (
<div
key={index}
className={`flex flex-col p-3 rounded-lg border border-bolt-elements-borderColor ${metric.bgColor}`}
>
<div className="flex items-center gap-2 mb-1">
<div className={`${metric.icon} w-4 h-4 ${metric.color}`} />
<span className="text-xs text-bolt-elements-textSecondary">{metric.label}</span>
</div>
<span className={`text-lg font-medium ${metric.textColor}`}>{metric.value}</span>
</div>
))}
</div>
</div>
<div className="flex flex-wrap items-center gap-4">
<Badge
variant="outline"
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
<div className="i-ph:buildings w-4 h-4 text-bolt-elements-item-contentAccent" />
<span>{connection.stats.totalSites} Sites</span>
</Badge>
<Badge
variant="outline"
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
<div className="i-ph:rocket-launch w-4 h-4 text-bolt-elements-item-contentAccent" />
<span>{deploymentCount} Deployments</span>
</Badge>
<Badge
variant="outline"
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
<div className="i-ph:hammer w-4 h-4 text-bolt-elements-item-contentAccent" />
<span>{connection.stats.totalBuilds || 0} Builds</span>
</Badge>
{lastUpdated && (
<Badge
variant="outline"
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
<div className="i-ph:clock w-4 h-4 text-bolt-elements-item-contentAccent" />
<span>Updated {formatDistanceToNow(new Date(lastUpdated))} ago</span>
</Badge>
)}
</div>
{sites.length > 0 && (
<div className="mt-4 space-y-4">
<div className="bg-bolt-elements-background dark:bg-bolt-elements-background-depth-1 border border-bolt-elements-borderColor dark:border-bolt-elements-borderColor rounded-lg p-4">
<div className="flex items-center justify-between mb-4">
<div className="flex items-center gap-4">
<h4 className="text-sm font-medium flex items-center gap-2 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
<div className="i-ph:buildings w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
Your Sites ({sites.length})
</h4>
{sites.length > 8 && (
<button
onClick={() => setIsSitesExpanded(!isSitesExpanded)}
className="text-xs text-bolt-elements-textSecondary hover:text-bolt-elements-textPrimary transition-colors"
>
{isSitesExpanded ? 'Show Less' : `Show All ${sites.length}`}
</button>
)}
</div>
<Button
variant="outline"
size="sm"
onClick={() => fetchNetlifyStats(connection.token)}
disabled={fetchingStats}
className="flex items-center gap-2 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary hover:bg-bolt-elements-item-backgroundActive/10"
>
<div
className={classNames(
'i-ph:arrows-clockwise w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent',
{ 'animate-spin': fetchingStats },
)}
/>
{fetchingStats ? 'Refreshing...' : 'Refresh'}
</Button>
</div>
<div className="space-y-3">
{(isSitesExpanded ? sites : sites.slice(0, 8)).map((site, index) => (
<div
key={site.id}
className={classNames(
'bg-bolt-elements-background dark:bg-bolt-elements-background-depth-1 border rounded-lg p-4 transition-all cursor-pointer',
activeSiteIndex === index
? 'border-bolt-elements-item-contentAccent bg-bolt-elements-item-backgroundActive/10'
: 'border-bolt-elements-borderColor hover:border-bolt-elements-borderColorActive/70',
)}
onClick={() => {
setActiveSiteIndex(index);
}}
>
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<div className="i-ph:cloud w-5 h-5 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span className="font-medium text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
{site.name}
</span>
</div>
<div className="flex items-center gap-2">
<Badge
variant={site.published_deploy?.state === 'ready' ? 'default' : 'destructive'}
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
{site.published_deploy?.state === 'ready' ? (
<div className="i-ph:check-circle w-4 h-4 text-green-500" />
) : (
<div className="i-ph:x-circle w-4 h-4 text-red-500" />
)}
<span className="text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
{site.published_deploy?.state || 'Unknown'}
</span>
</Badge>
</div>
</div>
<div className="mt-3 space-y-2">
<div className="flex items-center gap-2">
<a
href={site.ssl_url || site.url}
target="_blank"
rel="noopener noreferrer"
className="text-sm flex items-center gap-1 transition-colors text-bolt-elements-link-text hover:text-bolt-elements-link-textHover dark:text-white dark:hover:text-bolt-elements-link-textHover"
onClick={(e) => e.stopPropagation()}
>
<div className="i-ph:cloud w-3 h-3 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span className="underline decoration-1 underline-offset-2">
{site.ssl_url || site.url}
</span>
</a>
</div>
<div className="flex items-center gap-4 text-xs text-bolt-elements-textSecondary">
{site.published_deploy?.framework && (
<div className="flex items-center gap-1">
<div className="i-ph:cube w-3 h-3 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span>{site.published_deploy.framework}</span>
</div>
)}
{site.custom_domain && (
<div className="flex items-center gap-1">
<div className="i-ph:globe w-3 h-3 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span>Custom Domain</span>
</div>
)}
{site.branch && (
<div className="flex items-center gap-1">
<div className="i-ph:code w-3 h-3 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span>{site.branch}</span>
</div>
)}
</div>
</div>
{activeSiteIndex === index && (
<>
<div className="mt-4 pt-3 border-t border-bolt-elements-borderColor">
<div className="flex items-center gap-2">
{siteActions.map((action) => (
<Button
key={action.name}
variant={action.variant || 'outline'}
size="sm"
onClick={async (e) => {
e.stopPropagation();
if (action.requiresConfirmation) {
if (!confirm(`Are you sure you want to ${action.name.toLowerCase()}?`)) {
return;
}
}
setIsActionLoading(true);
await action.action(site.id);
setIsActionLoading(false);
}}
disabled={isActionLoading}
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
<div
className={`${action.icon} w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent`}
/>
{action.name}
</Button>
))}
</div>
</div>
{site.published_deploy && (
<div className="mt-3 text-sm">
<div className="flex items-center gap-1">
<div className="i-ph:clock w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span className="text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary">
Published {formatDistanceToNow(new Date(site.published_deploy.published_at))} ago
</span>
</div>
{site.published_deploy.branch && (
<div className="flex items-center gap-1 mt-1">
<div className="i-ph:code w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span className="text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary">
Branch: {site.published_deploy.branch}
</span>
</div>
)}
</div>
)}
</>
)}
</div>
))}
</div>
</div>
{deploys.length > 0 && (
<div className="bg-bolt-elements-background dark:bg-bolt-elements-background-depth-1 border border-bolt-elements-borderColor dark:border-bolt-elements-borderColor rounded-lg p-4">
<div className="flex items-center justify-between mb-3">
<div className="flex items-center gap-4">
<h4 className="text-sm font-medium flex items-center gap-2 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
<div className="i-ph:buildings w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
All Deployments ({deploys.length})
</h4>
{deploys.length > 10 && (
<button
onClick={() => setIsDeploysExpanded(!isDeploysExpanded)}
className="text-xs text-bolt-elements-textSecondary hover:text-bolt-elements-textPrimary transition-colors"
>
{isDeploysExpanded ? 'Show Less' : `Show All ${deploys.length}`}
</button>
)}
</div>
</div>
<div className="space-y-2">
{(isDeploysExpanded ? deploys : deploys.slice(0, 10)).map((deploy) => (
<div
key={deploy.id}
className="bg-bolt-elements-background dark:bg-bolt-elements-background-depth-1 border border-bolt-elements-borderColor dark:border-bolt-elements-borderColor rounded-lg p-3"
>
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<Badge
variant={
deploy.state === 'ready'
? 'default'
: deploy.state === 'error'
? 'destructive'
: 'outline'
}
className="flex items-center gap-1"
>
{deploy.state === 'ready' ? (
<div className="i-ph:check-circle w-4 h-4 text-green-500" />
) : deploy.state === 'error' ? (
<div className="i-ph:x-circle w-4 h-4 text-red-500" />
) : (
<div className="i-ph:buildings w-4 h-4 text-bolt-elements-item-contentAccent" />
)}
<span className="text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
{deploy.state}
</span>
</Badge>
</div>
<span className="text-xs text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary">
{formatDistanceToNow(new Date(deploy.created_at))} ago
</span>
</div>
{deploy.branch && (
<div className="mt-2 text-xs text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary flex items-center gap-1">
<div className="i-ph:code w-3 h-3 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span className="text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary">
Branch: {deploy.branch}
</span>
</div>
)}
{deploy.deploy_url && (
<div className="mt-2 text-xs">
<a
href={deploy.deploy_url}
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-1 transition-colors text-bolt-elements-link-text hover:text-bolt-elements-link-textHover dark:text-white dark:hover:text-bolt-elements-link-textHover"
onClick={(e) => e.stopPropagation()}
>
<div className="i-ph:cloud w-3 h-3 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span className="underline decoration-1 underline-offset-2">{deploy.deploy_url}</span>
</a>
</div>
)}
<div className="flex items-center gap-2 mt-2">
<Button
variant="outline"
size="sm"
onClick={() => {
const siteForDeploy = sites.find((site) => site.id === deploy.site_id);
if (siteForDeploy) {
handleDeploy(siteForDeploy.id, deploy.id, 'publish');
}
}}
disabled={isActionLoading}
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
<div className="i-ph:buildings w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
Publish
</Button>
{deploy.state === 'ready' ? (
<Button
variant="outline"
size="sm"
onClick={() => {
const siteForDeploy = sites.find((site) => site.id === deploy.site_id);
if (siteForDeploy) {
handleDeploy(siteForDeploy.id, deploy.id, 'lock');
}
}}
disabled={isActionLoading}
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
<div className="i-ph:lock-closed w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
Lock
</Button>
) : (
<Button
variant="outline"
size="sm"
onClick={() => {
const siteForDeploy = sites.find((site) => site.id === deploy.site_id);
if (siteForDeploy) {
handleDeploy(siteForDeploy.id, deploy.id, 'unlock');
}
}}
disabled={isActionLoading}
className="flex items-center gap-1 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary"
>
<div className="i-ph:lock-open w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
Unlock
</Button>
)}
</div>
</div>
))}
</div>
</div>
)}
{/* Builds Section */}
{connection.stats.builds && connection.stats.builds.length > 0 && (
<div className="bg-bolt-elements-background dark:bg-bolt-elements-background-depth-1 border border-bolt-elements-borderColor dark:border-bolt-elements-borderColor rounded-lg p-4">
<div className="flex items-center justify-between mb-3">
<h4 className="text-sm font-medium flex items-center gap-2 text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
<div className="i-ph:hammer w-4 h-4 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
Recent Builds ({connection.stats.builds.length})
</h4>
</div>
<div className="space-y-2">
{connection.stats.builds.slice(0, 8).map((build: any) => (
<div
key={build.id}
className="bg-bolt-elements-background dark:bg-bolt-elements-background-depth-1 border border-bolt-elements-borderColor dark:border-bolt-elements-borderColor rounded-lg p-3"
>
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<Badge variant={build.done ? 'default' : 'outline'} className="flex items-center gap-1">
{build.done ? (
<div className="i-ph:check-circle w-4 h-4 text-green-500" />
) : (
<div className="i-ph:buildings w-4 h-4 text-bolt-elements-item-contentAccent" />
)}
<span className="text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
{build.done ? 'Completed' : 'Building'}
</span>
</Badge>
</div>
<span className="text-xs text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary">
{formatDistanceToNow(new Date(build.created_at))} ago
</span>
</div>
{build.commit_ref && (
<div className="mt-2 text-xs text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary flex items-center gap-1">
<div className="i-ph:code w-3 h-3 text-bolt-elements-item-contentAccent dark:text-bolt-elements-item-contentAccent" />
<span className="text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary">
{build.commit_ref.substring(0, 7)}
</span>
</div>
)}
</div>
))}
</div>
</div>
)}
</div>
)}
</div>
</CollapsibleContent>
</Collapsible>
</div>
);
};
return (
<div className="space-y-6">
{/* Header */}
<motion.div
className="flex items-center justify-between gap-2"
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.1 }}
>
<div className="flex items-center gap-2">
<div className="text-[#00AD9F]">
<NetlifyLogo />
</div>
<h2 className="text-lg font-medium text-bolt-elements-textPrimary dark:text-bolt-elements-textPrimary">
Netlify Integration
</h2>
</div>
<div className="flex items-center gap-2">
{connection.user && (
<Button
onClick={testConnection}
disabled={connectionTest?.status === 'testing'}
variant="outline"
className="flex items-center gap-2 hover:bg-bolt-elements-item-backgroundActive/10 hover:text-bolt-elements-textPrimary dark:hover:bg-bolt-elements-item-backgroundActive/10 dark:hover:text-bolt-elements-textPrimary transition-colors"
>
{connectionTest?.status === 'testing' ? (
<>
<div className="i-ph:spinner-gap w-4 h-4 animate-spin" />
Testing...
</>
) : (
<>
<div className="i-ph:plug-charging w-4 h-4" />
Test Connection
</>
)}
</Button>
)}
</div>
</motion.div>
<p className="text-sm text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary">
Connect and manage your Netlify sites with advanced deployment controls and site management
</p>
{/* Connection Test Results */}
{connectionTest && (
<motion.div
className={classNames('p-4 rounded-lg border', {
'bg-green-50 border-green-200 dark:bg-green-900/20 dark:border-green-700':
connectionTest.status === 'success',
'bg-red-50 border-red-200 dark:bg-red-900/20 dark:border-red-700': connectionTest.status === 'error',
'bg-blue-50 border-blue-200 dark:bg-blue-900/20 dark:border-blue-700': connectionTest.status === 'testing',
})}
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
>
<div className="flex items-center gap-2">
{connectionTest.status === 'success' && (
<div className="i-ph:check-circle w-5 h-5 text-green-600 dark:text-green-400" />
)}
{connectionTest.status === 'error' && (
<div className="i-ph:warning-circle w-5 h-5 text-red-600 dark:text-red-400" />
)}
{connectionTest.status === 'testing' && (
<div className="i-ph:spinner-gap w-5 h-5 animate-spin text-blue-600 dark:text-blue-400" />
)}
<span
className={classNames('text-sm font-medium', {
'text-green-800 dark:text-green-200': connectionTest.status === 'success',
'text-red-800 dark:text-red-200': connectionTest.status === 'error',
'text-blue-800 dark:text-blue-200': connectionTest.status === 'testing',
})}
>
{connectionTest.message}
</span>
</div>
{connectionTest.timestamp && (
<p className="text-xs text-gray-500 mt-1">{new Date(connectionTest.timestamp).toLocaleString()}</p>
)}
</motion.div>
)}
{/* Main Connection Component */}
<motion.div
className="bg-bolt-elements-background dark:bg-bolt-elements-background border border-bolt-elements-borderColor dark:border-bolt-elements-borderColor rounded-lg"
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.2 }}
>
<div className="p-6">
{!connection.user ? (
<div className="space-y-4">
<div className="text-xs text-bolt-elements-textSecondary bg-bolt-elements-background-depth-1 dark:bg-bolt-elements-background-depth-1 p-3 rounded-lg mb-4">
<p className="flex items-center gap-1 mb-1">
<span className="i-ph:lightbulb w-3.5 h-3.5 text-bolt-elements-icon-success dark:text-bolt-elements-icon-success" />
<span className="font-medium">Tip:</span> You can also set the{' '}
<code className="px-1 py-0.5 bg-bolt-elements-background-depth-2 dark:bg-bolt-elements-background-depth-2 rounded">
VITE_NETLIFY_ACCESS_TOKEN
</code>{' '}
environment variable to connect automatically.
</p>
</div>
<div>
<label className="block text-sm text-bolt-elements-textSecondary dark:text-bolt-elements-textSecondary mb-2">
API Token
</label>
<input
type="password"
value={tokenInput}
onChange={(e) => setTokenInput(e.target.value)}
placeholder="Enter your Netlify API token"
className={classNames(
'w-full px-3 py-2 rounded-lg text-sm',
'bg-[#F8F8F8] dark:bg-[#1A1A1A]',
'border border-[#E5E5E5] dark:border-[#333333]',
'text-bolt-elements-textPrimary placeholder-bolt-elements-textTertiary',
'focus:outline-none focus:ring-1 focus:ring-bolt-elements-borderColorActive',
'disabled:opacity-50',
)}
/>
<div className="mt-2 text-sm text-bolt-elements-textSecondary">
<a
href="https://app.netlify.com/user/applications#personal-access-tokens"
target="_blank"
rel="noopener noreferrer"
className="text-bolt-elements-borderColorActive hover:underline inline-flex items-center gap-1"
>
Get your token
<div className="i-ph:arrow-square-out w-4 h-4" />
</a>
</div>
</div>
<div className="flex items-center justify-between">
<button
onClick={handleConnect}
disabled={isConnecting || !tokenInput}
className={classNames(
'px-4 py-2 rounded-lg text-sm flex items-center gap-2',
'bg-[#303030] text-white',
'hover:bg-[#5E41D0] hover:text-white',
'disabled:opacity-50 disabled:cursor-not-allowed transition-all duration-200',
'transform active:scale-95',
)}
>
{isConnecting ? (
<>
<div className="i-ph:spinner-gap animate-spin" />
Connecting...
</>
) : (
<>
<div className="i-ph:plug-charging w-4 h-4" />
Connect
</>
)}
</button>
</div>
</div>
) : (
<div className="space-y-4">
<div className="flex items-center gap-3">
<button
onClick={handleDisconnect}
className={classNames(
'px-4 py-2 rounded-lg text-sm flex items-center gap-2',
'bg-red-500 text-white',
'hover:bg-red-600',
)}
>
<div className="i-ph:plug w-4 h-4" />
Disconnect
</button>
<span className="text-sm text-bolt-elements-textSecondary flex items-center gap-1">
<div className="i-ph:check-circle w-4 h-4 text-green-500" />
Connected to Netlify
</span>
</div>
{renderStats()}
</div>
)}
</div>
</motion.div>
</div>
);
}