241 lines
9.2 KiB
TypeScript
241 lines
9.2 KiB
TypeScript
import { Fragment, useEffect, useMemo, useState } from 'react';
|
|
import { FileText, Search, Smartphone } from 'lucide-react';
|
|
import { clientApi, type SmsMessageRecord } from '@/api/adminApi';
|
|
import {
|
|
DateRangeInput,
|
|
Input,
|
|
Pagination,
|
|
QueryPanel,
|
|
Select,
|
|
Tag,
|
|
type DateRangeValue,
|
|
} from '@/components/ui';
|
|
|
|
const statusLabelMap: Record<string, string> = {
|
|
delivered: '成功',
|
|
queued: '排队中',
|
|
submitted: '已提交',
|
|
accepted: '已受理',
|
|
unknown: '未知',
|
|
failed: '失败',
|
|
rejected: '失败',
|
|
timeout: '超时',
|
|
};
|
|
|
|
const statusToneMap: Record<string, 'success' | 'info' | 'danger' | 'neutral'> = {
|
|
delivered: 'success',
|
|
queued: 'info',
|
|
submitted: 'info',
|
|
accepted: 'info',
|
|
unknown: 'neutral',
|
|
failed: 'danger',
|
|
rejected: 'danger',
|
|
timeout: 'danger',
|
|
};
|
|
|
|
const carrierLabelMap: Record<string, string> = {
|
|
mobile: '中国移动',
|
|
unicom: '中国联通',
|
|
telecom: '中国电信',
|
|
all: '三网',
|
|
};
|
|
|
|
function getDate(value?: string | null) {
|
|
return value ? value.slice(0, 10) : '';
|
|
}
|
|
|
|
function getReceipt(record: SmsMessageRecord) {
|
|
const latest = record.receiptRecords?.[0] as { rawStatus?: string; receiptStatus?: string; deliveredAt?: string } | undefined;
|
|
return {
|
|
status: latest?.rawStatus ?? latest?.receiptStatus ?? record.receiptStatus ?? '-',
|
|
time: latest?.deliveredAt ?? record.deliveredAt,
|
|
};
|
|
}
|
|
|
|
export function ClientSendDetailPage() {
|
|
const [records, setRecords] = useState<SmsMessageRecord[]>([]);
|
|
const [applicationId, setApplicationId] = useState('all');
|
|
const [status, setStatus] = useState('all');
|
|
const [dateRange, setDateRange] = useState<DateRangeValue>({});
|
|
const [contentKeyword, setContentKeyword] = useState('');
|
|
const [phoneKeyword, setPhoneKeyword] = useState('');
|
|
const [page, setPage] = useState(1);
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState('');
|
|
|
|
function loadData() {
|
|
setLoading(true);
|
|
clientApi.listMessages({
|
|
applicationId: applicationId === 'all' ? undefined : applicationId,
|
|
phoneNumber: phoneKeyword || undefined,
|
|
status: status === 'all' ? undefined : status,
|
|
})
|
|
.then((items) => {
|
|
setRecords(items);
|
|
setError('');
|
|
})
|
|
.catch((reason: Error) => setError(reason.message || '短信发送详情加载失败'))
|
|
.finally(() => setLoading(false));
|
|
}
|
|
|
|
useEffect(() => {
|
|
loadData();
|
|
}, [applicationId, phoneKeyword, status]);
|
|
|
|
const applicationOptions = useMemo(() => {
|
|
const applications = new Map<string, string>();
|
|
records.forEach((item) => {
|
|
if (item.applicationId) {
|
|
applications.set(item.applicationId, item.application?.name ?? item.applicationId);
|
|
}
|
|
});
|
|
return [
|
|
{ label: '全部应用', value: 'all' },
|
|
...Array.from(applications.entries()).map(([value, label]) => ({ label, value })),
|
|
];
|
|
}, [records]);
|
|
|
|
const filteredRows = records.filter((item) => {
|
|
const sentDate = getDate(item.queuedAt);
|
|
const matchesStartDate = !dateRange.start || sentDate >= dateRange.start;
|
|
const matchesEndDate = !dateRange.end || sentDate <= dateRange.end;
|
|
const matchesContent = !contentKeyword || item.content.includes(contentKeyword);
|
|
return matchesStartDate && matchesEndDate && matchesContent;
|
|
});
|
|
const pageSize = 10;
|
|
const totalPages = Math.max(1, Math.ceil(filteredRows.length / pageSize));
|
|
const currentPage = Math.min(page, totalPages);
|
|
const visibleRows = filteredRows.slice((currentPage - 1) * pageSize, currentPage * pageSize);
|
|
|
|
useEffect(() => {
|
|
setPage(1);
|
|
}, [contentKeyword, dateRange.end, dateRange.start, records.length]);
|
|
|
|
return (
|
|
<section className="page-stack">
|
|
<div className="sms-send-title">
|
|
<span className="sms-send-title__icon">
|
|
<FileText size={22} />
|
|
</span>
|
|
<h1>短信发送详情</h1>
|
|
</div>
|
|
|
|
<QueryPanel
|
|
title="查询条件"
|
|
summary={<>共找到 <strong>{filteredRows.length}</strong> 条发送记录</>}
|
|
>
|
|
<Select label="应用名称" onChange={(event) => setApplicationId(event.target.value)} options={applicationOptions} value={applicationId} />
|
|
<DateRangeInput label="发送时间" onChange={setDateRange} value={dateRange} />
|
|
<Select
|
|
label="发送状态"
|
|
onChange={(event) => setStatus(event.target.value)}
|
|
options={[
|
|
{ label: '全部', value: 'all' },
|
|
{ label: '成功', value: 'delivered' },
|
|
{ label: '未知', value: 'unknown' },
|
|
{ label: '失败', value: 'failed' },
|
|
]}
|
|
value={status}
|
|
/>
|
|
<Input
|
|
label="短信内容"
|
|
onChange={(event) => setContentKeyword(event.target.value)}
|
|
placeholder="输入关键词搜索"
|
|
prefix={<Search size={16} />}
|
|
value={contentKeyword}
|
|
/>
|
|
<Input
|
|
label="手机号码"
|
|
onChange={(event) => setPhoneKeyword(event.target.value)}
|
|
placeholder="输入手机号搜索"
|
|
prefix={<Smartphone size={16} />}
|
|
value={phoneKeyword}
|
|
/>
|
|
</QueryPanel>
|
|
|
|
{error ? <p className="form-error">{error}</p> : null}
|
|
|
|
<div className="surface send-detail-table-card">
|
|
<div className="ui-table-wrap">
|
|
<table className="ui-table send-detail-table">
|
|
<thead>
|
|
<tr>
|
|
<th style={{ width: '150px' }}>应用名称</th>
|
|
<th style={{ width: '128px' }}>发送时间</th>
|
|
<th style={{ width: '120px', textAlign: 'center' }}>字符数/条数</th>
|
|
<th style={{ width: '130px' }}>手机号码</th>
|
|
<th style={{ width: '120px' }}>所属运营商</th>
|
|
<th style={{ width: '120px' }}>发送地区</th>
|
|
<th style={{ width: '120px', textAlign: 'center' }}>发送状态</th>
|
|
<th style={{ width: '120px', textAlign: 'center' }}>短信回执</th>
|
|
<th style={{ width: '128px' }}>回执时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{loading ? (
|
|
<tr><td className="ui-table__empty" colSpan={9}>正在加载真实发送记录...</td></tr>
|
|
) : filteredRows.length === 0 ? (
|
|
<tr><td className="ui-table__empty" colSpan={9}>暂无发送记录</td></tr>
|
|
) : visibleRows.map((record) => {
|
|
const receipt = getReceipt(record);
|
|
const carrier = record.carrier ? carrierLabelMap[record.carrier] ?? record.carrier : '-';
|
|
const region = record.province ?? '-';
|
|
return (
|
|
<Fragment key={record.id}>
|
|
<tr className="send-detail-main-row">
|
|
<td><strong className="send-detail-app-name">{record.application?.name ?? record.applicationId ?? '-'}</strong></td>
|
|
<td>
|
|
<span className="send-detail-time">
|
|
{record.queuedAt.slice(0, 10)}
|
|
<small>{record.queuedAt.slice(11, 19)}</small>
|
|
</span>
|
|
</td>
|
|
<td style={{ textAlign: 'center' }}>
|
|
<span className="send-detail-count">
|
|
<strong>{[...record.content].length}字</strong>
|
|
<small>{record.billingUnits}条</small>
|
|
</span>
|
|
</td>
|
|
<td><strong>{record.phoneNumber}</strong></td>
|
|
<td><strong className="send-detail-carrier">{carrier}</strong></td>
|
|
<td><span className="send-detail-region">{region}</span></td>
|
|
<td style={{ textAlign: 'center' }}><Tag tone={statusToneMap[record.status] ?? 'info'}>{statusLabelMap[record.status] ?? record.status}</Tag></td>
|
|
<td style={{ textAlign: 'center' }}><strong className="send-detail-receipt-code">{receipt.status}</strong></td>
|
|
<td>
|
|
{receipt.time ? (
|
|
<span className="send-detail-time">
|
|
{receipt.time.slice(0, 10)}
|
|
<small>{receipt.time.slice(11, 19)}</small>
|
|
</span>
|
|
) : <span className="muted">-</span>}
|
|
</td>
|
|
</tr>
|
|
<tr className="send-detail-content-row">
|
|
<td colSpan={9}>
|
|
<div className="send-detail-content-block">
|
|
<span>短信内容</span>
|
|
<p>{record.content}</p>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</Fragment>
|
|
);
|
|
})}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<Pagination
|
|
nextDisabled={currentPage >= totalPages}
|
|
onNext={() => setPage((value) => Math.min(totalPages, value + 1))}
|
|
onPrevious={() => setPage((value) => Math.max(1, value - 1))}
|
|
page={currentPage}
|
|
totalPages={totalPages}
|
|
onPageChange={setPage}
|
|
previousDisabled={currentPage <= 1}
|
|
total={filteredRows.length}
|
|
/>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|