feat(frontend): add posting compose component suite

新增了发帖相关的完整组件模块:包括顶部导航栏ComposeHeader、正文编辑区ComposeDocument,以及发布设置栏ComposeContextBar,同时添加了vite依赖缓存配置文件。
This commit is contained in:
2026-08-07 17:45:50 +08:00
parent 94f6a9666b
commit 383440ed5b
12 changed files with 725 additions and 181 deletions

View File

@@ -0,0 +1,8 @@
{
"hash": "de7e4cff",
"configHash": "9a7296da",
"lockfileHash": "e3b0c442",
"browserHash": "8c168d3c",
"optimized": {},
"chunks": {}
}

3
.vite/deps/package.json Normal file
View File

@@ -0,0 +1,3 @@
{
"type": "module"
}

View File

@@ -91,17 +91,17 @@ switch ($Target) {
'dev' { 'dev' {
$root = (Get-Location).Path $root = (Get-Location).Path
Write-Host '' Write-Host ''
Write-Host '[dev] 前端热更新: http://localhost:5173' -ForegroundColor Green Write-Host '[dev] 前端开发 : http://localhost:5173 (Vite HMR)' -ForegroundColor Green
Write-Host '[dev] 后端 API : http://localhost:3000' -ForegroundColor Green Write-Host '[dev] 后端 API : http://localhost:3000 (Go)' -ForegroundColor Green
Write-Host '[dev] 后台管理 : http://localhost:3000/admin/dashboard' -ForegroundColor Green Write-Host '[dev] 提示 : 请访问 5173 端口Vite 会自动代理 API 到 3000' -ForegroundColor Yellow
Write-Host '[dev] 正在新窗口启动 Go 后端...' -ForegroundColor Cyan Write-Host '[dev] 正在新窗口启动 Go 后端 (仅 API)...' -ForegroundColor Cyan
Start-Process powershell -ArgumentList @( Start-Process powershell -ArgumentList @(
'-NoExit', '-Command', '-NoExit', '-Command',
"Set-Location '$root'; Write-Host '[backend] Go API on :3000' -ForegroundColor Cyan; go run $MainPkg" "Set-Location '$root'; Write-Host '[backend] Go API on :3000' -ForegroundColor Cyan; go run $MainPkg --dev"
) | Out-Null ) | Out-Null
Start-Sleep -Seconds 2 Start-Sleep -Seconds 2
Push-Location frontend Push-Location frontend
90| try { try {
if (-not (Test-Path node_modules)) { npm install } if (-not (Test-Path node_modules)) { npm install }
npm run dev npm run dev
} finally { } finally {

View File

@@ -30,6 +30,8 @@ type Config struct {
LogFile string LogFile string
// 系统服务控制动作install|uninstall|start|stop|restart|status空表示正常运行 // 系统服务控制动作install|uninstall|start|stop|restart|status空表示正常运行
ServiceAction string ServiceAction string
// 开发模式:后端代理前端请求到 Vite 开发服务器(非内嵌静态资源)
DevMode bool
} }
// Parse 解析命令行与 app.ini并初始化数据目录 // Parse 解析命令行与 app.ini并初始化数据目录
@@ -42,6 +44,7 @@ func Parse() (*Config, error) {
dataFlag := flag.String("data", "", "数据存储目录(覆盖配置文件)") dataFlag := flag.String("data", "", "数据存储目录(覆盖配置文件)")
jwtFlag := flag.String("jwt-secret", "", "JWT 签名密钥(覆盖配置文件;留空则自动生成)") jwtFlag := flag.String("jwt-secret", "", "JWT 签名密钥(覆盖配置文件;留空则自动生成)")
serviceFlag := flag.String("service", "", "系统服务控制install|uninstall|start|stop|restart|status") serviceFlag := flag.String("service", "", "系统服务控制install|uninstall|start|stop|restart|status")
devFlag := flag.Bool("dev", false, "开发模式:代理前端到 Vite 开发服务器(默认 http://localhost:5173")
flag.Parse() flag.Parse()
action := strings.ToLower(strings.TrimSpace(*serviceFlag)) action := strings.ToLower(strings.TrimSpace(*serviceFlag))
@@ -96,6 +99,7 @@ func Parse() (*Config, error) {
JWTSecret: jwtSecret, JWTSecret: jwtSecret,
LogFile: filepath.Join(absData, "jiang13.log"), LogFile: filepath.Join(absData, "jiang13.log"),
ServiceAction: action, ServiceAction: action,
DevMode: *devFlag,
} }
needDirs := action == "" || action == "install" needDirs := action == "" || action == "install"

View File

@@ -774,14 +774,36 @@ const ArticleEditor = forwardRef<ArticleEditorHandle, Props>(function ArticleEdi
<div className="article-editor-body"> <div className="article-editor-body">
{mode === 'rich' ? ( {mode === 'rich' ? (
<div className="article-editor-pane article-editor-pane--rich"> <div className="article-editor-pane article-editor-pane--rich">
<div className="article-editor-scroll"> <div
className="article-editor-scroll"
onPointerDown={e => {
// 点击编辑器外空白区域时,聚焦并将光标置于文末
if (editor && (e.target === e.currentTarget || (e.target as HTMLElement).classList.contains('article-editor-content'))) {
e.preventDefault();
editor.chain().focus('end').run();
}
}}
>
<EditorContent editor={editor} className="article-editor-content" /> <EditorContent editor={editor} className="article-editor-content" />
</div> </div>
</div> </div>
) : ( ) : (
<div className="article-editor-markdown"> <div className="article-editor-markdown">
<div className="article-editor-pane article-editor-pane--source"> <div className="article-editor-pane article-editor-pane--source">
<div className="article-editor-scroll"> <div
className="article-editor-scroll"
onPointerDown={e => {
if (e.target === e.currentTarget) {
e.preventDefault();
const ta = markdownRef.current;
if (ta) {
ta.focus();
const len = ta.value.length;
ta.setSelectionRange(len, len);
}
}
}}
>
<textarea <textarea
ref={markdownRef} ref={markdownRef}
className="article-editor-markdown-input" className="article-editor-markdown-input"

View File

@@ -0,0 +1,105 @@
import TagInput from '../TagInput';
import BoardIconDisplay from '../BoardIconDisplay';
import { getBoardThemeIndex } from '../../utils/boardTheme';
import type { Board, ForumLimitsPublic } from '../../api/types';
export type PostType = 'normal' | 'question';
interface Props {
isEdit: boolean;
postType: PostType;
onPostTypeChange: (type: PostType) => void;
boards: Board[];
boardId: string;
onBoardChange: (boardId: string) => void;
tags: string;
onTagsChange: (tags: string) => void;
limits: ForumLimitsPublic;
}
/**
* 发帖页发布设置模块:帖子类型、板块、标签三行配置。
* 受控组件,所有状态由父级持有。
*/
export default function ComposeContextBar({
isEdit,
postType,
onPostTypeChange,
boards,
boardId,
onBoardChange,
tags,
onTagsChange,
limits,
}: Props) {
return (
<section className="compose-context" aria-label="发布设置">
<div className="compose-context-row">
<span className="compose-context-label"></span>
<div className="compose-type-field">
<div className="compose-type-pills" role="radiogroup" aria-label="帖子类型">
<button
type="button"
role="radio"
aria-checked={postType === 'normal'}
className={`compose-type-pill${postType === 'normal' ? ' active' : ''}`}
onClick={() => onPostTypeChange('normal')}
>
</button>
<button
type="button"
role="radio"
aria-checked={postType === 'question'}
className={`compose-type-pill${postType === 'question' ? ' active' : ''}`}
onClick={() => onPostTypeChange('question')}
>
</button>
</div>
{postType === 'question' && (
<span className="compose-type-hint"></span>
)}
</div>
</div>
<div className="compose-context-row">
<span className="compose-context-label"></span>
<div
className="compose-board-pills"
role="listbox"
aria-label={isEdit ? '修改板块' : '选择板块'}
>
{boards.map(b => {
const themeIdx = getBoardThemeIndex(b);
const isActive = String(b.id) === boardId;
return (
<button
key={b.id}
type="button"
role="option"
aria-selected={isActive}
className={`compose-board-pill compose-board-pill--${themeIdx}${isActive ? ' active' : ''}`}
onClick={() => onBoardChange(String(b.id))}
>
<BoardIconDisplay
board={b}
className="compose-board-icon"
/>
<span>{b.name}</span>
</button>
);
})}
</div>
</div>
<div className="compose-context-row compose-context-row--tags">
<span className="compose-context-label"></span>
<TagInput
value={tags}
onChange={onTagsChange}
placeholder="添加标签,回车确认"
maxLength={limits.post_tags_max > 0 ? limits.post_tags_max : undefined}
/>
</div>
</section>
);
}

View File

@@ -0,0 +1,48 @@
import type { ReactNode } from 'react';
import ArticleEditor from '../ArticleEditor';
import type { ForumLimitsPublic } from '../../api/types';
import type { PostType } from './ComposeContextBar';
interface Props {
postType: PostType;
title: string;
onTitleChange: (title: string) => void;
content: string;
onContentChange: (content: string) => void;
limits: ForumLimitsPublic;
/** 渲染于标题与编辑器之间的元信息条(如发布设置) */
children?: ReactNode;
}
/**
* 发帖页正文写作模块:标题输入框 + 富文本编辑器。
* 受控组件,标题与正文状态由父级持有。
*/
export default function ComposeDocument({
postType,
title,
onTitleChange,
content,
onContentChange,
limits,
children,
}: Props) {
return (
<div className="compose-document">
<input
className="compose-title"
type="text"
placeholder={postType === 'question' ? '用一句话描述你的问题…' : '输入文章标题…'}
value={title}
onChange={e => onTitleChange(e.target.value)}
maxLength={limits.post_title_max > 0 ? limits.post_title_max : undefined}
/>
{children}
<ArticleEditor
value={content}
onChange={onContentChange}
placeholder="开始写作。按回车分段,选中文字后用工具栏设置格式。"
/>
</div>
);
}

View File

@@ -0,0 +1,58 @@
import { ArrowLeft, Send } from 'lucide-react';
interface Props {
isEdit: boolean;
publishing: boolean;
/** 编辑场景下展示的可编辑剩余时间提示;新建时为空 */
editWindowHint: string;
/** 新建场景下展示的本地草稿提示;编辑时为空 */
draftHint: string;
onBack: () => void;
onPublish: () => void;
}
/**
* 发帖页顶部栏模块:返回按钮、页面标题、草稿/编辑时限提示与发布动作。
* 仅承担展示与事件回传,不持有业务状态。
*/
export default function ComposeHeader({
isEdit,
publishing,
editWindowHint,
draftHint,
onBack,
onPublish,
}: Props) {
return (
<header className="compose-header">
<div className="compose-header-left">
<button type="button" className="compose-back" onClick={onBack}>
<ArrowLeft size={16} />
<span></span>
</button>
<h1 className="compose-header-title">{isEdit ? '编辑帖子' : '写新帖'}</h1>
{editWindowHint && (
<span className="compose-draft-hint" title={editWindowHint}>
{editWindowHint}
</span>
)}
{!isEdit && draftHint && (
<span className="compose-draft-hint" title={draftHint}>
{draftHint}
</span>
)}
</div>
<div className="compose-header-actions">
<button
type="button"
className="compose-publish-btn"
disabled={publishing}
onClick={onPublish}
>
<Send size={16} />
<span>{publishing ? (isEdit ? '保存中…' : '发布中…') : (isEdit ? '保存修改' : '发布')}</span>
</button>
</div>
</header>
);
}

View File

@@ -1,6 +1,6 @@
import { useState, useEffect, useMemo, useRef } from 'react'; import { useState, useEffect, useMemo, useRef } from 'react';
import { useNavigate, useSearchParams, useParams, useOutletContext } from 'react-router-dom'; import { useNavigate, useSearchParams, useParams, useOutletContext } from 'react-router-dom';
import { ArrowLeft, Send, Pencil } from 'lucide-react'; import { Pencil } from 'lucide-react';
import { notify } from '@/lib/notify'; import { notify } from '@/lib/notify';
import { api } from '../api/client'; import { api } from '../api/client';
import { useAuth } from '../hooks/useAuth'; import { useAuth } from '../hooks/useAuth';
@@ -8,10 +8,12 @@ import type { Board } from '../api/types';
import { isHtmlEmpty } from '../utils/postContent'; import { isHtmlEmpty } from '../utils/postContent';
import { useForumLimits } from '../hooks/useForumLimits'; import { useForumLimits } from '../hooks/useForumLimits';
import { useUnsavedChangesGuard } from '../hooks/useUnsavedChangesGuard'; import { useUnsavedChangesGuard } from '../hooks/useUnsavedChangesGuard';
import ArticleEditor from '../components/ArticleEditor';
import UnsavedChangesDialog from '../components/UnsavedChangesDialog'; import UnsavedChangesDialog from '../components/UnsavedChangesDialog';
import TagInput, { serializeTags, parseTags } from '../components/TagInput'; import { serializeTags, parseTags } from '../components/TagInput';
import { Spinner } from '@/components/ui/spinner'; import { Spinner } from '@/components/ui/spinner';
import ComposeHeader from '../components/compose/ComposeHeader';
import ComposeContextBar, { type PostType } from '../components/compose/ComposeContextBar';
import ComposeDocument from '../components/compose/ComposeDocument';
import { getCachedBoards } from '../utils/layoutCache'; import { getCachedBoards } from '../utils/layoutCache';
import type { LayoutCtx } from '../layouts/MainLayout'; import type { LayoutCtx } from '../layouts/MainLayout';
import { loginPath } from '../utils/authRedirect'; import { loginPath } from '../utils/authRedirect';
@@ -30,7 +32,7 @@ interface ComposeBaseline {
tags: string; tags: string;
content: string; content: string;
boardId: string; boardId: string;
postType: 'normal' | 'question'; postType: PostType;
} }
function resolveBoards(ctxBoards?: Board[]): Board[] { function resolveBoards(ctxBoards?: Board[]): Board[] {
@@ -71,7 +73,7 @@ export default function ComposePage() {
const [title, setTitle] = useState(''); const [title, setTitle] = useState('');
const [tags, setTags] = useState(''); const [tags, setTags] = useState('');
const [content, setContent] = useState(''); const [content, setContent] = useState('');
const [postType, setPostType] = useState<'normal' | 'question'>('normal'); const [postType, setPostType] = useState<PostType>('normal');
const [publishing, setPublishing] = useState(false); const [publishing, setPublishing] = useState(false);
const [loading, setLoading] = useState(isEdit); const [loading, setLoading] = useState(isEdit);
/** 新建帖:板块列表是否已就绪(避免请求中误显空态) */ /** 新建帖:板块列表是否已就绪(避免请求中误显空态) */
@@ -338,115 +340,39 @@ export default function ComposePage() {
<div className="compose-page"> <div className="compose-page">
<div className="compose-canvas"> <div className="compose-canvas">
<div className="compose-shell"> <div className="compose-shell">
<header className="compose-header"> <ComposeHeader
<div className="compose-header-left"> isEdit={isEdit}
<button publishing={publishing}
type="button" editWindowHint={editWindowHint}
className="compose-back" draftHint={draftHint}
onClick={() => requestLeave(() => { onBack={() => requestLeave(() => {
if (isEdit) nav(postPath(editId!, limits)); if (isEdit) nav(postPath(editId!, limits));
else nav(-1); else nav(-1);
})} })}
> onPublish={handleSubmit}
<ArrowLeft size={16} /> />
<span></span>
</button>
<h1 className="compose-header-title">{isEdit ? '编辑帖子' : '写新帖'}</h1>
{editWindowHint && (
<span className="compose-draft-hint" title={editWindowHint}>
{editWindowHint}
</span>
)}
{!isEdit && draftHint && (
<span className="compose-draft-hint" title={draftHint}>
{draftHint}
</span>
)}
</div>
<div className="compose-header-actions">
<button
type="button"
className="compose-publish-btn"
disabled={publishing}
onClick={handleSubmit}
>
<Send size={16} />
{publishing ? (isEdit ? '保存中…' : '发布中…') : (isEdit ? '保存修改' : '发布')}
</button>
</div>
</header>
<div className="compose-shell-body"> <div className="compose-shell-body">
<section className="compose-context" aria-label="发布设置"> <ComposeDocument
<div className="compose-context-row"> postType={postType}
<span className="compose-context-label"></span> title={title}
<div className="compose-type-pills" role="radiogroup" aria-label="帖子类型"> onTitleChange={setTitle}
<button content={content}
type="button" onContentChange={setContent}
role="radio" limits={limits}
aria-checked={postType === 'normal'}
className={`compose-type-pill${postType === 'normal' ? ' active' : ''}`}
onClick={() => setPostType('normal')}
> >
<ComposeContextBar
</button> isEdit={isEdit}
<button postType={postType}
type="button" onPostTypeChange={setPostType}
role="radio" boards={boards}
aria-checked={postType === 'question'} boardId={boardId}
className={`compose-type-pill${postType === 'question' ? ' active' : ''}`} onBoardChange={setBoardId}
onClick={() => setPostType('question')} tags={tags}
> onTagsChange={setTags}
limits={limits}
</button>
</div>
{postType === 'question' && (
<span className="compose-type-hint"> / </span>
)}
</div>
<div className="compose-context-row">
<span className="compose-context-label"></span>
<div className="compose-board-pills" role="listbox" aria-label={isEdit ? '修改板块' : '选择板块'}>
{boards.map(b => (
<button
key={b.id}
type="button"
role="option"
aria-selected={String(b.id) === boardId}
className={`compose-board-pill${String(b.id) === boardId ? ' active' : ''}`}
onClick={() => setBoardId(String(b.id))}
>
{b.name}
</button>
))}
</div>
</div>
<div className="compose-context-row compose-context-row--tags">
<span className="compose-context-label"></span>
<TagInput
value={tags}
onChange={setTags}
placeholder="添加标签,回车确认"
maxLength={limits.post_tags_max > 0 ? limits.post_tags_max : undefined}
/> />
</div> </ComposeDocument>
</section>
<div className="compose-document">
<input
className="compose-title"
type="text"
placeholder={postType === 'question' ? '用一句话描述你的问题…' : '输入文章标题…'}
value={title}
onChange={e => setTitle(e.target.value)}
maxLength={limits.post_title_max > 0 ? limits.post_title_max : undefined}
/>
<ArticleEditor
value={content}
onChange={setContent}
placeholder="开始写作。按回车分段,选中文字后用工具栏设置格式。"
/>
</div>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -7200,9 +7200,11 @@ button.profile-stat:hover strong {
.compose-context { .compose-context {
display: flex; display: flex;
flex-direction: column; flex-wrap: wrap;
gap: 10px; align-items: center;
padding: 14px 20px; gap: 8px 18px;
padding: 10px 28px;
border-top: 1px solid var(--j13-border-light);
border-bottom: 1px solid var(--j13-border-light); border-bottom: 1px solid var(--j13-border-light);
background: var(--j13-bg-surface); background: var(--j13-bg-surface);
flex-shrink: 0; flex-shrink: 0;
@@ -7210,41 +7212,63 @@ button.profile-stat:hover strong {
.compose-context-row { .compose-context-row {
display: flex; display: flex;
align-items: flex-start; align-items: center;
gap: 12px; gap: 8px;
width: 100%;
min-width: 0; min-width: 0;
max-width: 100%;
padding: 0;
border: none;
}
.compose-context-row:last-child {
border-bottom: none;
} }
.compose-context-label { .compose-context-label {
flex-shrink: 0; flex-shrink: 0;
width: 32px; width: auto;
margin-top: 6px; margin: 0;
font-size: 12px; font-size: 12px;
font-weight: 500; font-weight: 500;
color: var(--color-text-3); color: var(--color-text-3);
letter-spacing: 0.02em;
} }
.compose-context-row--tags .compose-context-label { .compose-context-row--tags .compose-context-label {
margin-top: 9px; margin: 0;
} }
.compose-context-row--tags .compose-tags-field { .compose-context-row--tags .compose-tags-field {
flex: 1; flex: 0 1 280px;
min-width: 0; min-width: 160px;
} }
.compose-board-pills { .compose-board-pills {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
align-items: center;
gap: 8px; gap: 8px;
min-width: 0; min-width: 0;
} }
/* 类型:连体分段控件(二选一) */
.compose-type-pills { .compose-type-pills {
display: flex; display: inline-flex;
flex-wrap: wrap; align-items: center;
gap: 0;
padding: 2px;
border: 1px solid var(--j13-border);
border-radius: 8px;
background: var(--j13-bg-block-muted);
}
.compose-type-field {
display: inline-flex;
align-items: center;
gap: 8px; gap: 8px;
min-width: 0; min-width: 0;
flex-wrap: wrap;
} }
.compose-type-hint { .compose-type-hint {
@@ -7253,12 +7277,38 @@ button.profile-stat:hover strong {
align-self: center; align-self: center;
} }
.compose-board-pill,
.compose-type-pill { .compose-type-pill {
padding: 5px 12px; padding: 4px 14px;
border: none;
border-radius: 6px;
background: transparent;
color: var(--color-text-2);
font-size: 13px;
font-weight: 500;
line-height: 1.3;
cursor: pointer;
transition: background 0.15s, color 0.15s;
}
.compose-type-pill:hover:not(.active) {
color: var(--color-text-1);
}
.compose-type-pill.active {
background: var(--j13-green);
color: #fff;
font-weight: 600;
}
/* 板块:带图标的选择芯片 */
.compose-board-pill {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 11px 4px 9px;
border: 1px solid var(--j13-border); border: 1px solid var(--j13-border);
border-radius: 999px; border-radius: 999px;
background: var(--j13-bg-block-muted); background: var(--j13-bg-surface);
color: var(--color-text-2); color: var(--color-text-2);
font-size: 13px; font-size: 13px;
line-height: 1.3; line-height: 1.3;
@@ -7266,21 +7316,74 @@ button.profile-stat:hover strong {
transition: background 0.15s, border-color 0.15s, color 0.15s; transition: background 0.15s, border-color 0.15s, color 0.15s;
} }
.compose-board-pill:hover, .compose-board-icon {
.compose-type-pill:hover { width: 14px;
border-color: var(--j13-green); height: 14px;
color: var(--j13-green); flex-shrink: 0;
background: var(--j13-green-bg);
} }
.compose-board-pill.active, .compose-board-pill:hover {
.compose-type-pill.active {
background: var(--j13-green);
border-color: var(--j13-green); border-color: var(--j13-green);
color: #fff; color: var(--j13-green);
font-weight: 500;
} }
.compose-board-pill:hover .compose-board-icon {
opacity: 1;
}
.compose-board-pill.active {
background: var(--j13-green-bg);
border-color: var(--j13-green);
color: var(--j13-green);
font-weight: 600;
}
.compose-board-pill.active .compose-board-icon {
opacity: 1;
}
/* 板块主题色 —— 图标颜色 */
.compose-board-pill--0 .compose-board-icon { color: var(--board-0-color); }
.compose-board-pill--1 .compose-board-icon { color: var(--board-1-color); }
.compose-board-pill--2 .compose-board-icon { color: var(--board-2-color); }
.compose-board-pill--3 .compose-board-icon { color: var(--board-3-color); }
.compose-board-pill--4 .compose-board-icon { color: var(--board-4-color); }
.compose-board-pill--5 .compose-board-icon { color: var(--board-5-color); }
.compose-board-pill--6 .compose-board-icon { color: var(--board-6-color); }
.compose-board-pill--7 .compose-board-icon { color: var(--board-7-color); }
/* 选中态:主题色背景 + 主题色图标 */
.compose-board-pill.active.compose-board-pill--0 { background: var(--board-0-bg); border-color: var(--board-0-color); color: var(--board-0-color); }
.compose-board-pill.active.compose-board-pill--1 { background: var(--board-1-bg); border-color: var(--board-1-color); color: var(--board-1-color); }
.compose-board-pill.active.compose-board-pill--2 { background: var(--board-2-bg); border-color: var(--board-2-color); color: var(--board-2-color); }
.compose-board-pill.active.compose-board-pill--3 { background: var(--board-3-bg); border-color: var(--board-3-color); color: var(--board-3-color); }
.compose-board-pill.active.compose-board-pill--4 { background: var(--board-4-bg); border-color: var(--board-4-color); color: var(--board-4-color); }
.compose-board-pill.active.compose-board-pill--5 { background: var(--board-5-bg); border-color: var(--board-5-color); color: var(--board-5-color); }
.compose-board-pill.active.compose-board-pill--6 { background: var(--board-6-bg); border-color: var(--board-6-color); color: var(--board-6-color); }
.compose-board-pill.active.compose-board-pill--7 { background: var(--board-7-bg); border-color: var(--board-7-color); color: var(--board-7-color); }
.compose-board-pill.active.compose-board-pill--0 .compose-board-icon,
.compose-board-pill.active.compose-board-pill--1 .compose-board-icon,
.compose-board-pill.active.compose-board-pill--2 .compose-board-icon,
.compose-board-pill.active.compose-board-pill--3 .compose-board-icon,
.compose-board-pill.active.compose-board-pill--4 .compose-board-icon,
.compose-board-pill.active.compose-board-pill--5 .compose-board-icon,
.compose-board-pill.active.compose-board-pill--6 .compose-board-icon,
.compose-board-pill.active.compose-board-pill--7 .compose-board-icon {
color: inherit;
opacity: 1;
}
/* hover 态:主题色图标 */
.compose-board-pill:hover.compose-board-pill--0 .compose-board-icon { color: var(--board-0-color); }
.compose-board-pill:hover.compose-board-pill--1 .compose-board-icon { color: var(--board-1-color); }
.compose-board-pill:hover.compose-board-pill--2 .compose-board-icon { color: var(--board-2-color); }
.compose-board-pill:hover.compose-board-pill--3 .compose-board-icon { color: var(--board-3-color); }
.compose-board-pill:hover.compose-board-pill--4 .compose-board-icon { color: var(--board-4-color); }
.compose-board-pill:hover.compose-board-pill--5 .compose-board-icon { color: var(--board-5-color); }
.compose-board-pill:hover.compose-board-pill--6 .compose-board-icon { color: var(--board-6-color); }
.compose-board-pill:hover.compose-board-pill--7 .compose-board-icon { color: var(--board-7-color); }
.compose-tags-field { .compose-tags-field {
display: flex; display: flex;
align-items: flex-start; align-items: flex-start;
@@ -7417,18 +7520,19 @@ button.profile-stat:hover strong {
max-width: 100%; max-width: 100%;
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
background: var(--j13-bg-surface);
} }
.compose-title { .compose-title {
width: 100%; width: 100%;
margin: 0; margin: 0;
padding: 20px 24px 12px; padding: 28px 28px 14px;
border: none; border: none;
background: transparent; background: transparent;
font-size: 24px; font-size: 26px;
font-weight: 600; font-weight: 700;
line-height: 1.35; line-height: 1.3;
letter-spacing: -0.01em; letter-spacing: -0.02em;
color: var(--color-text-1); color: var(--color-text-1);
outline: none; outline: none;
flex-shrink: 0; flex-shrink: 0;
@@ -7436,7 +7540,7 @@ button.profile-stat:hover strong {
.compose-title::placeholder { .compose-title::placeholder {
color: var(--color-text-4); color: var(--color-text-4);
font-weight: 500; font-weight: 600;
} }
.compose-subtitle { .compose-subtitle {
@@ -7450,6 +7554,193 @@ button.profile-stat:hover strong {
font-weight: 500; font-weight: 500;
} }
/* ===== 发帖页移动端适配 ===== */
@media (max-width: 640px) {
.compose-page {
--compose-header-sticky-h: 52px;
}
.compose-canvas {
padding: 8px 0;
max-width: 100%;
}
.compose-shell {
border-radius: 0;
border-left: none;
border-right: none;
box-shadow: none;
}
.compose-shell-body {
border-radius: 0;
}
.compose-header {
padding: 10px 12px;
gap: 8px;
}
.compose-header-left {
gap: 8px;
min-width: 0;
}
.compose-header-title {
font-size: 14px;
}
.compose-back span {
display: none;
}
.compose-back {
padding: 6px;
border-radius: 8px;
}
.compose-draft-hint,
.compose-edit-window {
display: none;
}
.compose-publish-btn {
padding: 7px 12px;
font-size: 12px;
}
.compose-publish-btn span {
display: none;
}
.compose-context {
flex-direction: column;
align-items: stretch;
gap: 6px;
padding: 8px 12px;
border-top: 1px solid var(--j13-border-light);
border-bottom: 1px solid var(--j13-border-light);
background: var(--j13-bg-surface);
}
.compose-context-row {
flex-direction: column;
align-items: stretch;
gap: 2px;
}
.compose-context-label {
font-size: 12px;
font-weight: 600;
color: var(--color-text-2);
letter-spacing: 0;
}
.compose-type-pills {
align-self: flex-start;
}
.compose-type-field {
flex-wrap: nowrap;
align-items: center;
}
.compose-type-hint {
font-size: 11px;
color: var(--color-text-4);
white-space: nowrap;
}
.compose-board-pills {
overflow-x: auto;
flex-wrap: nowrap;
-webkit-overflow-scrolling: touch;
padding-bottom: 4px;
scrollbar-width: none;
}
.compose-board-pills::-webkit-scrollbar {
display: none;
}
.compose-board-pill {
flex-shrink: 0;
}
.compose-context-row--tags .compose-tags-field {
flex: 1;
min-width: 0;
width: 100%;
}
.compose-title {
padding: 20px 16px 12px;
font-size: 20px;
font-weight: 700;
}
.compose-tags-field {
padding: 6px 10px;
}
.article-editor-bar {
position: sticky !important;
top: 0 !important;
z-index: 50 !important;
padding: 6px 10px;
gap: 6px;
background: var(--j13-bg-surface);
border-bottom: 1px solid var(--j13-border-light);
box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
/* —— 移动端:解除上层 overflow:hidden 以支持 sticky —— */
.compose-page {
overflow: visible !important;
}
.compose-canvas {
overflow: visible !important;
}
.compose-shell {
overflow: visible !important;
}
.compose-shell-body {
overflow-y: auto !important;
overflow-x: hidden !important;
-webkit-overflow-scrolling: touch;
}
.compose-document {
overflow: visible !important;
flex: 1 0 auto;
min-height: 100%;
}
.article-editor {
overflow: visible !important;
flex: 1 0 auto;
min-height: 300px;
}
.article-editor-body {
overflow: visible !important;
}
.article-editor-scroll {
overflow: visible !important;
flex: none;
}
.article-editor-content .tiptap,
.article-prosemirror {
min-height: 200px;
flex: none;
}
}
/* 文章编辑器 */ /* 文章编辑器 */
.article-editor { .article-editor {
flex: 1; flex: 1;
@@ -7458,7 +7749,6 @@ button.profile-stat:hover strong {
flex-direction: column; flex-direction: column;
min-width: 0; min-width: 0;
max-width: 100%; max-width: 100%;
border-top: 1px solid var(--j13-border-light);
overflow: hidden; overflow: hidden;
} }
@@ -7684,6 +7974,7 @@ button.profile-stat:hover strong {
max-width: 100%; max-width: 100%;
overflow: auto; overflow: auto;
background: transparent; background: transparent;
cursor: text;
} }
.article-editor-pane--source .article-editor-scroll { .article-editor-pane--source .article-editor-scroll {
@@ -8344,9 +8635,12 @@ button.profile-stat:hover strong {
} }
.article-editor--fullscreen .article-editor-bar { .article-editor--fullscreen .article-editor-bar {
position: relative;
top: 0; top: 0;
margin: 0 auto; margin: 0 auto;
padding: 6px 8px; padding: 6px 8px;
z-index: auto;
box-shadow: none;
} }
.article-editor--fullscreen .article-editor-status { .article-editor--fullscreen .article-editor-status {
@@ -8606,14 +8900,44 @@ button.profile-stat:hover strong {
@media (max-width: 768px) { @media (max-width: 768px) {
.compose-page { .compose-page {
--compose-header-sticky-h: 53px; --compose-header-sticky-h: 53px;
overflow: visible !important;
} }
.compose-canvas { .compose-canvas {
padding: 10px 12px 20px; padding: 10px 12px 20px;
overflow: visible !important;
} }
.compose-shell { .compose-shell {
border-radius: 10px; border-radius: 10px;
overflow: visible !important;
}
.compose-shell-body {
overflow-y: auto !important;
overflow-x: hidden !important;
-webkit-overflow-scrolling: touch;
}
.compose-document {
overflow: visible !important;
flex: 1 0 auto;
min-height: 100%;
}
.article-editor {
overflow: visible !important;
flex: 1 0 auto;
min-height: 300px;
}
.article-editor-body {
overflow: visible !important;
}
.article-editor-scroll {
overflow: visible !important;
flex: none;
} }
.compose-header { .compose-header {
@@ -8635,13 +8959,13 @@ button.profile-stat:hover strong {
} }
.compose-context { .compose-context {
padding: 12px; padding: 6px 12px;
gap: 8px;
} }
.compose-context-row { .compose-context-row {
flex-direction: column; flex-direction: column;
gap: 6px; gap: 3px;
padding: 4px 0;
} }
.compose-context-label, .compose-context-label,
@@ -8652,7 +8976,7 @@ button.profile-stat:hover strong {
.compose-title { .compose-title {
font-size: 20px; font-size: 20px;
padding: 14px 14px 8px; padding: 18px 18px 12px;
} }
.article-editor--fullscreen { .article-editor--fullscreen {
@@ -8660,8 +8984,11 @@ button.profile-stat:hover strong {
} }
.article-editor--fullscreen .article-editor-bar { .article-editor--fullscreen .article-editor-bar {
position: relative;
margin: 0; margin: 0;
padding: 8px 0; padding: 8px 0;
z-index: auto;
box-shadow: none;
} }
.article-editor-markdown { .article-editor-markdown {
@@ -8684,7 +9011,13 @@ button.profile-stat:hover strong {
} }
.article-editor-bar { .article-editor-bar {
position: sticky !important;
top: 0 !important;
z-index: 50 !important;
padding: 8px 10px; padding: 8px 10px;
background: var(--j13-bg-surface);
border-bottom: 1px solid var(--j13-border-light);
box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
} }
.article-editor-content .tiptap, .article-editor-content .tiptap,
@@ -8694,21 +9027,37 @@ button.profile-stat:hover strong {
} }
.article-editor-status { .article-editor-status {
padding: 10px 12px; padding: 4px 10px;
flex-wrap: wrap; flex-wrap: nowrap;
align-items: flex-start; align-items: center;
gap: 8px;
border-radius: 0 0 10px 10px; border-radius: 0 0 10px 10px;
} }
.article-editor--fullscreen .article-editor-status { .article-editor--fullscreen .article-editor-status {
margin: 0 -12px; margin: 0 -12px;
padding: 10px 12px; padding: 4px 12px;
border-radius: 0; border-radius: 0;
} }
.article-editor-status-meta {
flex-wrap: nowrap;
gap: 4px;
min-width: 0;
overflow: hidden;
}
.article-editor-status-actions { .article-editor-status-actions {
width: 100%; width: auto;
justify-content: flex-end; justify-content: flex-end;
flex-shrink: 0;
}
.article-editor-view-btn {
padding: 4px 10px;
gap: 4px;
font-size: 12px;
white-space: nowrap;
} }
.compose-tags-field { .compose-tags-field {

View File

@@ -42,6 +42,8 @@ export default defineConfig({
'/api': apiTarget, '/api': apiTarget,
'/uploads': apiTarget, '/uploads': apiTarget,
'/media': apiTarget, '/media': apiTarget,
'/oauth': apiTarget,
'/.well-known': apiTarget,
}, },
}, },
}); });

View File

@@ -21,9 +21,15 @@ func Setup(cfg *config.Config) (*gin.Engine, error) {
r.Use(gin.Recovery()) r.Use(gin.Recovery())
r.Use(gin.Logger()) r.Use(gin.Logger())
// dev 模式:跳过内嵌静态资源,前端由 Vite 开发服务器(:5173)提供
// 用户应访问 5173 端口Vite 通过 proxy 将 /api 等请求转发到本服务(:3000)
if !cfg.DevMode {
if err := embed_static.SetupEmbed(r); err != nil { if err := embed_static.SetupEmbed(r); err != nil {
return nil, err return nil, err
} }
} else {
fmt.Fprintf(os.Stderr, "[dev] 后端仅提供 API前端请访问 http://localhost:5173\n")
}
filter := service.NewSensitiveFilter() filter := service.NewSensitiveFilter()
_ = service.WriteDefaultFilterWords(cfg.FilterWordsPath()) _ = service.WriteDefaultFilterWords(cfg.FilterWordsPath())
@@ -234,6 +240,8 @@ func Setup(cfg *config.Config) (*gin.Engine, error) {
} }
// 后台管理页面由 React SPA 渲染JSON API 见上方 /api/admin // 后台管理页面由 React SPA 渲染JSON API 见上方 /api/admin
// dev 模式下前端由 Vite 提供,后台页面路由不在此注册
if !cfg.DevMode {
admin := r.Group("/admin") admin := r.Group("/admin")
{ {
admin.GET("/login", func(c *gin.Context) { admin.GET("/login", func(c *gin.Context) {
@@ -248,8 +256,18 @@ func Setup(cfg *config.Config) (*gin.Engine, error) {
} }
} }
} }
}
// React SPA 入口(公开页注入 SEO meta / JSON-LD / 预渲染摘要) // React SPA 入口
// dev 模式:前端由 Vite(:5173) 提供,非 API 请求返回开发提示
// 生产模式:注入 SEO meta / JSON-LD / 预渲染摘要
if cfg.DevMode {
r.NoRoute(func(c *gin.Context) {
c.JSON(http.StatusNotFound, gin.H{
"error": "dev 模式下前端由 Vite 提供,请访问 http://localhost:5173",
})
})
} else {
r.GET("/", h.ServePublicSPA) r.GET("/", h.ServePublicSPA)
r.NoRoute(func(c *gin.Context) { r.NoRoute(func(c *gin.Context) {
if embed_static.IsSPARoute(c.Request.URL.Path) { if embed_static.IsSPARoute(c.Request.URL.Path) {
@@ -258,6 +276,7 @@ func Setup(cfg *config.Config) (*gin.Engine, error) {
} }
c.JSON(http.StatusNotFound, gin.H{"error": "not found"}) c.JSON(http.StatusNotFound, gin.H{"error": "not found"})
}) })
}
return r, nil return r, nil
} }