feat(fsd): 허브·스페이스 중심 UI 목업 구조로 재편

맥락:

- 기존 라우트/컴포넌트 구조를 FSD 기준으로 정리하고, /app 허브와 /space 집중 화면 중심의 목업 흐름을 구성하기 위해

변경사항:

- App Router 구조를 /landing, /app, /space, /stats, /settings 중심으로 재배치

- entities/session/room/user 더미 데이터와 타입 정의 추가

- features(커스텀 입장, 룸 선택, 체크인, 리액션, 30초 리스타트 등) 단위로 로직 분리

- widgets(허브, 룸 갤러리, 타이머 HUD, 툴 도크 등) 조합형 UI 추가

- shared 공용 UI(Button/Chip/Modal/Toast 등) 및 유틸(cn/useReducedMotion) 정비

- 로그인 후 이동 경로를 /dashboard 에서 /app 으로 변경

- README를 현재 프로젝트 구조/라우트/구현 범위 기준으로 갱신

검증:

- npx tsc --noEmit

세션-상태: 허브·스페이스 목업이 FSD 레이어로 동작 가능하도록 정리됨

세션-다음: /space 상단 및 도크의 인원 수 카피를 분위기형 카피로 후속 정리

세션-리스크: build는 네트워크 환경에서 Google Fonts fetch 실패 가능
This commit is contained in:
2026-02-27 13:30:55 +09:00
parent 583837fb8d
commit cbd9017744
87 changed files with 2900 additions and 176 deletions

97
src/shared/ui/Modal.tsx Normal file
View File

@@ -0,0 +1,97 @@
'use client';
import type { ReactNode } from 'react';
import { useEffect } from 'react';
import { cn } from '@/shared/lib/cn';
import { useReducedMotion } from '@/shared/lib/useReducedMotion';
interface ModalProps {
isOpen: boolean;
title: string;
description?: string;
onClose: () => void;
children: ReactNode;
footer?: ReactNode;
}
export const Modal = ({
isOpen,
title,
description,
onClose,
children,
footer,
}: ModalProps) => {
const reducedMotion = useReducedMotion();
useEffect(() => {
if (!isOpen) {
return;
}
const onKeyDown = (event: KeyboardEvent) => {
if (event.key === 'Escape') {
onClose();
}
};
document.addEventListener('keydown', onKeyDown);
return () => {
document.removeEventListener('keydown', onKeyDown);
};
}, [isOpen, onClose]);
if (!isOpen) {
return null;
}
return (
<div className="fixed inset-0 z-50 flex items-end justify-center p-4 sm:items-center">
<button
type="button"
aria-label="모달 닫기"
onClick={onClose}
className="absolute inset-0 bg-slate-950/78 backdrop-blur-sm"
/>
<div
role="dialog"
aria-modal="true"
aria-labelledby="custom-entry-modal-title"
className={cn(
'relative z-10 w-full max-w-3xl overflow-hidden rounded-3xl border border-white/20 bg-slate-950/92 shadow-[0_30px_100px_rgba(2,6,23,0.65)]',
reducedMotion
? 'transition-none'
: 'transition-transform duration-300 ease-out motion-reduce:transition-none',
)}
>
<header className="border-b border-white/12 px-6 py-5 sm:px-7">
<div className="flex items-start justify-between gap-4">
<div>
<h2 id="custom-entry-modal-title" className="text-lg font-semibold text-white">
{title}
</h2>
{description ? (
<p className="mt-1 text-sm text-white/65">{description}</p>
) : null}
</div>
<button
type="button"
onClick={onClose}
className="rounded-lg border border-white/20 px-2.5 py-1.5 text-xs text-white/80 transition hover:bg-white/10 hover:text-white"
>
</button>
</div>
</header>
<div className="max-h-[68vh] overflow-y-auto px-6 py-5 sm:px-7">{children}</div>
{footer ? (
<footer className="border-t border-white/12 bg-slate-900/80 px-6 py-4 sm:px-7">{footer}</footer>
) : null}
</div>
</div>
);
};