import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react' import { createPortal } from 'react-dom' import { router, useForm, usePage } from '@inertiajs/react' import StudioLayout from '../../Layouts/StudioLayout' import RichTextEditor from '../../components/forum/RichTextEditor' import WorldMediaUploadField from '../../components/worlds/editor/WorldMediaUploadField' import DateTimePicker from '../../components/ui/DateTimePicker' import NovaSelect from '../../components/ui/NovaSelect' import { Checkbox } from '../../components/ui' // ── Minimal toast system ──────────────────────────────────────────────────── let _toastId = 0 function useToast() { const [toasts, setToasts] = useState([]) const push = useCallback((message, type = 'info') => { const id = ++_toastId setToasts((prev) => [...prev, { id, message, type }]) setTimeout(() => setToasts((prev) => prev.filter((t) => t.id !== id)), 5000) }, []) const dismiss = useCallback((id) => setToasts((prev) => prev.filter((t) => t.id !== id)), []) return { toasts, push, dismiss } } function ToastStack({ toasts, onDismiss }) { if (!toasts.length) return null return (
{toasts.map((t) => (
{t.type === 'success' ? '✓' : t.type === 'error' ? '✕' : 'ℹ'} {t.message}
))}
) } // ───────────────────────────────────────────────────────────────────────────── function SearchResultList({ items, onSelect, emptyLabel = 'No matches yet.' }) { if (!Array.isArray(items) || items.length === 0) { return
{emptyLabel}
} return (
{items.map((item) => ( ))}
) } function FieldError({ message }) { if (!message) return null return

{message}

} function normalizeNewTagName(value) { return String(value || '').replace(/\s+/g, ' ').trim().slice(0, 80) } function normalizeNewsTagKey(value) { return normalizeNewTagName(value).toLowerCase() } function parseNewsTagList(input) { return String(input || '') .split(/[\n,]+/) .map((item) => normalizeNewTagName(item)) .filter(Boolean) } function analyzePastedNewsTags(rawText, selectedKeys) { const parts = parseNewsTagList(rawText) const tagsToAdd = [] const skippedDuplicates = [] const skippedInvalid = [] for (const part of parts) { const normalized = normalizeNewTagName(part) const key = normalizeNewsTagKey(normalized) if (!normalized || !key) { skippedInvalid.push(String(part || '').trim()) continue } if (selectedKeys.includes(key) || tagsToAdd.some((item) => item.key === key)) { skippedDuplicates.push(normalized) continue } tagsToAdd.push({ key, name: normalized }) } return { parsedCount: parts.length, tagsToAdd, skippedDuplicates, skippedInvalid, } } function SectionCard({ eyebrow, title, description, actions, children, tone = 'default' }) { const toneClass = tone === 'feature' ? 'bg-[radial-gradient(circle_at_top_left,rgba(56,189,248,0.16),transparent_38%),linear-gradient(180deg,rgba(15,23,42,0.96),rgba(2,6,23,0.92))] shadow-[0_24px_70px_rgba(2,6,23,0.28)]' : 'bg-white/[0.03]' return (
{eyebrow ?

{eyebrow}

: null}

{title}

{description ?

{description}

: null}
{actions ?
{actions}
: null}
{children}
) } function NewsTagInputDialog({ open, preview, onClose, onConfirm }) { const backdropRef = useRef(null) useEffect(() => { if (!open) return undefined const handleKeyDown = (event) => { if (event.key === 'Escape') { onClose?.() } } window.addEventListener('keydown', handleKeyDown) return () => window.removeEventListener('keydown', handleKeyDown) }, [onClose, open]) if (!open || !preview) return null return createPortal(
{ if (event.target === backdropRef.current) { onClose?.() } }} role="presentation" >

Tag Import

Add {preview.tagsToAdd.length} pasted tag{preview.tagsToAdd.length === 1 ? '' : 's'}?

Parsed {preview.parsedCount} item{preview.parsedCount === 1 ? '' : 's'} from your paste. Confirm before adding them to the article.

{(preview.skippedDuplicates.length > 0 || preview.skippedInvalid.length > 0) ? (
{preview.skippedDuplicates.length > 0 ? `${preview.skippedDuplicates.length} duplicate tag${preview.skippedDuplicates.length === 1 ? '' : 's'} ignored.` : ''} {preview.skippedDuplicates.length > 0 && preview.skippedInvalid.length > 0 ? ' ' : ''} {preview.skippedInvalid.length > 0 ? `${preview.skippedInvalid.length} invalid tag${preview.skippedInvalid.length === 1 ? '' : 's'} ignored.` : ''}
) : null}

Tags to add

{preview.tagsToAdd.map((tag) => ( {tag.name} ))}
, document.body, ) } function NewsTagInput({ options, selectedIds, newTagNames, onSelectedIdsChange, onNewTagNamesChange, manageUrl, maxNewTags = NEWS_NEW_TAG_LIMIT }) { const [query, setQuery] = useState('') const [isOpen, setIsOpen] = useState(false) const [highlightedIndex, setHighlightedIndex] = useState(-1) const [error, setError] = useState('') const [pastePreview, setPastePreview] = useState(null) const selectedIdSet = useMemo(() => new Set((selectedIds || []).map((id) => Number(id))), [selectedIds]) const existingTags = useMemo(() => (Array.isArray(options) ? options : []).filter((tag) => selectedIdSet.has(Number(tag.id))), [options, selectedIdSet]) const pendingTags = useMemo(() => (Array.isArray(newTagNames) ? newTagNames : []).map((name) => ({ key: normalizeNewsTagKey(name), name: normalizeNewTagName(name) })).filter((tag) => tag.key), [newTagNames]) const combinedNames = useMemo(() => [...existingTags.map((tag) => String(tag.name || '')), ...pendingTags.map((tag) => tag.name)], [existingTags, pendingTags]) const combinedKeys = useMemo(() => combinedNames.map((name) => normalizeNewsTagKey(name)).filter(Boolean), [combinedNames]) const newTagLimit = Math.max(0, Number(maxNewTags || NEWS_NEW_TAG_LIMIT)) const remainingNewTagSlots = Math.max(0, newTagLimit - pendingTags.length) const normalizedQuery = useMemo(() => normalizeNewTagName(query), [query]) const syncNames = useCallback((names) => { const seen = new Set() const nextIds = [] const nextNewNames = [] names.forEach((rawName) => { const nextName = normalizeNewTagName(rawName) const key = normalizeNewsTagKey(nextName) if (!key || seen.has(key)) { return } seen.add(key) const existing = (Array.isArray(options) ? options : []).find((tag) => normalizeNewsTagKey(tag.name) === key) if (existing) { nextIds.push(Number(existing.id)) return } nextNewNames.push(nextName) }) onSelectedIdsChange(nextIds) onNewTagNamesChange(nextNewNames) }, [onNewTagNamesChange, onSelectedIdsChange, options]) const exactMatch = useMemo(() => { if (!normalizedQuery) return null return (Array.isArray(options) ? options : []).find((tag) => normalizeNewsTagKey(tag.name) === normalizeNewsTagKey(normalizedQuery)) || null }, [normalizedQuery, options]) const suggestions = useMemo(() => { const source = Array.isArray(options) ? options : [] const lowerQuery = normalizeNewsTagKey(query) return source .filter((tag) => !selectedIdSet.has(Number(tag.id))) .filter((tag) => !pendingTags.some((pendingTag) => pendingTag.key === normalizeNewsTagKey(tag.name))) .filter((tag) => (lowerQuery === '' ? true : normalizeNewsTagKey(tag.name).includes(lowerQuery))) .slice(0, 8) }, [options, pendingTags, query, selectedIdSet]) useEffect(() => { setHighlightedIndex(suggestions.length > 0 ? 0 : -1) }, [suggestions]) const addCandidate = useCallback((rawName) => { const nextName = normalizeNewTagName(rawName) if (!nextName) { return } const key = normalizeNewsTagKey(nextName) if (combinedKeys.includes(key)) { setError('Duplicate tag') return } if (pendingTags.length >= newTagLimit) { setError(`You can add up to ${newTagLimit} new tags per article.`) return } setError('') syncNames([...combinedNames, nextName]) setQuery('') setIsOpen(false) }, [combinedKeys, combinedNames, newTagLimit, pendingTags.length, syncNames]) const removeExisting = useCallback((tagId) => { onSelectedIdsChange((selectedIds || []).filter((id) => Number(id) !== Number(tagId))) }, [onSelectedIdsChange, selectedIds]) const removePending = useCallback((tagName) => { onNewTagNamesChange((newTagNames || []).filter((name) => normalizeNewsTagKey(name) !== normalizeNewsTagKey(tagName))) }, [newTagNames, onNewTagNamesChange]) const handlePaste = useCallback((event) => { const raw = event.clipboardData?.getData('text') if (!raw) return const parts = parseNewsTagList(raw) if (parts.length <= 1) return event.preventDefault() const preview = analyzePastedNewsTags(raw, combinedKeys) if (preview.tagsToAdd.length === 0) { setError('No new tags found in pasted text') return } if (preview.tagsToAdd.length > remainingNewTagSlots) { setError(`You can only add ${remainingNewTagSlots} more new tag${remainingNewTagSlots === 1 ? '' : 's'} to this article.`) return } setError('') setPastePreview(preview) }, [combinedKeys, remainingNewTagSlots]) const handleConfirmPaste = useCallback(() => { if (!pastePreview) return syncNames([...combinedNames, ...pastePreview.tagsToAdd.map((tag) => tag.name)]) setPastePreview(null) setQuery('') setIsOpen(false) }, [combinedNames, pastePreview, syncNames]) const handleKeyDown = useCallback((event) => { if (event.key === 'Escape') { setIsOpen(false) return } if (event.key === 'Backspace' && query.length === 0 && combinedNames.length > 0) { const lastPending = pendingTags[pendingTags.length - 1] if (lastPending) { removePending(lastPending.name) return } const lastExisting = existingTags[existingTags.length - 1] if (lastExisting) { removeExisting(lastExisting.id) } return } if (event.key === 'ArrowDown') { event.preventDefault() if (suggestions.length === 0) return setIsOpen(true) setHighlightedIndex((current) => Math.min(current + 1, suggestions.length - 1)) return } if (event.key === 'ArrowUp') { event.preventDefault() if (suggestions.length === 0) return setIsOpen(true) setHighlightedIndex((current) => Math.max(current - 1, 0)) return } if (!['Enter', ',', 'Tab'].includes(event.key)) { return } if (event.key === 'Tab' && !isOpen && normalizedQuery === '') { return } event.preventDefault() if ((event.key === 'Enter' || event.key === 'Tab') && isOpen && highlightedIndex >= 0 && suggestions[highlightedIndex]) { addCandidate(suggestions[highlightedIndex].name) return } if (!normalizedQuery) { return } if (exactMatch) { addCandidate(exactMatch.name) return } addCandidate(normalizedQuery) }, [addCandidate, combinedNames.length, exactMatch, existingTags, highlightedIndex, isOpen, normalizedQuery, pendingTags, query.length, removeExisting, removePending, suggestions]) return ( <>
Selected tags
Attach article topics with the same chip-based flow used on artwork tags.
{manageUrl ? Manage tags : null}
{existingTags.length === 0 && pendingTags.length === 0 ? No tags selected : null} {existingTags.map((tag) => ( {tag.name} ))} {pendingTags.map((tag) => ( {tag.name} New ))}
{remainingNewTagSlots === 0 ? `New tag limit reached: up to ${newTagLimit} new tags can be staged for one article.` : `${pendingTags.length}/${newTagLimit} new tags staged. ${remainingNewTagSlots} slot${remainingNewTagSlots === 1 ? '' : 's'} left.`}
{isOpen ? (
    {suggestions.length > 0 ? suggestions.map((tag, index) => { const active = index === highlightedIndex return (
  • { event.preventDefault() addCandidate(tag.name) }} > {tag.name}
  • ) }) : (
  • No suggestions
  • )}
) : null}
{error || `Type and press Enter, comma, or Tab to add. Paste a comma-separated list to review multiple tags. Up to ${newTagLimit} new tags can be staged.`} {existingTags.length + pendingTags.length} selected
setPastePreview(null)} onConfirm={handleConfirmPaste} /> ) } function RelationCard({ relation, index, onChange, onRemove, onSearch, results, relationTypeOptions }) { return (
Type onChange(index, { ...relation, entity_type: val, entity_id: '', preview: null, query: '' })} options={relationTypeOptions} searchable={false} />
{relation.preview ? (
Linked: {relation.preview.title}
{relation.preview.subtitle ?
{relation.preview.subtitle}
: null}
) : null}
onChange(index, { ...relation, entity_id: item.id, preview: item, query: item.title })} emptyLabel="Search to attach a related entity." />
) } function stripHtml(value) { return String(value || '').replace(/<[^>]*>/g, ' ').replace(/\s+/g, ' ').trim() } const NEWS_NEW_TAG_LIMIT = 12 function slugifyNewsTitle(value) { return String(value || '') .normalize('NFKD') .replace(/[\u0300-\u036f]/g, '') .toLowerCase() .replace(/[^a-z0-9]+/g, '-') .replace(/^-+|-+$/g, '') .slice(0, 180) } function selectOptionsFromValues(options, emptyLabel = null) { const base = Array.isArray(options) ? options.map((option) => ({ value: String(option.value ?? option.id), label: option.label ?? option.name, })) : [] return emptyLabel ? [{ value: '', label: emptyLabel }, ...base] : base } function buildSubmitPayload(data) { return { title: String(data.title || '').trim(), slug: String(data.slug || '').trim(), excerpt: String(data.excerpt || ''), content: String(data.content || ''), cover_image: String(data.cover_image || '').trim(), type: String(data.type || ''), category_id: data.category_id === '' || data.category_id == null ? null : Number(data.category_id), author_id: data.author_id === '' || data.author_id == null ? null : Number(data.author_id), editorial_status: String(data.editorial_status || ''), published_at: data.published_at ? String(data.published_at) : null, is_featured: Boolean(data.is_featured), is_pinned: Boolean(data.is_pinned), comments_enabled: Boolean(data.comments_enabled), tag_ids: Array.isArray(data.tag_ids) ? data.tag_ids.map((id) => Number(id)).filter(Boolean) : [], new_tag_names: Array.isArray(data.new_tag_names) ? data.new_tag_names.map((name) => normalizeNewTagName(name)).filter(Boolean) : [], meta_title: String(data.meta_title || ''), meta_description: String(data.meta_description || ''), meta_keywords: String(data.meta_keywords || ''), canonical_url: String(data.canonical_url || '').trim(), og_title: String(data.og_title || ''), og_description: String(data.og_description || ''), og_image: String(data.og_image || '').trim(), relations: Array.isArray(data.relations) ? data.relations.map((relation) => ({ entity_type: String(relation.entity_type || '').trim(), entity_id: relation.entity_id === '' || relation.entity_id == null ? '' : Number(relation.entity_id), context_label: String(relation.context_label || '').trim(), })) : [], } } function hasRequiredCategory(categoryId) { if (categoryId === '' || categoryId == null) { return false } return Number(categoryId) > 0 } function getDraftValue(source, key, fallback = '') { if (source && Object.prototype.hasOwnProperty.call(source, key)) { const val = source[key] return val != null ? val : fallback } return fallback } function buildInitialFormData(article, defaultAuthor, typeOptions, oldInput = {}) { return { title: String(getDraftValue(oldInput, 'title', article.title || '')), slug: String(getDraftValue(oldInput, 'slug', article.slug || '')), excerpt: String(getDraftValue(oldInput, 'excerpt', article.excerpt || '')), content: String(getDraftValue(oldInput, 'content', article.content || '')), cover_image: String(getDraftValue(oldInput, 'cover_image', article.cover_image || '')), type: String(getDraftValue(oldInput, 'type', article.type || (typeOptions?.[0]?.value || 'announcement'))), category_id: String(getDraftValue(oldInput, 'category_id', article.category_id ? String(article.category_id) : '')), author_id: getDraftValue(oldInput, 'author_id', article.author_id || defaultAuthor?.id || ''), editorial_status: String(getDraftValue(oldInput, 'editorial_status', article.editorial_status || 'draft')), published_at: String(getDraftValue(oldInput, 'published_at', article.published_at ? String(article.published_at).slice(0, 16) : '')), is_featured: parseBooleanish(getDraftValue(oldInput, 'is_featured', Boolean(article.is_featured))), is_pinned: parseBooleanish(getDraftValue(oldInput, 'is_pinned', Boolean(article.is_pinned))), comments_enabled: parseBooleanish(getDraftValue(oldInput, 'comments_enabled', article.id ? Boolean(article.comments_enabled) : true)), tag_ids: Array.isArray(getDraftValue(oldInput, 'tag_ids', article.tag_ids)) ? getDraftValue(oldInput, 'tag_ids', article.tag_ids) : [], new_tag_names: Array.isArray(getDraftValue(oldInput, 'new_tag_names', [])) ? getDraftValue(oldInput, 'new_tag_names', []) : [], meta_title: String(getDraftValue(oldInput, 'meta_title', article.meta_title || '')), meta_description: String(getDraftValue(oldInput, 'meta_description', article.meta_description || '')), meta_keywords: String(getDraftValue(oldInput, 'meta_keywords', article.meta_keywords || '')), canonical_url: String(getDraftValue(oldInput, 'canonical_url', article.canonical_url || '')), og_title: String(getDraftValue(oldInput, 'og_title', article.og_title || '')), og_description: String(getDraftValue(oldInput, 'og_description', article.og_description || '')), og_image: String(getDraftValue(oldInput, 'og_image', article.og_image || '')), relations: Array.isArray(getDraftValue(oldInput, 'relations', article.relations)) ? getDraftValue(oldInput, 'relations', article.relations).map((relation) => ({ entity_type: relation.entity_type || 'group', entity_id: relation.entity_id || '', context_label: relation.context_label || '', preview: relation.preview || null, query: relation.preview?.title || '', })) : [], } } const NEWS_EDITOR_TABS = [ { id: 'content', label: 'Main content', description: 'Headline, excerpt, cover, and article body.', }, { id: 'publishing', label: 'Publishing', description: 'Category, author, scheduling, and visibility.', }, { id: 'discoverability', label: 'Social + SEO', description: 'Tags, metadata, and social preview fields.', }, { id: 'connections', label: 'Connections', description: 'Related entities and structured import.', }, ] function parseBooleanish(value) { if (typeof value === 'boolean') return value if (typeof value === 'number') return value !== 0 const normalized = String(value || '').trim().toLowerCase() if (['1', 'true', 'yes', 'on'].includes(normalized)) return true if (['0', 'false', 'no', 'off'].includes(normalized)) return false return Boolean(value) } function normalizeImportedStringArray(value) { if (Array.isArray(value)) { return value.map((item) => String(item || '').trim()).filter(Boolean) } return String(value || '') .split(/[\n,]+/) .map((item) => item.trim()) .filter(Boolean) } function normalizeImportedTagList(value) { if (!Array.isArray(value)) { return normalizeImportedStringArray(value) } return value .map((item) => { if (typeof item === 'string' || typeof item === 'number') { return normalizeNewTagName(item) } if (item && typeof item === 'object') { return normalizeNewTagName(item.name ?? item.title ?? item.label ?? item.slug ?? '') } return normalizeNewTagName(item) }) .filter(Boolean) } function parseStructuredNewsImport(rawValue, context) { const parsed = JSON.parse(String(rawValue || '').trim()) const categoryOptions = Array.isArray(context.categoryOptions) ? context.categoryOptions : [] const tagOptions = Array.isArray(context.tagOptions) ? context.tagOptions : [] const typeOptions = Array.isArray(context.typeOptions) ? context.typeOptions : [] const statusOptions = Array.isArray(context.statusOptions) ? context.statusOptions : [] const next = {} const applied = [] const applyString = (inputKey, formKey = inputKey) => { if (parsed[inputKey] == null) return next[formKey] = String(parsed[inputKey]) applied.push(formKey) } const applyBoolean = (inputKey, formKey = inputKey) => { if (parsed[inputKey] == null) return next[formKey] = parseBooleanish(parsed[inputKey]) applied.push(formKey) } applyString('title') applyString('slug') applyString('excerpt') applyString('content') applyString('cover_image') applyString('published_at') applyString('meta_title') applyString('meta_description') applyString('meta_keywords') applyString('canonical_url') applyString('og_title') applyString('og_description') applyString('og_image') if (parsed.type != null) { const requested = String(parsed.type).trim().toLowerCase() const match = typeOptions.find((option) => String(option.value ?? option.id ?? '').trim().toLowerCase() === requested || String(option.label ?? option.name ?? '').trim().toLowerCase() === requested) next.type = match ? String(match.value ?? match.id ?? '') : String(parsed.type) applied.push('type') } if (parsed.editorial_status != null) { const requested = String(parsed.editorial_status).trim().toLowerCase() const match = statusOptions.find((option) => String(option.value ?? option.id ?? '').trim().toLowerCase() === requested || String(option.label ?? option.name ?? '').trim().toLowerCase() === requested) next.editorial_status = match ? String(match.value ?? match.id ?? '') : String(parsed.editorial_status) applied.push('editorial_status') } if (parsed.category_id != null || parsed.category != null || parsed.category_slug != null) { const requested = String(parsed.category_id ?? parsed.category_slug ?? parsed.category).trim().toLowerCase() const match = categoryOptions.find((option) => [option.id, option.value, option.slug, option.name, option.label] .map((candidate) => String(candidate ?? '').trim().toLowerCase()) .includes(requested)) if (match) { next.category_id = String(match.id ?? match.value ?? '') applied.push('category_id') } } if (parsed.author_id != null) { next.author_id = String(parsed.author_id) applied.push('author_id') } applyBoolean('is_featured') applyBoolean('is_pinned') applyBoolean('comments_enabled') const tagNames = normalizeImportedTagList(parsed.tags ?? parsed.tag_names) const tagIds = Array.isArray(parsed.tag_ids) ? parsed.tag_ids.map((item) => Number(item)).filter(Boolean) : [] if (tagNames.length > 0 || tagIds.length > 0) { const existingIds = new Set(tagIds) const newTagNames = [] tagNames.forEach((tagName) => { const normalized = normalizeNewsTagKey(tagName) const match = tagOptions.find((option) => normalizeNewsTagKey(option.name) === normalized) if (match) { existingIds.add(Number(match.id)) } else { newTagNames.push(normalizeNewTagName(tagName)) } }) next.tag_ids = Array.from(existingIds) next.new_tag_names = newTagNames applied.push('tag_ids', 'new_tag_names') } if (Array.isArray(parsed.relations)) { next.relations = parsed.relations .map((relation) => ({ entity_type: String(relation?.entity_type || relation?.type || 'group').trim(), entity_id: relation?.entity_id == null || relation?.entity_id === '' ? '' : Number(relation.entity_id), context_label: String(relation?.context_label || relation?.label || '').trim(), preview: null, query: String(relation?.query || relation?.title || '').trim(), })) .filter((relation) => relation.entity_type) applied.push('relations') } return { next, applied, authorQuery: parsed.author_query != null ? String(parsed.author_query) : (parsed.author_name != null ? String(parsed.author_name) : null), } } function JsonImportDialog({ open, value, error, onChange, onClose, onApply, newTagLimit = NEWS_NEW_TAG_LIMIT }) { const backdropRef = useRef(null) const [activeImportTab, setActiveImportTab] = useState('input') const [copyFeedback, setCopyFeedback] = useState('') const importTabs = [ { id: 'input', label: 'Input', description: 'Paste JSON and apply it to the editor.' }, { id: 'structure', label: 'Structure example', description: 'A working example of the expected payload.' }, { id: 'docs', label: 'Documentation', description: 'Field notes and mapping rules.' }, { id: 'prompts', label: 'AI prompts', description: 'Prompt examples for generating structured news.' }, ] const structureExample = { title: 'Sample News Title', slug: 'sample-news-title', excerpt: 'This is a sample news excerpt that demonstrates the structured import format.', content: '

This is sample news content written in HTML.

You can replace it with your own editorial copy.

', cover_image: 'sample-news-cover.webp', type: 'Announcement', category_id: 1, category: 'General', category_slug: 'general', editorial_status: 'draft', published_at: '2026-05-03 09:00:00', author_id: 1, author_name: 'Sample Author', is_featured: false, is_pinned: false, comments_enabled: true, tags: [ { name: 'Sample Tag', slug: 'sample-tag' }, { name: 'News Import', slug: 'news-import' }, ], tag_names: ['Sample Tag', 'News Import'], tag_ids: [], relations: { related_articles: [], related_artworks: [], related_users: [], source_urls: ['https://example.com/sample-news-source'], }, meta_title: 'Sample News Title - Skinbase Example', meta_description: 'This is a sample news meta description for the structured import example.', meta_keywords: 'sample news, structured import, editorial example', canonical_url: 'https://skinbase.org/news/sample-news-title', og_title: 'Sample News Title', og_description: 'This is a sample news OG description for the structured import example.', og_image: 'sample-news-cover.webp', } const newsJsonSchemaSummary = `You are generating a Skinbase news article JSON object. Return only valid JSON. No markdown, no commentary, no code fences. Required fields: - title: string - content: HTML string Recommended fields: - slug: SEO slug - excerpt: short summary - cover_image: image path or URL - type: one of the editor's news types - category_id: preferred category id - editorial_status: draft|review|scheduled|published|archived - published_at: YYYY-MM-DD HH:MM:SS - author_id or author_name - comments_enabled: boolean - is_featured: boolean - is_pinned: boolean - meta_title, meta_description, meta_keywords - canonical_url - og_title, og_description, og_image - tags: array of strings or objects with name/title/label/slug - tag_names: array of strings - tag_ids: array of ids if you already know them - relations: array of objects with entity_type, entity_id, context_label Rules: - Use HTML paragraphs in content. - Keep excerpt concise. - Prefer category_id when you know it; otherwise include category/category_slug for matching. - If a tag is an object, keep the name field readable. - If source URLs are available, include them in a relations-related field or source notes field. ` const aiPromptExamples = [ { title: 'Blog-to-news generator', prompt: `${newsJsonSchemaSummary} Transform the following article into a news payload for the editor. - Preserve the factual meaning and the editorial tone. - Choose a concise title and an SEO-friendly slug. - Write content as HTML paragraphs. - Include 8 to 14 highly relevant tags. - Include category_id when possible, otherwise use category_slug or category to help matching. - Fill meta_title, meta_description, canonical_url, og_title, og_description, and og_image when available. - Make comments_enabled true unless the source clearly says otherwise. Input article text: {{ARTICLE_TEXT}}`, }, { title: 'Release announcement prompt', prompt: `${newsJsonSchemaSummary} Create a structured release announcement JSON object. - Use a direct product/news style headline. - Keep the excerpt short and easy to scan. - Write the content as 3 to 6 HTML paragraphs. - Include a realistic published_at timestamp in local time. - Set editorial_status to published if the article is already live, otherwise draft. - Set comments_enabled to true unless the release is sensitive or comments should be disabled. - Add 8 to 12 tags. Release notes: {{RELEASE_NOTES}}`, }, { title: 'Migration import prompt', prompt: `${newsJsonSchemaSummary} Convert the source article into Skinbase news JSON. - Preserve the factual content and keep the article structure readable. - Return only JSON. - Normalize tags into an array of objects with name and slug. - If the source contains article links, place them in a source_urls field inside the relations object. - If the source provides an author, category, or publish date, map those into the matching editor fields. - Use sensible defaults for any missing metadata. Source article: {{SOURCE_ARTICLE}}`, }, ] function tabButtonClass(active) { return `flex-1 rounded-2xl border px-4 py-3 text-left transition ${active ? 'border-sky-300/25 bg-sky-400/10 text-white' : 'border-white/10 bg-white/[0.03] text-slate-400 hover:border-white/20 hover:bg-white/[0.05] hover:text-slate-200'}` } const copyText = async (text, label) => { try { await navigator.clipboard.writeText(String(text)) setCopyFeedback(`${label} copied`) window.setTimeout(() => setCopyFeedback(''), 1800) } catch (copyError) { setCopyFeedback('Copy failed') window.setTimeout(() => setCopyFeedback(''), 1800) } } useEffect(() => { if (!open) return undefined const handleKeyDown = (event) => { if (event.key === 'Escape') { onClose?.() } } window.addEventListener('keydown', handleKeyDown) return () => window.removeEventListener('keydown', handleKeyDown) }, [onClose, open]) if (!open) return null return createPortal(
{ if (event.target === backdropRef.current) { onClose?.() } }} role="presentation" >

Structured import

Paste article JSON

Use this for migrations, AI-assisted drafting, or bulk handoff from another editorial system. Matching fields are applied directly to the editor.

{importTabs.map((tab) => ( ))}
{activeImportTab === 'input' ? (