feat(m13): cross-resource search + dashboard completion, tests, e2e

- SearchService (cross-resource keyword search across board/chat/todo/file/
  event/meeting/milestone/note with type filter, project isolation)
- DashboardService (project dashboard: in-progress todos, near-due(7d),
  latest chat/board/notes/files(5), next meeting, milestones w/ progress,
  recent activity(10); personal dashboard: my projects, incomplete todos,
  upcoming meetings, unread notifications, overdue tasks, recent activity)
- CalendarRepository.findByProject
- APIs: GET /api/projects/:projectId/search, GET /api/dashboard
- Screens: complete personal dashboard, complete project overview,
  search page + SearchForm, ProjectNav 検索 link
- Unit tests (SearchService, DashboardService) + e2e dashboard
This commit is contained in:
Ken Yasue
2026-06-25 02:28:17 +02:00
parent a632574fb0
commit 755c242d2b
14 changed files with 1192 additions and 53 deletions

View File

@ -8,6 +8,7 @@ const NAV_ITEMS = [
{ href: '/calendar', label: 'カレンダー' },
{ href: '/milestones', label: 'マイルストーン' },
{ href: '/meetings', label: 'ミーティング' },
{ href: '/search', label: '検索' },
{ href: '/members', label: 'メンバー' },
{ href: '/activity', label: 'アクティビティ' },
{ href: '/settings', label: '設定' },
@ -32,6 +33,7 @@ export function ProjectNav({
| 'calendar'
| 'milestones'
| 'meetings'
| 'search'
| 'members'
| 'activity'
| 'settings';
@ -46,6 +48,7 @@ export function ProjectNav({
calendar: active === 'calendar',
milestones: active === 'milestones',
meetings: active === 'meetings',
search: active === 'search',
members: active === 'members',
activity: active === 'activity',
settings: active === 'settings',

View File

@ -0,0 +1,72 @@
'use client';
import { useState, type FormEvent } from 'react';
import { useRouter } from 'next/navigation';
const TYPES = [
{ value: '', label: 'すべて' },
{ value: 'thread', label: '掲示板' },
{ value: 'chat', label: 'チャット' },
{ value: 'todo', label: 'ToDo' },
{ value: 'file', label: 'ファイル' },
{ value: 'event', label: 'イベント' },
{ value: 'meeting', label: 'ミーティング' },
{ value: 'milestone', label: 'マイルストーン' },
{ value: 'note', label: 'メモ' },
];
export function SearchForm({
projectId,
initialQ,
initialType,
}: {
projectId: number;
initialQ: string;
initialType: string;
}) {
const router = useRouter();
const [q, setQ] = useState(initialQ);
const [type, setType] = useState(initialType);
function onSubmit(event: FormEvent<HTMLFormElement>) {
event.preventDefault();
const params = new URLSearchParams();
if (q) params.set('q', q);
if (type) params.set('type', type);
router.push(`/projects/${projectId}/search?${params.toString()}`);
}
return (
<form
onSubmit={onSubmit}
className="flex flex-col gap-2 rounded-lg border bg-white p-4 shadow-sm sm:flex-row"
data-testid="search-form"
>
<input
type="text"
value={q}
onChange={(e) => setQ(e.target.value)}
placeholder="キーワード"
className="flex-1 rounded border px-3 py-2"
data-testid="search-input"
/>
<select
value={type}
onChange={(e) => setType(e.target.value)}
className="rounded border px-2 py-2"
>
{TYPES.map((t) => (
<option key={t.value} value={t.value}>
{t.label}
</option>
))}
</select>
<button
type="submit"
className="rounded bg-blue-600 px-4 py-2 font-medium text-white hover:bg-blue-700"
>
</button>
</form>
);
}