공개 화면 다섯 곳이 조용히 비어 있었다. 원인은 하나씩 달랐지만 모두 "값을 채울 방법이 없었다"는 같은 모양이었다. 홈의 "지금 집중하는 것" — `home_focus_config` 는 마이그레이션이 빈 행 하나만 넣어 두었고, 계약에 선언된 `getHomeFocus`/`updateHomeFocus` 는 구현이 없었다. 세 슬롯이 모두 비면 홈은 그 영역을 아예 그리지 않으므로, 운영에서는 한 번도 나타난 적이 없다. Studio 대시보드에 고르는 화면을 둔다. 홈의 "최근 기록" — 화면이 공개된 프로젝트를 하나씩 돌며 타임라인을 조립했다. 그래서 게시한 문서라도 그 프로젝트가 공개되어 있지 않으면 목록에서 통째로 빠졌고, 실제로 릴리스 한 줄만 남았다. 무엇이 최근인지는 공개 투영이 이미 알고 있으므로 그것을 그대로 읽는다. 프로젝트마다 요청을 보내던 N+1 도 사라진다. 프로젝트 공개 — 프로젝트는 `RecordKind` 에 없어 문서 게시 파이프라인을 타지 못하는데, 공개 화면들(프로젝트 목록·프로필의 "현재 프로젝트"·홈 focus)은 전부 `public_resource_projection` 의 PROJECT 행을 가시성 관문으로 쓴다. 그 행을 세우는 경로가 없었으므로 프로젝트는 영원히 비공개였다. 계약에 이미 있던 `publishProject`/`unpublishProject` 를 구현하고 주제·프로젝트 화면에 버튼을 둔다. 문서 사이 관계 연결 — `JdbcCatalogQueryAdapter` 의 RELATION/EVIDENCE 가 `List.of()` 스텁이라 어떤 기록도 연결 대상 목록을 채울 수 없었다. RELATION 은 작성 중에 고르는 것이므로 작업본까지 포함하고, EVIDENCE 는 읽는 사람이 따라갈 수 있어야 하므로 공개된 것만 포함한다. 본문 너비 — 문서 한 편이 세 폭으로 갈라져 있었다. 머리말 920px, 유형·프로젝트 줄은 shell 전체 1180px, 본문은 672px 를 가운데 정렬. 셋을 같은 폭·같은 왼쪽 끝에 세우고 읽는 단을 56rem 으로 넓힌다. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01XEHXspz4rv5pB5wiiSsVDu
195 lines
7.8 KiB
TypeScript
195 lines
7.8 KiB
TypeScript
import { useCallback, useEffect, useState, type FormEvent } from "react";
|
|
|
|
import type { CatalogEntry } from "../../../contracts/studio/contract.ts";
|
|
import type { HomeFocusResponse } from "../../../contracts/management/contract.ts";
|
|
import type { ProjectIndexItem } from "../../../contracts/management/contract.ts";
|
|
import { managementFailureMessage } from "../../../application/ports/management-gateway-error.ts";
|
|
import { useStudio } from "../use-studio.ts";
|
|
|
|
/**
|
|
* 공개 홈의 "지금 집중하는 것" 을 정하는 화면.
|
|
*
|
|
* <p>그 영역은 세 칸(현재 작업·열린 질문·최근 결정)을 가지며, 셋이 모두 비면 홈은 영역 자체를
|
|
* 그리지 않는다. `home_focus_config` 는 마이그레이션이 빈 행 하나만 넣어 두었고 그 값을 채울
|
|
* 화면이 없었으므로, 홈에서는 그 영역이 한 번도 나타난 적이 없었다.
|
|
*
|
|
* <p>고를 수 있는 것은 실제로 존재하는 기록뿐이다. 질문과 결정은 Studio catalog 의
|
|
* `RELATION` 목록에서 가져온다 — 그 목록이 곧 "연결 가능한 대상" 의 정의이고, 여기서 다른
|
|
* 기준을 쓰면 두 화면이 서로 다른 것을 보여 준다.
|
|
*
|
|
* <p>비공개 프로젝트도 고를 수 있게 둔다. 미리 지목해 두고 게시와 동시에 홈에 뜨게 하는 것이
|
|
* 정상적인 순서이기 때문이다. 다만 게시되지 않은 동안에는 홈이 그 칸을 그리지 않으므로, 목록에
|
|
* 그 사실을 적어 둔다.
|
|
*/
|
|
export function HomeFocusEditor() {
|
|
const { gateway, managementGateway, setRequestAnnouncement } = useStudio();
|
|
const [focus, setFocus] = useState<HomeFocusResponse | null>(null);
|
|
const [projects, setProjects] = useState<ProjectIndexItem[]>([]);
|
|
const [relations, setRelations] = useState<CatalogEntry[]>([]);
|
|
const [projectId, setProjectId] = useState("");
|
|
const [questionId, setQuestionId] = useState("");
|
|
const [decisionId, setDecisionId] = useState("");
|
|
const [pending, setPending] = useState(false);
|
|
const [error, setError] = useState("");
|
|
const [generation, setGeneration] = useState(0);
|
|
|
|
const reload = useCallback(() => setGeneration((value) => value + 1), []);
|
|
|
|
useEffect(() => {
|
|
let cancelled = false;
|
|
void Promise.all([
|
|
managementGateway.getHomeFocus(),
|
|
managementGateway.listProjects(0, 50),
|
|
gateway.getCatalog({ type: "RELATION", limit: 100 }),
|
|
]).then(
|
|
([current, projectPage, catalog]) => {
|
|
if (cancelled) return;
|
|
setFocus(current);
|
|
setProjects(projectPage.items ?? []);
|
|
setRelations(catalog.items ?? []);
|
|
setProjectId(current.currentProjectId ?? "");
|
|
setQuestionId(current.openQuestionId ?? "");
|
|
setDecisionId(current.recentDecisionId ?? "");
|
|
setError("");
|
|
},
|
|
() => {
|
|
if (!cancelled) setError("홈 설정을 불러오지 못했습니다.");
|
|
},
|
|
);
|
|
return () => {
|
|
cancelled = true;
|
|
};
|
|
}, [gateway, managementGateway, generation]);
|
|
|
|
const questions = relations.filter((entry) => entry.kind === "QUESTION");
|
|
const decisions = relations.filter((entry) => entry.kind === "PROJECT_DECISION");
|
|
|
|
const save = async (event: FormEvent) => {
|
|
event.preventDefault();
|
|
if (pending || !focus) return;
|
|
setPending(true);
|
|
setError("");
|
|
try {
|
|
const saved = await managementGateway.updateHomeFocus({
|
|
expectedVersion: focus.version,
|
|
// 빈 문자열은 "고르지 않음" 이다. 계약은 uuid 만 받으므로 보내지 않는다.
|
|
currentProjectId: projectId || undefined,
|
|
openQuestionId: questionId || undefined,
|
|
recentDecisionId: decisionId || undefined,
|
|
});
|
|
setFocus(saved);
|
|
setRequestAnnouncement("홈에 표시할 항목을 저장했습니다.");
|
|
reload();
|
|
} catch (failure) {
|
|
setError(managementFailureMessage(failure, "홈 설정을 저장하지 못했습니다."));
|
|
} finally {
|
|
setPending(false);
|
|
}
|
|
};
|
|
|
|
const chosenProject = projects.find((project) => project.id === projectId);
|
|
const projectHidden = chosenProject && chosenProject.targetVisibility === "PRIVATE";
|
|
const nothingChosen = !projectId && !questionId && !decisionId;
|
|
|
|
return (
|
|
<section className="studio-work-section" aria-labelledby="studio-home-focus-title">
|
|
<div className="studio-section-title">
|
|
<h2 id="studio-home-focus-title">홈에 무엇을 띄울까</h2>
|
|
</div>
|
|
{error ? (
|
|
<p className="studio-screen-error" role="alert">
|
|
{error}
|
|
</p>
|
|
) : null}
|
|
{!focus && !error ? (
|
|
<p className="studio-loading" role="status">
|
|
홈 설정을 불러오는 중입니다.
|
|
</p>
|
|
) : null}
|
|
{focus ? (
|
|
<form className="studio-home-focus-form" onSubmit={save}>
|
|
<p className="studio-empty-inline">
|
|
공개 홈 맨 위 “지금 집중하는 것” 영역입니다. 셋 다 비워 두면 그 영역은
|
|
나타나지 않습니다.
|
|
</p>
|
|
|
|
<div className="studio-field">
|
|
<label htmlFor="home-focus-project">현재 작업 (프로젝트)</label>
|
|
<select
|
|
className="studio-control"
|
|
id="home-focus-project"
|
|
value={projectId}
|
|
onChange={(event) => setProjectId(event.target.value)}
|
|
>
|
|
<option value="">고르지 않음</option>
|
|
{projects.map((project) => (
|
|
<option key={project.id} value={project.id}>
|
|
{project.name}
|
|
{project.targetVisibility === "PRIVATE" ? " (비공개)" : ""}
|
|
</option>
|
|
))}
|
|
</select>
|
|
{projectHidden ? (
|
|
<p className="studio-field-note">
|
|
이 프로젝트는 아직 비공개입니다. 주제·프로젝트 화면에서 게시해야 홈에 나타납니다.
|
|
</p>
|
|
) : null}
|
|
</div>
|
|
|
|
<div className="studio-field">
|
|
<label htmlFor="home-focus-question">열린 질문</label>
|
|
<select
|
|
className="studio-control"
|
|
id="home-focus-question"
|
|
value={questionId}
|
|
onChange={(event) => setQuestionId(event.target.value)}
|
|
>
|
|
<option value="">고르지 않음</option>
|
|
{questions.map((entry) => (
|
|
<option key={entry.id} value={entry.id}>
|
|
{entry.label}
|
|
</option>
|
|
))}
|
|
</select>
|
|
{questions.length === 0 ? (
|
|
<p className="studio-field-note">아직 Question 문서가 없습니다.</p>
|
|
) : null}
|
|
</div>
|
|
|
|
<div className="studio-field">
|
|
<label htmlFor="home-focus-decision">최근 결정</label>
|
|
<select
|
|
className="studio-control"
|
|
id="home-focus-decision"
|
|
value={decisionId}
|
|
onChange={(event) => setDecisionId(event.target.value)}
|
|
>
|
|
<option value="">고르지 않음</option>
|
|
{decisions.map((entry) => (
|
|
<option key={entry.id} value={entry.id}>
|
|
{entry.label}
|
|
</option>
|
|
))}
|
|
</select>
|
|
{decisions.length === 0 ? (
|
|
<p className="studio-field-note">아직 Decision 문서가 없습니다.</p>
|
|
) : null}
|
|
</div>
|
|
|
|
{nothingChosen ? (
|
|
<p className="studio-field-note">
|
|
지금은 아무것도 고르지 않아 홈에 이 영역이 나타나지 않습니다.
|
|
</p>
|
|
) : null}
|
|
|
|
<div className="studio-row-actions">
|
|
<button className="studio-primary-button" type="submit" disabled={pending}>
|
|
{pending ? "저장하는 중" : "홈 설정 저장"}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
) : null}
|
|
</section>
|
|
);
|
|
}
|