aethex-forge/client/pages/ethos/ArtistSettings.tsx
AeThex 7fec93e05c
Some checks are pending
Build / build (push) Waiting to run
Deploy / deploy (push) Waiting to run
Lint & Type Check / lint (push) Waiting to run
Security Scan / dependency-check (push) Waiting to run
Security Scan / semgrep (push) Waiting to run
Test / test (18.x) (push) Waiting to run
Test / test (20.x) (push) Waiting to run
feat: Authentik SSO, nav systems, project pages, and schema fixes
Auth & SSO
- Wire Authentik (auth.aethex.tech) as OIDC PKCE SSO provider
- Server-side only flow with HMAC-signed stateless state token
- Account linking via authentik_sub in user metadata
- AeThex ID connection card in Dashboard connections tab
- Unlink endpoint POST /api/auth/authentik/unlink
- Fix node:https helper to bypass undici DNS bug on Node 18
- Fix resolv.conf to use 1.1.1.1/8.8.8.8 in container

Schema & types
- Regenerate database.types.ts from live Supabase schema (23k lines)
- Fix 511 TypeScript errors caused by stale 582-line types file
- Fix UserProfile import in aethex-database-adapter.ts
- Add notifications migration (title, message, read columns)

Server fixes
- Remove badge_color from achievements seed/upsert (column doesn't exist)
- Rename name→title, add slug field in achievements seed
- Remove email from all user_profiles select queries (column doesn't exist)
- Fix email-based achievement target lookup via auth.admin.listUsers
- Add GET /api/projects/:projectId endpoint
- Fix import.meta.dirname → fileURLToPath for Node 18 compatibility
- Expose VITE_APP_VERSION from package.json at build time

Navigation systems
- DevPlatformNav: reorganize into Learn/Build grouped dropdowns with descriptions
- Migrate all 11 dev-platform pages from main Layout to DevPlatformLayout
- Remove dead isDevMode context nav swap from main Layout
- EthosLayout: purple-accented tab bar (Library, Artists, Licensing, Settings)
  with member-only gating and guest CTA — migrate 4 Ethos pages
- GameForgeLayout: orange-branded sidebar with Studio section and lock icons
  for unauthenticated users — migrate GameForge + GameForgeDashboard
- SysBar: live latency ping, status dot (green/yellow/red), real version

Layout dropdown
- Role-gate Admin (owner/admin/founder only) and Internal Docs (+ staff)
- Add Internal section label with separator
- Fix settings link from /dashboard?tab=profile#settings to /dashboard?tab=settings

Project pages
- Add ProjectDetail page at /projects/:projectId
- Fix ProfilePassport "View mission" link from /projects/new to /projects/:id

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-12 05:01:10 +00:00

784 lines
28 KiB
TypeScript

import { useEffect, useState } from "react";
import { useNavigate } from "react-router-dom";
import EthosLayout from "@/components/ethos/EthosLayout";
import SEO from "@/components/SEO";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Textarea } from "@/components/ui/textarea";
import { Checkbox } from "@/components/ui/checkbox";
import { useAuth } from "@/contexts/AuthContext";
import TrackUploadModal from "@/components/ethos/TrackUploadModal";
import TrackMetadataForm from "@/components/ethos/TrackMetadataForm";
import { ethosStorage, getAudioDuration } from "@/lib/ethos-storage";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
import { useAethexToast } from "@/hooks/use-aethex-toast";
import { Upload, Music, Settings, CheckCircle, Clock } from "lucide-react";
import EcosystemLicenseModal from "@/components/ethos/EcosystemLicenseModal";
// API Base URL for fetch requests
const API_BASE = import.meta.env.VITE_API_BASE || "";
const SKILLS = [
"Synthwave",
"Orchestral",
"SFX Design",
"Game Audio",
"Ambient",
"Electronic",
"Cinematic",
"Jazz",
"Hip-Hop",
"Folk",
];
interface ArtistProfile {
skills: string[];
for_hire: boolean;
bio?: string;
portfolio_url?: string;
sample_price_track?: number;
sample_price_sfx?: number;
sample_price_score?: number;
turnaround_days?: number;
verified?: boolean;
ecosystem_license_accepted?: boolean;
price_list?: {
track_custom?: number;
sfx_pack?: number;
full_score?: number;
day_rate?: number;
contact_for_quote?: boolean;
};
}
interface VerificationStatus {
status: "pending" | "approved" | "rejected" | "none";
submitted_at?: string;
rejection_reason?: string;
}
export default function ArtistSettings() {
const { user } = useAuth();
const navigate = useNavigate();
const toast = useAethexToast();
const [profile, setProfile] = useState<ArtistProfile>({
skills: [],
for_hire: true,
});
const [loading, setLoading] = useState(true);
const [saving, setSaving] = useState(false);
const [uploadModalOpen, setUploadModalOpen] = useState(false);
const [currentFile, setCurrentFile] = useState<File | null>(null);
const [showMetadataForm, setShowMetadataForm] = useState(false);
const [verificationStatus, setVerificationStatus] =
useState<VerificationStatus>({
status: "none",
});
const [isSubmittingVerification, setIsSubmittingVerification] =
useState(false);
const [submissionNotes, setSubmissionNotes] = useState("");
const [portfolioLinks, setPortfolioLinks] = useState("");
const [showLicenseModal, setShowLicenseModal] = useState(false);
const [isAcceptingLicense, setIsAcceptingLicense] = useState(false);
useEffect(() => {
if (!user) {
navigate("/login");
return;
}
const fetchProfile = async () => {
try {
const res = await fetch(`${API_BASE}/api/ethos/artists?id=${user.id}`, {
headers: { "x-user-id": user.id },
});
if (res.ok) {
const data = await res.json();
setProfile({
skills: data.skills || [],
for_hire: data.for_hire ?? true,
bio: data.bio,
portfolio_url: data.portfolio_url,
sample_price_track: data.sample_price_track,
sample_price_sfx: data.sample_price_sfx,
sample_price_score: data.sample_price_score,
turnaround_days: data.turnaround_days,
verified: data.verified,
});
}
// Fetch verification status
const verRes = await fetch(
`${API_BASE}/api/ethos/verification?status=pending`,
{
headers: { "x-user-id": user.id },
},
);
if (verRes.ok) {
const { data: requests } = await verRes.json();
const userRequest = requests?.find((r: any) => r.user_id === user.id);
if (userRequest) {
setVerificationStatus({
status: userRequest.status,
submitted_at: userRequest.submitted_at,
rejection_reason: userRequest.rejection_reason,
});
}
}
} catch (error) {
console.error("Failed to fetch profile:", error);
} finally {
setLoading(false);
}
};
fetchProfile();
}, [user, navigate]);
const handleSubmitVerification = async () => {
if (!user) return;
setIsSubmittingVerification(true);
try {
const response = await fetch(`${API_BASE}/api/ethos/verification`, {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-user-id": user.id,
},
body: JSON.stringify({
action: "submit",
submission_notes: submissionNotes,
portfolio_links: portfolioLinks
.split("\n")
.filter((link) => link.trim()),
}),
});
if (response.ok) {
const { data } = await response.json();
setVerificationStatus({
status: "pending",
submitted_at: data.submitted_at,
});
setSubmissionNotes("");
setPortfolioLinks("");
toast.success({
title: "Verification request submitted",
description:
"Your application has been sent to the Ethos Guild team for review. You'll be notified via email of any updates.",
});
} else {
throw new Error("Failed to submit verification request");
}
} catch (error) {
toast.error({
title: "Error",
description: String(error),
});
} finally {
setIsSubmittingVerification(false);
}
};
const toggleSkill = (skill: string) => {
setProfile((prev) => ({
...prev,
skills: prev.skills.includes(skill)
? prev.skills.filter((s) => s !== skill)
: [...prev.skills, skill],
}));
};
const handleSave = async () => {
if (!user) return;
setSaving(true);
try {
const res = await fetch(`${API_BASE}/api/ethos/artists`, {
method: "PUT",
headers: {
"x-user-id": user.id,
"Content-Type": "application/json",
},
body: JSON.stringify(profile),
});
if (res.ok) {
toast.success({
title: "Profile updated",
description: "Your Ethos artist profile has been saved",
});
} else {
throw new Error("Failed to save profile");
}
} catch (error) {
toast.error({
title: "Error",
description: String(error),
});
} finally {
setSaving(false);
}
};
const handleFileSelected = (file: File) => {
// Show ecosystem license modal on first upload if not already accepted
if (!profile.ecosystem_license_accepted) {
setCurrentFile(file);
setShowLicenseModal(true);
} else {
setCurrentFile(file);
setShowMetadataForm(true);
}
};
const handleAcceptEcosystemLicense = async () => {
if (!user) return;
setIsAcceptingLicense(true);
try {
// Update profile to accept ecosystem license
const res = await fetch(`${API_BASE}/api/ethos/artists`, {
method: "PUT",
headers: {
"x-user-id": user.id,
"Content-Type": "application/json",
},
body: JSON.stringify({
...profile,
ecosystem_license_accepted: true,
}),
});
if (res.ok) {
setProfile((prev) => ({
...prev,
ecosystem_license_accepted: true,
}));
toast.success({
title: "License accepted",
description: "You can now upload tracks to the Ethos Library",
});
// Continue with metadata form
setShowLicenseModal(false);
setShowMetadataForm(true);
} else {
throw new Error("Failed to accept license");
}
} catch (error) {
console.error("License acceptance error:", error);
toast.error({
title: "Error",
description: "Failed to accept ecosystem license",
});
} finally {
setIsAcceptingLicense(false);
}
};
const handleRejectLicense = () => {
setShowLicenseModal(false);
setCurrentFile(null);
toast.info({
title: "Upload cancelled",
description:
"You must accept the Ecosystem License to upload tracks. You can still license commercially outside of AeThex.",
});
};
const handleMetadataSubmit = async (metadata: any) => {
if (!user || !currentFile) return;
try {
toast.loading({
title: "Uploading track...",
description: "Please wait while we upload your file to secure storage",
});
// Get audio duration
let durationSeconds = 0;
try {
durationSeconds = Math.round(await getAudioDuration(currentFile));
} catch (error) {
console.warn("Could not determine audio duration:", error);
durationSeconds = Math.floor(currentFile.size / 16000); // Fallback estimate
}
// Upload file to Supabase Storage
const fileUrl = await ethosStorage.uploadTrackFile(currentFile, user.id);
// Create track record in database
const res = await fetch(`${API_BASE}/api/ethos/tracks`, {
method: "POST",
headers: {
"x-user-id": user.id,
"Content-Type": "application/json",
},
body: JSON.stringify({
...metadata,
file_url: fileUrl,
duration_seconds: durationSeconds,
}),
});
if (res.ok) {
toast.success({
title: "Track uploaded successfully! 🎵",
description:
"Your track has been added to your portfolio and is ready to share",
});
setShowMetadataForm(false);
setCurrentFile(null);
} else {
throw new Error("Failed to create track record");
}
} catch (error) {
console.error("Upload error:", error);
toast.error({
title: "Upload failed",
description: String(error),
});
}
};
if (loading) {
return (
<EthosLayout>
<div className="py-20 text-center">Loading settings...</div>
</EthosLayout>
);
}
return (
<>
<SEO pageTitle="Artist Settings - Ethos Guild" />
<EthosLayout>
<div className="bg-slate-950 text-foreground min-h-screen">
<div className="container mx-auto px-4 max-w-4xl py-12">
<div className="space-y-8">
{/* Header */}
<div>
<h1 className="text-3xl font-bold text-white flex items-center gap-3 mb-2">
<Settings className="h-8 w-8" />
Artist Settings
</h1>
<p className="text-slate-400">
Manage your Ethos Guild profile, portfolio, and services
</p>
</div>
{/* Profile Section */}
<Card className="bg-slate-900/50 border-slate-800">
<CardHeader>
<CardTitle className="text-white">
Profile Information
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label className="text-white">Bio</Label>
<Textarea
value={profile.bio || ""}
onChange={(e) =>
setProfile({ ...profile, bio: e.target.value })
}
placeholder="Tell us about yourself, your musical style, and experience..."
className="bg-slate-800 border-slate-700 h-24"
/>
</div>
<div className="space-y-2">
<Label className="text-white">Portfolio URL</Label>
<Input
value={profile.portfolio_url || ""}
onChange={(e) =>
setProfile({
...profile,
portfolio_url: e.target.value,
})
}
placeholder="https://yourportfolio.com"
type="url"
className="bg-slate-800 border-slate-700"
/>
</div>
<label className="flex items-center gap-2 p-3 rounded-lg bg-slate-800/50 border border-slate-700 cursor-pointer">
<Checkbox
checked={profile.for_hire}
onCheckedChange={(checked) =>
setProfile({ ...profile, for_hire: checked as boolean })
}
className="border-slate-600"
/>
<span className="text-sm text-slate-300">
I'm available for commissions
</span>
</label>
</CardContent>
</Card>
{/* Skills Section */}
<Card className="bg-slate-900/50 border-slate-800">
<CardHeader>
<CardTitle className="text-white">Skills</CardTitle>
<CardDescription>
Select the skills you specialize in
</CardDescription>
</CardHeader>
<CardContent>
<div className="grid grid-cols-2 md:grid-cols-3 gap-3">
{SKILLS.map((skill) => (
<label
key={skill}
className="flex items-center gap-2 p-2 rounded-lg bg-slate-800/50 border border-slate-700 cursor-pointer hover:border-slate-600 transition"
>
<Checkbox
checked={profile.skills.includes(skill)}
onCheckedChange={() => toggleSkill(skill)}
className="border-slate-600"
/>
<span className="text-sm text-slate-300">{skill}</span>
</label>
))}
</div>
</CardContent>
</Card>
{/* Services & Pricing */}
{profile.for_hire && (
<Card className="bg-slate-900/50 border-slate-800">
<CardHeader>
<CardTitle className="text-white">
Services & Pricing
</CardTitle>
<CardDescription>
Set your prices for custom services. Leave blank if you
prefer "Contact for Quote"
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="space-y-2">
<Label className="text-white">Custom Track ($)</Label>
<Input
type="number"
value={profile.price_list?.track_custom || ""}
onChange={(e) =>
setProfile({
...profile,
price_list: {
...profile.price_list,
track_custom: Number(e.target.value) || null,
},
})
}
placeholder="500"
className="bg-slate-800 border-slate-700"
min="0"
/>
<p className="text-xs text-slate-400">
Original music composition
</p>
</div>
<div className="space-y-2">
<Label className="text-white">SFX Pack ($)</Label>
<Input
type="number"
value={profile.price_list?.sfx_pack || ""}
onChange={(e) =>
setProfile({
...profile,
price_list: {
...profile.price_list,
sfx_pack: Number(e.target.value) || null,
},
})
}
placeholder="150"
className="bg-slate-800 border-slate-700"
min="0"
/>
<p className="text-xs text-slate-400">
Sound effects collection
</p>
</div>
<div className="space-y-2">
<Label className="text-white">Full Score ($)</Label>
<Input
type="number"
value={profile.price_list?.full_score || ""}
onChange={(e) =>
setProfile({
...profile,
price_list: {
...profile.price_list,
full_score: Number(e.target.value) || null,
},
})
}
placeholder="2000"
className="bg-slate-800 border-slate-700"
min="0"
/>
<p className="text-xs text-slate-400">
Complete game/film score
</p>
</div>
<div className="space-y-2">
<Label className="text-white">Day Rate ($)</Label>
<Input
type="number"
value={profile.price_list?.day_rate || ""}
onChange={(e) =>
setProfile({
...profile,
price_list: {
...profile.price_list,
day_rate: Number(e.target.value) || null,
},
})
}
placeholder="1500"
className="bg-slate-800 border-slate-700"
min="0"
/>
<p className="text-xs text-slate-400">
Hourly or daily rate for consulting
</p>
</div>
</div>
<div className="space-y-2">
<Label className="text-white">
Turnaround Time (days)
</Label>
<Input
type="number"
value={profile.turnaround_days || ""}
onChange={(e) =>
setProfile({
...profile,
turnaround_days:
Number(e.target.value) || undefined,
})
}
placeholder="5"
className="bg-slate-800 border-slate-700"
min="1"
/>
<p className="text-xs text-slate-400">
Typical delivery time for custom work
</p>
</div>
<label className="flex items-center gap-2 p-3 rounded-lg bg-slate-800/50 border border-slate-700 cursor-pointer">
<Checkbox
checked={profile.price_list?.contact_for_quote || false}
onCheckedChange={(checked) =>
setProfile({
...profile,
price_list: {
...profile.price_list,
contact_for_quote: checked as boolean,
},
})
}
className="border-slate-600"
/>
<span className="text-sm text-slate-300">
High-value projects (Enterprise clients): "Contact for
Quote"
</span>
</label>
</CardContent>
</Card>
)}
{/* Upload Track */}
<Card className="bg-slate-900/50 border-slate-800">
<CardHeader>
<CardTitle className="text-white flex items-center gap-2">
<Music className="h-5 w-5" />
Upload Track
</CardTitle>
<CardDescription>
Add a new track to your portfolio
</CardDescription>
</CardHeader>
<CardContent>
<Button
onClick={() => setUploadModalOpen(true)}
className="bg-gradient-to-r from-pink-600 to-purple-600 hover:from-pink-700 hover:to-purple-700"
>
<Upload className="h-4 w-4 mr-2" />
Upload New Track
</Button>
</CardContent>
</Card>
{/* Verification Section */}
<Card className="bg-slate-900/50 border-slate-800">
<CardHeader>
<CardTitle className="text-white flex items-center gap-2">
<CheckCircle className="h-5 w-5" />
Ethos Guild Verification
</CardTitle>
<CardDescription>
Get verified to unlock commercial licensing opportunities
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
{profile.verified ? (
<div className="p-4 bg-green-500/10 border border-green-500/20 rounded-lg flex items-start gap-3">
<CheckCircle className="h-5 w-5 text-green-500 flex-shrink-0 mt-0.5" />
<div>
<p className="font-semibold text-green-400">
Verified Artist
</p>
<p className="text-sm text-green-300 mt-1">
You are a verified Ethos Guild artist. You can upload
tracks and accept commercial licensing requests.
</p>
</div>
</div>
) : verificationStatus.status === "pending" ? (
<div className="p-4 bg-yellow-500/10 border border-yellow-500/20 rounded-lg flex items-start gap-3">
<Clock className="h-5 w-5 text-yellow-500 flex-shrink-0 mt-0.5" />
<div>
<p className="font-semibold text-yellow-400">
Pending Review
</p>
<p className="text-sm text-yellow-300 mt-1">
Your verification request is under review. We'll email
you when there's an update.
</p>
{verificationStatus.submitted_at && (
<p className="text-xs text-yellow-300/70 mt-2">
Submitted:{" "}
{new Date(
verificationStatus.submitted_at,
).toLocaleDateString()}
</p>
)}
</div>
</div>
) : verificationStatus.status === "rejected" ? (
<div className="p-4 bg-red-500/10 border border-red-500/20 rounded-lg">
<p className="font-semibold text-red-400">
Application Rejected
</p>
{verificationStatus.rejection_reason && (
<p className="text-sm text-red-300 mt-2">
{verificationStatus.rejection_reason}
</p>
)}
<p className="text-sm text-red-300 mt-2">
You can resubmit with updates to your portfolio or
qualifications.
</p>
</div>
) : (
<>
<div className="space-y-2">
<Label className="text-white">
Application Notes (optional)
</Label>
<Textarea
value={submissionNotes}
onChange={(e) => setSubmissionNotes(e.target.value)}
placeholder="Tell us about your experience, achievements, and why you'd like to join the Ethos Guild..."
className="bg-slate-800 border-slate-700 h-24"
/>
</div>
<div className="space-y-2">
<Label className="text-white">
Portfolio Links (one per line)
</Label>
<Textarea
value={portfolioLinks}
onChange={(e) => setPortfolioLinks(e.target.value)}
placeholder="https://yourportfolio.com&#10;https://soundcloud.com/yourprofile&#10;https://example.com"
className="bg-slate-800 border-slate-700 h-24"
/>
</div>
<Button
onClick={handleSubmitVerification}
disabled={isSubmittingVerification}
className="w-full bg-gradient-to-r from-pink-600 to-purple-600 hover:from-pink-700 hover:to-purple-700"
>
{isSubmittingVerification
? "Submitting..."
: "Submit for Verification"}
</Button>
</>
)}
</CardContent>
</Card>
{/* Save Button */}
<div className="flex gap-3">
<Button
onClick={handleSave}
disabled={saving}
className="bg-gradient-to-r from-pink-600 to-purple-600 hover:from-pink-700 hover:to-purple-700 flex-1"
>
{saving ? "Saving..." : "Save Settings"}
</Button>
</div>
</div>
</div>
<TrackUploadModal
open={uploadModalOpen}
onOpenChange={setUploadModalOpen}
onFileSelected={handleFileSelected}
/>
{/* Ecosystem License Modal (First Upload) */}
<EcosystemLicenseModal
open={showLicenseModal}
onAccept={handleAcceptEcosystemLicense}
onReject={handleRejectLicense}
isLoading={isAcceptingLicense}
/>
{/* Metadata Form Modal */}
{showMetadataForm && currentFile && (
<div className="fixed inset-0 bg-black/50 z-50 flex items-center justify-center p-4">
<Card className="bg-slate-900 border-slate-800 max-w-2xl w-full">
<CardHeader>
<CardTitle className="text-white">Track Details</CardTitle>
</CardHeader>
<CardContent>
<TrackMetadataForm
onSubmit={handleMetadataSubmit}
isLoading={false}
/>
</CardContent>
</Card>
</div>
)}
</div>
</EthosLayout>
</>
);
}