Phase 1 (Foundation): - Project restructure (presenton-main → backend/ + frontend/) - Database schema (8 new models, Alembic config, seed script) - Auth (Azure AD SSO + dev bypass, JWT sessions, AuthMiddleware) - RBAC (access_service, rbac_middleware, admin routers) - Audit logging (fire-and-forget, AuditMiddleware, admin router) - i18n (react-i18next with 5 namespace files) Phase 2 (Admin Panel & Client Management): - Admin panel shell (sidebar layout, role guard, 12 pages) - Redux admin slice with 18 async thunks - User management (role changes, deactivation) - Client management (CRUD, brand config, team management) - Brand config editor (colors, fonts, logos, voice rules) - Master deck upload & parser (PPTX → HTML → React pipeline) - Audit log viewer with filters and CSV/JSON export Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
180 lines
No EOL
9.6 KiB
TypeScript
180 lines
No EOL
9.6 KiB
TypeScript
import React from 'react'
|
|
import * as z from "zod";
|
|
import { ImageSchema, IconSchema } from '../defaultSchemes';
|
|
import { RemoteSvgIcon } from '@/app/hooks/useRemoteSvgIcon';
|
|
|
|
export const layoutId = 'bullet-with-icons-slide'
|
|
export const layoutName = 'Bullet with Icons'
|
|
export const layoutDescription = 'A bullets style slide with main content, supporting image, and bullet points with icons and descriptions.'
|
|
|
|
const bulletWithIconsSlideSchema = z.object({
|
|
title: z.string().min(3).max(40).default('Problem').meta({
|
|
description: "Main title of the slide",
|
|
}),
|
|
description: z.string().max(150).default('Businesses face challenges with outdated technology and rising costs, limiting efficiency and growth in competitive markets.').meta({
|
|
description: "Main description text explaining the problem or topic",
|
|
}),
|
|
image: ImageSchema.default({
|
|
__image_url__: 'https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80',
|
|
__image_prompt__: 'Business people analyzing documents and charts in office'
|
|
}).meta({
|
|
description: "Supporting image for the slide",
|
|
}),
|
|
bulletPoints: z.array(z.object({
|
|
title: z.string().min(2).max(60).meta({
|
|
description: "Bullet point title",
|
|
}),
|
|
description: z.string().min(10).max(100).meta({
|
|
description: "Bullet point description",
|
|
}),
|
|
icon: IconSchema,
|
|
})).min(1).max(3).default([
|
|
{
|
|
title: 'Inefficiency',
|
|
description: 'Businesses struggle to find digital tools that meet their needs, causing operational slowdowns.',
|
|
icon: {
|
|
__icon_url__: 'https://presenton-public.s3.ap-southeast-1.amazonaws.com/static/icons/bold/checks-bold.svg',
|
|
__icon_query__: 'warning alert inefficiency'
|
|
}
|
|
},
|
|
{
|
|
title: 'High Costs',
|
|
description: 'Outdated systems increase expenses, while small businesses struggle to expand their market reach.',
|
|
icon: {
|
|
__icon_url__: 'https://presenton-public.s3.ap-southeast-1.amazonaws.com/static/icons/bold/fediverse-logo-bold.svg',
|
|
__icon_query__: 'trending up costs chart'
|
|
}
|
|
}
|
|
]).meta({
|
|
description: "List of bullet points with icons and descriptions",
|
|
})
|
|
})
|
|
|
|
export const Schema = bulletWithIconsSlideSchema
|
|
|
|
export type BulletWithIconsSlideData = z.infer<typeof bulletWithIconsSlideSchema>
|
|
|
|
interface BulletWithIconsSlideLayoutProps {
|
|
data?: Partial<BulletWithIconsSlideData>
|
|
}
|
|
|
|
const BulletWithIconsSlideLayout: React.FC<BulletWithIconsSlideLayoutProps> = ({ data: slideData }) => {
|
|
const bulletPoints = slideData?.bulletPoints || []
|
|
|
|
return (
|
|
<>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<div
|
|
className="w-full rounded-sm max-w-[1280px] shadow-lg max-h-[720px] aspect-video bg-gradient-to-br from-gray-50 to-white relative z-20 mx-auto overflow-hidden"
|
|
style={{
|
|
fontFamily: 'var(--heading-font-family,Poppins)',
|
|
background: "var(--background-color,#ffffff)"
|
|
}}
|
|
>
|
|
{((slideData as any)?.__companyName__ || (slideData as any)?._logo_url__) && (
|
|
<div className="absolute top-0 left-0 right-0 px-8 sm:px-12 lg:px-20 pt-4">
|
|
<div className="flex items-center gap-4">
|
|
<div className="flex items-center gap-1">
|
|
|
|
{(slideData as any)?._logo_url__ && <img src={(slideData as any)?._logo_url__} alt="logo" className="w-6 h-6" />}
|
|
{(slideData as any)?.__companyName__ && <span className="text-sm sm:text-base font-semibold" style={{ color: 'var(--background-text, #111827)' }}>
|
|
{(slideData as any)?.__companyName__ || 'Company Name'}
|
|
</span>}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
|
|
{/* Main Content */}
|
|
<div className="flex flex-col h-full px-8 sm:px-12 lg:px-20 pt-12 pb-8">
|
|
{/* Title Section - Full Width */}
|
|
<div className="mb-8">
|
|
<h1 style={{ color: "var(--background-text, #111827)" }} className="text-4xl sm:text-5xl lg:text-6xl font-bold text-gray-900">
|
|
{slideData?.title || 'Problem'}
|
|
</h1>
|
|
</div>
|
|
|
|
{/* Content Container */}
|
|
<div className="flex flex-1">
|
|
{/* Left Section - Image with Grid Pattern */}
|
|
<div className="flex-1 relative">
|
|
{/* Grid Pattern Background */}
|
|
<div className="absolute top-0 left-0 w-full h-full">
|
|
<svg className="w-full h-full opacity-30" viewBox="0 0 200 200">
|
|
<defs>
|
|
<pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse">
|
|
<path d="M 20 0 L 0 0 0 20" fill="none" stroke="var(--primary-color, #9333ea)" strokeWidth="0.5" />
|
|
</pattern>
|
|
</defs>
|
|
<rect width="100%" height="100%" fill="url(#grid)" />
|
|
</svg>
|
|
</div>
|
|
|
|
{/* Image Container */}
|
|
<div className="relative z-10 h-full flex items-center justify-center p-4">
|
|
<div className="w-full max-w-md h-80 rounded-2xl overflow-hidden shadow-lg">
|
|
<img
|
|
src={slideData?.image?.__image_url__ || ''}
|
|
alt={slideData?.image?.__image_prompt__ || slideData?.title || ''}
|
|
className="w-full h-full object-cover"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Decorative Sparkle */}
|
|
<div style={{ color: "var(--primary-color,#9333ea)" }} className="absolute top-20 right-8 text-purple-600">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
|
<path d="M12 0l3.09 6.26L22 9l-6.91 2.74L12 18l-3.09-6.26L2 9l6.91-2.74L12 0z" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Right Section - Content */}
|
|
<div className="flex-1 flex flex-col justify-center pl-8 lg:pl-16">
|
|
{/* Description */}
|
|
<p style={{ color: "var(--background-text, #4b5563)" }} className="text-lg text-gray-700 leading-relaxed mb-8">
|
|
{slideData?.description || 'Businesses face challenges with outdated technology and rising costs, limiting efficiency and growth in competitive markets.'}
|
|
</p>
|
|
|
|
{/* Bullet Points */}
|
|
<div className="space-y-6">
|
|
{bulletPoints.map((bullet, index) => (
|
|
<div key={index} className="flex items-start space-x-4">
|
|
{/* Icon */}
|
|
<div style={{ background: "var(--primary-color,#9333ea)" }} className="flex-shrink-0 w-12 h-12 rounded-lg shadow-md flex items-center justify-center">
|
|
<RemoteSvgIcon
|
|
url={bullet.icon.__icon_url__}
|
|
strokeColor={"currentColor"}
|
|
className="w-6 h-6"
|
|
color="var(--primary-text, #ffffff)"
|
|
title={bullet.icon.__icon_query__}
|
|
/>
|
|
</div>
|
|
|
|
{/* Content */}
|
|
<div className="flex-1">
|
|
<h3 style={{ color: "var(--background-text, #111827)" }} className="text-xl font-semibold text-gray-900 mb-2">
|
|
{bullet.title}
|
|
</h3>
|
|
<div style={{ background: "var(--primary-color,#9333ea)" }} className="w-12 h-0.5 bg-purple-600 mb-3"></div>
|
|
<p style={{ color: "var(--background-text, #4b5563)" }} className="text-base text-gray-700 leading-relaxed">
|
|
{bullet.description}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default BulletWithIconsSlideLayout
|