feat(SAM/WEB): 거래처관리 페이지에 신규업체 FCM 알림 버튼 추가

- fcm.ts에 sendNewClientNotification 프리셋 함수 추가
  - channel_id: push_urgent (신규업체 알림용)
  - type: new_client
- 거래처관리 페이지에 "신규업체" 알림 버튼 추가
  - Bell 아이콘과 함께 헤더 액션에 배치
  - useTransition으로 로딩 상태 관리
This commit is contained in:
2026-01-13 20:42:43 +09:00
parent 60d42b2e2e
commit b30a51e84a
2 changed files with 47 additions and 5 deletions

View File

@@ -145,4 +145,19 @@ export async function sendNoticeNotification(
channel_id: 'notice',
...customParams,
});
}
/**
* 신규업체 알림 발송 (프리셋)
*/
export async function sendNewClientNotification(
customParams?: Partial<FcmNotificationParams>
): Promise<FcmResult> {
return sendFcmNotification({
title: '신규업체 알림',
body: '새로운 업체가 등록되었습니다.',
type: 'new_client',
channel_id: 'push_urgent',
...customParams,
});
}