feat(sns): show per-contact post counts in filter panel

This commit is contained in:
tisonhuang
2026-03-02 13:43:21 +08:00
parent bc739dc4a0
commit 204baa52ab
7 changed files with 86 additions and 15 deletions

View File

@@ -1044,6 +1044,10 @@ function registerIpcHandlers() {
return snsService.getSnsUsernames()
})
ipcMain.handle('sns:getUserPostCounts', async () => {
return snsService.getUserPostCounts()
})
ipcMain.handle('sns:getExportStats', async () => {
return snsService.getExportStats()
})

View File

@@ -294,6 +294,7 @@ contextBridge.exposeInMainWorld('electronAPI', {
getTimeline: (limit: number, offset: number, usernames?: string[], keyword?: string, startTime?: number, endTime?: number) =>
ipcRenderer.invoke('sns:getTimeline', limit, offset, usernames, keyword, startTime, endTime),
getSnsUsernames: () => ipcRenderer.invoke('sns:getSnsUsernames'),
getUserPostCounts: () => ipcRenderer.invoke('sns:getUserPostCounts'),
getExportStatsFast: () => ipcRenderer.invoke('sns:getExportStatsFast'),
getExportStats: () => ipcRenderer.invoke('sns:getExportStats'),
debugResource: (url: string) => ipcRenderer.invoke('sns:debugResource', url),

View File

@@ -407,6 +407,40 @@ class SnsService {
return { success: true, usernames: result.rows.map((r: any) => r.user_name).filter(Boolean) }
}
async getUserPostCounts(): Promise<{ success: boolean; data?: Record<string, number>; error?: string }> {
try {
const counts: Record<string, number> = {}
const primary = await wcdbService.execQuery(
'sns',
null,
"SELECT user_name AS username, COUNT(1) AS total FROM SnsTimeLine WHERE user_name IS NOT NULL AND user_name <> '' GROUP BY user_name"
)
let rows = primary.rows
if (!primary.success || !rows) {
const fallback = await wcdbService.execQuery(
'sns',
null,
"SELECT userName AS username, COUNT(1) AS total FROM SnsTimeLine WHERE userName IS NOT NULL AND userName <> '' GROUP BY userName"
)
if (!fallback.success || !fallback.rows) {
return { success: false, error: primary.error || fallback.error || '获取朋友圈联系人条数失败' }
}
rows = fallback.rows
}
for (const row of rows) {
const usernameRaw = row?.username ?? row?.user_name ?? row?.userName ?? ''
const username = typeof usernameRaw === 'string' ? usernameRaw.trim() : String(usernameRaw || '').trim()
if (!username) continue
counts[username] = this.parseCountValue(row)
}
return { success: true, data: counts }
} catch (e) {
return { success: false, error: String(e) }
}
}
private async getExportStatsFromTableCount(): Promise<{ totalPosts: number; totalFriends: number }> {
let totalPosts = 0
let totalFriends = 0

View File

@@ -7,6 +7,7 @@ interface Contact {
username: string
displayName: string
avatarUrl?: string
postCount?: number
}
interface SnsFilterPanelProps {
@@ -150,7 +151,10 @@ export const SnsFilterPanel: React.FC<SnsFilterPanelProps> = ({
onClick={() => toggleUserSelection(contact.username)}
>
<Avatar src={contact.avatarUrl} name={contact.displayName} size={36} shape="rounded" />
<div className="contact-meta">
<span className="contact-name">{contact.displayName}</span>
<span className="contact-post-count">{Math.max(0, Number(contact.postCount || 0))} </span>
</div>
</div>
))}
{filteredContacts.length === 0 && (

View File

@@ -1055,11 +1055,18 @@
margin-bottom: 0;
/* Remove margin to merge */
.contact-meta {
.contact-name {
color: var(--primary);
font-weight: 600;
}
.contact-post-count {
color: var(--primary);
opacity: 0.9;
}
}
/* If the NEXT item is also selected */
&:has(+ .contact-row.selected) {
border-bottom: none;
@@ -1080,14 +1087,27 @@
/* Compensate for missing border */
}
.contact-name {
.contact-meta {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
gap: 2px;
.contact-name {
font-size: 14px;
color: var(--text-secondary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.contact-post-count {
font-size: 12px;
color: var(--text-tertiary);
line-height: 1.2;
}
}
}
}

View File

@@ -11,6 +11,7 @@ interface Contact {
displayName: string
avatarUrl?: string
type?: 'friend' | 'former_friend' | 'sns_only'
postCount: number
}
interface SnsOverviewStats {
@@ -251,11 +252,16 @@ export default function SnsPage() {
const loadContacts = useCallback(async () => {
setContactsLoading(true)
try {
// 并行获取联系人列表朋友圈发布者列表
const [contactsResult, snsResult] = await Promise.all([
// 并行获取联系人列表朋友圈发布者列表和每个发布者的动态条数
const [contactsResult, snsResult, snsCountsResult] = await Promise.all([
window.electronAPI.chat.getContacts(),
window.electronAPI.sns.getSnsUsernames()
window.electronAPI.sns.getSnsUsernames(),
window.electronAPI.sns.getUserPostCounts()
])
const snsPostCountMap = new Map<string, number>(
Object.entries(snsCountsResult.success ? (snsCountsResult.data || {}) : {})
.map(([username, count]) => [username, Math.max(0, Number(count || 0))])
)
// 以联系人为基础,按 username 去重
const contactMap = new Map<string, Contact>()
@@ -268,7 +274,8 @@ export default function SnsPage() {
username: c.username,
displayName: c.displayName,
avatarUrl: c.avatarUrl,
type: c.type === 'former_friend' ? 'former_friend' : 'friend'
type: c.type === 'former_friend' ? 'former_friend' : 'friend',
postCount: snsPostCountMap.get(c.username) || 0
})
}
}
@@ -278,7 +285,7 @@ export default function SnsPage() {
if (snsResult.success && snsResult.usernames) {
for (const u of snsResult.usernames) {
if (!contactMap.has(u)) {
contactMap.set(u, { username: u, displayName: u, type: 'sns_only' })
contactMap.set(u, { username: u, displayName: u, type: 'sns_only', postCount: snsPostCountMap.get(u) || 0 })
}
}
}

View File

@@ -591,6 +591,7 @@ export interface ElectronAPI {
onExportProgress: (callback: (payload: { current: number; total: number; status: string }) => void) => () => void
selectExportDir: () => Promise<{ canceled: boolean; filePath?: string }>
getSnsUsernames: () => Promise<{ success: boolean; usernames?: string[]; error?: string }>
getUserPostCounts: () => Promise<{ success: boolean; data?: Record<string, number>; error?: string }>
getExportStatsFast: () => Promise<{ success: boolean; data?: { totalPosts: number; totalFriends: number }; error?: string }>
getExportStats: () => Promise<{ success: boolean; data?: { totalPosts: number; totalFriends: number }; error?: string }>
installBlockDeleteTrigger: () => Promise<{ success: boolean; alreadyInstalled?: boolean; error?: string }>