채널 카드 필터 UI, 캐시 초기화, 나라 필터 수정

- 채널 설명/태그 DB 컬럼 추가 및 백오피스 편집 기능
- 채널 드롭다운을 유튜브 아이콘 토글 카드로 변경 (데스크톱 최대 4개 표시, 스크롤)
- 모바일 홈탭 채널 카드 가로 스크롤
- region "나라" 값 필터 옵션에서 제외
- 관리자 캐시 초기화 버튼 및 API 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
joungmin
2026-03-11 16:10:21 +09:00
parent 0f985d52a9
commit 2a0ee1d2cc
9 changed files with 211 additions and 42 deletions

View File

@@ -70,6 +70,8 @@ export interface Channel {
channel_id: string;
channel_name: string;
title_filter: string | null;
description: string | null;
tags: string | null;
video_count: number;
last_scanned_at: string | null;
}
@@ -350,6 +352,13 @@ export const api = {
);
},
updateChannel(id: string, data: { description?: string; tags?: string }) {
return fetchApi<{ ok: boolean }>(`/api/channels/${id}`, {
method: "PUT",
body: JSON.stringify(data),
});
},
deleteChannel(channelId: string) {
return fetchApi<{ ok: boolean }>(`/api/channels/${channelId}`, {
method: "DELETE",
@@ -497,6 +506,12 @@ export const api = {
});
},
flushCache() {
return fetchApi<{ ok: boolean }>("/api/admin/cache-flush", {
method: "POST",
});
},
runDaemonProcess(limit: number = 10) {
return fetchApi<{ ok: boolean; restaurants_extracted: number }>(
`/api/daemon/run/process?limit=${limit}`,