Initial commit: MOPC platform with Docker deployment setup

Full Next.js 15 platform with tRPC, Prisma, PostgreSQL, NextAuth.
Includes production Dockerfile (multi-stage, port 7600), docker-compose
with registry-based image pull, Gitea Actions CI workflow, nginx config
for portal.monaco-opc.com, deployment scripts, and DEPLOYMENT.md guide.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 13:41:32 +01:00
commit a606292aaa
290 changed files with 70691 additions and 0 deletions

View File

@@ -0,0 +1,90 @@
'use client'
import { useState, useEffect } from 'react'
import { cn, getInitials } from '@/lib/utils'
import { ClipboardList } from 'lucide-react'
type ProjectLogoProps = {
project: {
title: string
logoKey?: string | null
}
logoUrl?: string | null
size?: 'sm' | 'md' | 'lg'
fallback?: 'icon' | 'initials'
className?: string
}
const sizeClasses = {
sm: 'h-8 w-8',
md: 'h-10 w-10',
lg: 'h-16 w-16',
}
const iconSizeClasses = {
sm: 'h-4 w-4',
md: 'h-5 w-5',
lg: 'h-8 w-8',
}
const textSizeClasses = {
sm: 'text-xs',
md: 'text-sm',
lg: 'text-lg',
}
export function ProjectLogo({
project,
logoUrl,
size = 'md',
fallback = 'icon',
className,
}: ProjectLogoProps) {
const [imageError, setImageError] = useState(false)
const initials = getInitials(project.title)
// Reset error state when logoUrl changes
useEffect(() => {
setImageError(false)
}, [logoUrl])
const showImage = logoUrl && !imageError
if (showImage) {
return (
<div
className={cn(
'relative overflow-hidden rounded-lg bg-muted',
sizeClasses[size],
className
)}
>
<img
src={logoUrl}
alt={`${project.title} logo`}
className="h-full w-full object-cover"
onError={() => setImageError(true)}
/>
</div>
)
}
// Fallback
return (
<div
className={cn(
'flex items-center justify-center rounded-lg bg-muted',
sizeClasses[size],
className
)}
>
{fallback === 'icon' ? (
<ClipboardList className={cn('text-muted-foreground', iconSizeClasses[size])} />
) : (
<span className={cn('font-medium text-muted-foreground', textSizeClasses[size])}>
{initials}
</span>
)}
</div>
)
}