2e3345cdfc
修复雪花 ID 精度丢失(真 bug) - bottom-sheet 的 postId 声明为 Number,而 ID 是 18 位雪花字符串, 超出 JS 安全整数范围:339346584095428608 会被转成 ...600, 评论弹层实际查的是不存在的帖子。改为 String 记录 - 后端 DELETE /records/:id 早已就绪但前端从未调用,记错了删不掉。 时间轴支持长按删除 - 时间轴加类型筛选(体重/便便/饮食/异常/用药/疫苗/消费/照片), 后端 ?type= 本就支持 用户侧内容删除(UGC 合规:用户应能删除自己发布的内容) - 新增 DELETE /posts/:id 与 DELETE /comments/:id,仅限本人, 越权返回 40300;帖子软删除,评论删除同步递减 comment_count - 评论列表返回 is_self;社区长按自己的帖子、长按自己的评论可删 AI 聊天历史 - ai_messages 一直在写但没有查询接口,每次打开弹层都是空白。 新增 GET /api/ai/messages,弹层打开时接在开场白后加载 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
144 lines
4.4 KiB
JavaScript
144 lines
4.4 KiB
JavaScript
const store = require('../../utils/store.js');
|
|
const api = require('../../utils/api.js');
|
|
|
|
const TAG_CLASS = { 求助: 'warn', 经验: 'blue', 精选: 'purple', 避坑: 'red', 晒宠: '' };
|
|
|
|
function mapPost(p) {
|
|
const tags = p.tags || [];
|
|
const tag = tags[0] || '';
|
|
return {
|
|
id: p.id,
|
|
author_name: p.author_name,
|
|
author_emoji: p.author_emoji || '🐾',
|
|
content: p.content,
|
|
images: p.images || [],
|
|
like_count: p.like_count,
|
|
comment_count: p.comment_count,
|
|
liked: false,
|
|
tag,
|
|
tagClass: TAG_CLASS[tag] || '',
|
|
is_ai: !!p.is_ai,
|
|
user_id: p.user_id,
|
|
followed: !!p.followed,
|
|
is_self: !!p.is_self,
|
|
};
|
|
}
|
|
|
|
Page({
|
|
data: {
|
|
pet: {},
|
|
feedTabs: ['推荐', '关注', '新手求助', '晒宠', '经验'],
|
|
feedIdx: 0,
|
|
posts: [],
|
|
sheetShow: false,
|
|
sheetType: '',
|
|
sheetPostId: '',
|
|
},
|
|
onLoad() {
|
|
this._unsub = store.subscribe((pet) => this.setData({ pet }));
|
|
},
|
|
onUnload() {
|
|
if (this._unsub) this._unsub();
|
|
},
|
|
onShow() {
|
|
if (typeof this.getTabBar === 'function' && this.getTabBar()) {
|
|
this.getTabBar().setData({ selected: 4 });
|
|
}
|
|
store
|
|
.ready()
|
|
.then(() => {
|
|
this.setData({ pet: store.getPet() });
|
|
this.loadPosts();
|
|
})
|
|
.catch((e) => wx.showToast({ title: e.message || '加载失败', icon: 'none' }));
|
|
},
|
|
loadPosts() {
|
|
const tab = this.data.feedTabs[this.data.feedIdx];
|
|
api
|
|
.listPosts(tab, 1)
|
|
.then((page) => this.setData({ posts: (page.list || []).map(mapPost) }))
|
|
.catch(() => {});
|
|
},
|
|
switchFeedTab(e) {
|
|
this.setData({ feedIdx: e.currentTarget.dataset.index });
|
|
this.loadPosts();
|
|
},
|
|
likePost(e) {
|
|
const i = e.currentTarget.dataset.index;
|
|
const post = this.data.posts[i];
|
|
api
|
|
.likePost(post.id)
|
|
.then((res) => {
|
|
this.setData({ [`posts[${i}].like_count`]: res.like_count, [`posts[${i}].liked`]: true });
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
openComments(e) {
|
|
this.setData({ sheetPostId: e.currentTarget.dataset.id, sheetType: 'comments', sheetShow: true });
|
|
},
|
|
openSheet(e) {
|
|
this.setData({ sheetType: e.currentTarget.dataset.type, sheetPostId: '', sheetShow: true });
|
|
},
|
|
closeSheet() {
|
|
this.setData({ sheetShow: false });
|
|
},
|
|
onPosted() {
|
|
this.setData({ sheetShow: false });
|
|
this.loadPosts();
|
|
},
|
|
onCommented() {
|
|
this.loadPosts();
|
|
},
|
|
goLearn() {
|
|
wx.navigateTo({ url: '/pages/learn/learn' });
|
|
},
|
|
onFab() {
|
|
this.setData({ sheetType: 'ai', sheetPostId: '', sheetShow: true });
|
|
},
|
|
// 长按自己的帖子可删除
|
|
onLongPressPost(e) {
|
|
const p = this.data.posts[e.currentTarget.dataset.index];
|
|
if (!p || !p.is_self) return;
|
|
wx.showModal({
|
|
title: '删除帖子',
|
|
content: '确定删除这条帖子?删除后其他人将看不到。',
|
|
confirmColor: '#D9534F',
|
|
success: (res) => {
|
|
if (!res.confirm) return;
|
|
api.deletePost(p.id)
|
|
.then(() => { wx.showToast({ title: '已删除', icon: 'success' }); this.loadPosts(); })
|
|
.catch((err) => wx.showToast({ title: err.message || '删除失败', icon: 'none' }));
|
|
},
|
|
});
|
|
},
|
|
// 关注 / 取关帖子作者
|
|
toggleFollow(e) {
|
|
const i = e.currentTarget.dataset.index;
|
|
const p = this.data.posts[i];
|
|
if (!p || !p.user_id || p.is_self) return;
|
|
const fn = p.followed ? api.unfollowUser : api.followUser;
|
|
fn(p.user_id)
|
|
.then(() => {
|
|
// 同一作者的所有帖子一起更新状态
|
|
const posts = this.data.posts.map((x) =>
|
|
x.user_id === p.user_id ? { ...x, followed: !p.followed } : x,
|
|
);
|
|
this.setData({ posts });
|
|
wx.showToast({ title: p.followed ? '已取消关注' : '已关注', icon: 'none' });
|
|
if (this.data.feedTabs[this.data.feedIdx] === '关注') this.loadPosts();
|
|
})
|
|
.catch((err) => wx.showToast({ title: err.message || '操作失败', icon: 'none' }));
|
|
},
|
|
onShareAppMessage(e) {
|
|
// 从帖子上的分享按钮转发:带上该帖内容做标题
|
|
if (e && e.from === 'button') {
|
|
const c = (e.target.dataset.content || '').slice(0, 40);
|
|
return { title: c ? '宠友圈:' + c : '来宠友圈看看大家的毛孩子', path: '/pages/community/community' };
|
|
}
|
|
return { title: '宠友圈 · 和铲屎官们交流养宠经验', path: '/pages/community/community' };
|
|
},
|
|
onShareTimeline() {
|
|
return { title: '宠友圈 · 和铲屎官们交流养宠经验' };
|
|
},
|
|
});
|