import { Component, linkEvent } from "inferno"; import { AddAdmin, AddModToCommunity, BanFromCommunity, BanFromCommunityResponse, BanPerson, BanPersonResponse, BlockPerson, CommentId, CommentReplyResponse, CommentReplyView, CommentReportResponse, CommentResponse, CommentSortType, CommentView, CreateComment, CreateCommentLike, CreateCommentReport, CreatePrivateMessage, CreatePrivateMessageReport, DeleteComment, DeletePrivateMessage, DistinguishComment, EditComment, EditPrivateMessage, GetPersonMentionsResponse, GetRepliesResponse, GetSiteResponse, MarkCommentReplyAsRead, MarkPersonMentionAsRead, MarkPrivateMessageAsRead, PersonMentionResponse, PersonMentionView, PrivateMessageReportResponse, PrivateMessageResponse, PrivateMessageView, PrivateMessagesResponse, PurgeComment, PurgeItemResponse, PurgePerson, PurgePost, RemoveComment, SaveComment, TransferCommunity, } from "lemmy-js-client"; import { i18n } from "../../i18next"; import { CommentViewType, InitialFetchRequest } from "../../interfaces"; import { UserService } from "../../services"; import { FirstLoadService } from "../../services/FirstLoadService"; import { HttpService, RequestState } from "../../services/HttpService"; import { RouteDataResponse, commentsToFlatNodes, editCommentReply, editMention, editPrivateMessage, editWith, enableDownvotes, fetchLimit, getCommentParentId, myAuth, myAuthRequired, relTags, setIsoData, toast, updatePersonBlock, } from "../../utils"; import { CommentNodes } from "../comment/comment-nodes"; import { CommentSortSelect } from "../common/comment-sort-select"; import { HtmlTags } from "../common/html-tags"; import { Icon, Spinner } from "../common/icon"; import { Paginator } from "../common/paginator"; import { PrivateMessage } from "../private_message/private-message"; enum UnreadOrAll { Unread, All, } enum MessageType { All, Replies, Mentions, Messages, } enum ReplyEnum { Reply, Mention, Message, } type InboxData = RouteDataResponse<{ repliesResponse: GetRepliesResponse; personMentionsResponse: GetPersonMentionsResponse; privateMessagesResponse: PrivateMessagesResponse; }>; type ReplyType = { id: number; type_: ReplyEnum; view: CommentView | PrivateMessageView | PersonMentionView | CommentReplyView; published: string; }; interface InboxState { unreadOrAll: UnreadOrAll; messageType: MessageType; repliesRes: RequestState; mentionsRes: RequestState; messagesRes: RequestState; markAllAsReadRes: RequestState; sort: CommentSortType; page: number; siteRes: GetSiteResponse; finished: Map; isIsomorphic: boolean; } export class Inbox extends Component { private isoData = setIsoData(this.context); state: InboxState = { unreadOrAll: UnreadOrAll.Unread, messageType: MessageType.All, sort: "New", page: 1, siteRes: this.isoData.site_res, repliesRes: { state: "empty" }, mentionsRes: { state: "empty" }, messagesRes: { state: "empty" }, markAllAsReadRes: { state: "empty" }, finished: new Map(), isIsomorphic: false, }; constructor(props: any, context: any) { super(props, context); this.handleSortChange = this.handleSortChange.bind(this); this.handlePageChange = this.handlePageChange.bind(this); this.handleCreateComment = this.handleCreateComment.bind(this); this.handleEditComment = this.handleEditComment.bind(this); this.handleSaveComment = this.handleSaveComment.bind(this); this.handleBlockPerson = this.handleBlockPerson.bind(this); this.handleDeleteComment = this.handleDeleteComment.bind(this); this.handleRemoveComment = this.handleRemoveComment.bind(this); this.handleCommentVote = this.handleCommentVote.bind(this); this.handleAddModToCommunity = this.handleAddModToCommunity.bind(this); this.handleAddAdmin = this.handleAddAdmin.bind(this); this.handlePurgePerson = this.handlePurgePerson.bind(this); this.handlePurgeComment = this.handlePurgeComment.bind(this); this.handleCommentReport = this.handleCommentReport.bind(this); this.handleDistinguishComment = this.handleDistinguishComment.bind(this); this.handleTransferCommunity = this.handleTransferCommunity.bind(this); this.handleCommentReplyRead = this.handleCommentReplyRead.bind(this); this.handlePersonMentionRead = this.handlePersonMentionRead.bind(this); this.handleBanFromCommunity = this.handleBanFromCommunity.bind(this); this.handleBanPerson = this.handleBanPerson.bind(this); this.handleDeleteMessage = this.handleDeleteMessage.bind(this); this.handleMarkMessageAsRead = this.handleMarkMessageAsRead.bind(this); this.handleMessageReport = this.handleMessageReport.bind(this); this.handleCreateMessage = this.handleCreateMessage.bind(this); this.handleEditMessage = this.handleEditMessage.bind(this); // Only fetch the data if coming from another route if (FirstLoadService.isFirstLoad) { const { personMentionsResponse: mentionsRes, privateMessagesResponse: messagesRes, repliesResponse: repliesRes, } = this.isoData.routeData; this.state = { ...this.state, repliesRes, mentionsRes, messagesRes, isIsomorphic: true, }; } } async componentDidMount() { if (!this.state.isIsomorphic) { await this.refetch(); } } get documentTitle(): string { const mui = UserService.Instance.myUserInfo; return mui ? `@${mui.local_user_view.person.name} ${i18n.t("inbox")} - ${ this.state.siteRes.site_view.site.name }` : ""; } get hasUnreads(): boolean { if (this.state.unreadOrAll == UnreadOrAll.Unread) { const { repliesRes, mentionsRes, messagesRes } = this.state; const replyCount = repliesRes.state == "success" ? repliesRes.data.replies.length : 0; const mentionCount = mentionsRes.state == "success" ? mentionsRes.data.mentions.length : 0; const messageCount = messagesRes.state == "success" ? messagesRes.data.private_messages.length : 0; return replyCount + mentionCount + messageCount > 0; } else { return false; } } render() { const auth = myAuth(); const inboxRss = auth ? `/feeds/inbox/${auth}.xml` : undefined; return (
{i18n.t("inbox")} {inboxRss && ( )}
{this.hasUnreads && ( )} {this.selects()} {this.section}
); } get section() { switch (this.state.messageType) { case MessageType.All: { return this.all(); } case MessageType.Replies: { return this.replies(); } case MessageType.Mentions: { return this.mentions(); } case MessageType.Messages: { return this.messages(); } default: { return null; } } } unreadOrAllRadios() { return (
); } messageTypeRadios() { return (
); } selects() { return (
{this.unreadOrAllRadios()} {this.messageTypeRadios()}
); } replyToReplyType(r: CommentReplyView): ReplyType { return { id: r.comment_reply.id, type_: ReplyEnum.Reply, view: r, published: r.comment.published, }; } mentionToReplyType(r: PersonMentionView): ReplyType { return { id: r.person_mention.id, type_: ReplyEnum.Mention, view: r, published: r.comment.published, }; } messageToReplyType(r: PrivateMessageView): ReplyType { return { id: r.private_message.id, type_: ReplyEnum.Message, view: r, published: r.private_message.published, }; } buildCombined(): ReplyType[] { const replies: ReplyType[] = this.state.repliesRes.state == "success" ? this.state.repliesRes.data.replies.map(this.replyToReplyType) : []; const mentions: ReplyType[] = this.state.mentionsRes.state == "success" ? this.state.mentionsRes.data.mentions.map(this.mentionToReplyType) : []; const messages: ReplyType[] = this.state.messagesRes.state == "success" ? this.state.messagesRes.data.private_messages.map( this.messageToReplyType ) : []; return [...replies, ...mentions, ...messages].sort((a, b) => b.published.localeCompare(a.published) ); } renderReplyType(i: ReplyType) { switch (i.type_) { case ReplyEnum.Reply: return ( ); case ReplyEnum.Mention: return ( ); case ReplyEnum.Message: return ( ); default: return
; } } all() { if ( this.state.repliesRes.state == "loading" || this.state.mentionsRes.state == "loading" || this.state.messagesRes.state == "loading" ) { return (
); } else { return (
{this.buildCombined().map(r => this.renderReplyType(r))}
); } } replies() { switch (this.state.repliesRes.state) { case "loading": return (
); case "success": { const replies = this.state.repliesRes.data.replies; return (
); } } } mentions() { switch (this.state.mentionsRes.state) { case "loading": return (
); case "success": { const mentions = this.state.mentionsRes.data.mentions; return (
{mentions.map(umv => ( ))}
); } } } messages() { switch (this.state.messagesRes.state) { case "loading": return (
); case "success": { const messages = this.state.messagesRes.data.private_messages; return (
{messages.map(pmv => ( ))}
); } } } async handlePageChange(page: number) { this.setState({ page }); await this.refetch(); } async handleUnreadOrAllChange(i: Inbox, event: any) { i.setState({ unreadOrAll: Number(event.target.value), page: 1 }); await i.refetch(); } async handleMessageTypeChange(i: Inbox, event: any) { i.setState({ messageType: Number(event.target.value), page: 1 }); await i.refetch(); } static async fetchInitialData({ client, auth, }: InitialFetchRequest): Promise { const sort: CommentSortType = "New"; return { personMentionsResponse: auth ? await client.getPersonMentions({ sort, unread_only: true, page: 1, limit: fetchLimit, auth, }) : { state: "empty" }, privateMessagesResponse: auth ? await client.getPrivateMessages({ unread_only: true, page: 1, limit: fetchLimit, auth, }) : { state: "empty" }, repliesResponse: auth ? await client.getReplies({ sort, unread_only: true, page: 1, limit: fetchLimit, auth, }) : { state: "empty" }, }; } async refetch() { const sort = this.state.sort; const unread_only = this.state.unreadOrAll == UnreadOrAll.Unread; const page = this.state.page; const limit = fetchLimit; const auth = myAuthRequired(); this.setState({ repliesRes: { state: "loading" } }); this.setState({ repliesRes: await HttpService.client.getReplies({ sort, unread_only, page, limit, auth, }), }); this.setState({ mentionsRes: { state: "loading" } }); this.setState({ mentionsRes: await HttpService.client.getPersonMentions({ sort, unread_only, page, limit, auth, }), }); this.setState({ messagesRes: { state: "loading" } }); this.setState({ messagesRes: await HttpService.client.getPrivateMessages({ unread_only, page, limit, auth, }), }); } async handleSortChange(val: CommentSortType) { this.setState({ sort: val, page: 1 }); await this.refetch(); } async handleMarkAllAsRead(i: Inbox) { i.setState({ markAllAsReadRes: { state: "loading" } }); i.setState({ markAllAsReadRes: await HttpService.client.markAllAsRead({ auth: myAuthRequired(), }), }); if (i.state.markAllAsReadRes.state == "success") { i.setState({ repliesRes: { state: "empty" }, mentionsRes: { state: "empty" }, messagesRes: { state: "empty" }, }); } } async handleAddModToCommunity(form: AddModToCommunity) { // TODO not sure what to do here HttpService.client.addModToCommunity(form); } async handlePurgePerson(form: PurgePerson) { const purgePersonRes = await HttpService.client.purgePerson(form); this.purgeItem(purgePersonRes); } async handlePurgeComment(form: PurgeComment) { const purgeCommentRes = await HttpService.client.purgeComment(form); this.purgeItem(purgeCommentRes); } async handlePurgePost(form: PurgePost) { const purgeRes = await HttpService.client.purgePost(form); this.purgeItem(purgeRes); } async handleBlockPerson(form: BlockPerson) { const blockPersonRes = await HttpService.client.blockPerson(form); if (blockPersonRes.state == "success") { updatePersonBlock(blockPersonRes.data); } } async handleCreateComment(form: CreateComment) { const res = await HttpService.client.createComment(form); if (res.state === "success") { toast(i18n.t("reply_sent")); this.findAndUpdateComment(res); } return res; } async handleEditComment(form: EditComment) { const res = await HttpService.client.editComment(form); if (res.state === "success") { toast(i18n.t("edit")); this.findAndUpdateComment(res); } else if (res.state === "failed") { toast(res.msg, "danger"); } return res; } async handleDeleteComment(form: DeleteComment) { const res = await HttpService.client.deleteComment(form); if (res.state == "success") { toast(i18n.t("deleted")); this.findAndUpdateComment(res); } } async handleRemoveComment(form: RemoveComment) { const res = await HttpService.client.removeComment(form); if (res.state == "success") { toast(i18n.t("remove_comment")); this.findAndUpdateComment(res); } } async handleSaveComment(form: SaveComment) { const res = await HttpService.client.saveComment(form); this.findAndUpdateComment(res); } async handleCommentVote(form: CreateCommentLike) { const res = await HttpService.client.likeComment(form); this.findAndUpdateComment(res); } async handleCommentReport(form: CreateCommentReport) { const reportRes = await HttpService.client.createCommentReport(form); this.reportToast(reportRes); } async handleDistinguishComment(form: DistinguishComment) { const res = await HttpService.client.distinguishComment(form); this.findAndUpdateComment(res); } async handleAddAdmin(form: AddAdmin) { const addAdminRes = await HttpService.client.addAdmin(form); if (addAdminRes.state === "success") { this.setState(s => ((s.siteRes.admins = addAdminRes.data.admins), s)); } } async handleTransferCommunity(form: TransferCommunity) { await HttpService.client.transferCommunity(form); toast(i18n.t("transfer_community")); } async handleCommentReplyRead(form: MarkCommentReplyAsRead) { const res = await HttpService.client.markCommentReplyAsRead(form); this.findAndUpdateCommentReply(res); } async handlePersonMentionRead(form: MarkPersonMentionAsRead) { const res = await HttpService.client.markPersonMentionAsRead(form); this.findAndUpdateMention(res); } async handleBanFromCommunity(form: BanFromCommunity) { const banRes = await HttpService.client.banFromCommunity(form); this.updateBanFromCommunity(banRes); } async handleBanPerson(form: BanPerson) { const banRes = await HttpService.client.banPerson(form); this.updateBan(banRes); } async handleDeleteMessage(form: DeletePrivateMessage) { const res = await HttpService.client.deletePrivateMessage(form); this.findAndUpdateMessage(res); } async handleEditMessage(form: EditPrivateMessage) { const res = await HttpService.client.editPrivateMessage(form); this.findAndUpdateMessage(res); } async handleMarkMessageAsRead(form: MarkPrivateMessageAsRead) { const res = await HttpService.client.markPrivateMessageAsRead(form); this.findAndUpdateMessage(res); } async handleMessageReport(form: CreatePrivateMessageReport) { const res = await HttpService.client.createPrivateMessageReport(form); this.reportToast(res); } async handleCreateMessage(form: CreatePrivateMessage) { const res = await HttpService.client.createPrivateMessage(form); this.setState(s => { if (s.messagesRes.state == "success" && res.state == "success") { s.messagesRes.data.private_messages.unshift( res.data.private_message_view ); } return s; }); } findAndUpdateMessage(res: RequestState) { this.setState(s => { if (s.messagesRes.state === "success" && res.state === "success") { s.messagesRes.data.private_messages = editPrivateMessage( res.data.private_message_view, s.messagesRes.data.private_messages ); } return s; }); } updateBanFromCommunity(banRes: RequestState) { // Maybe not necessary if (banRes.state == "success") { this.setState(s => { if (s.repliesRes.state == "success") { s.repliesRes.data.replies .filter(c => c.creator.id == banRes.data.person_view.person.id) .forEach( c => (c.creator_banned_from_community = banRes.data.banned) ); } if (s.mentionsRes.state == "success") { s.mentionsRes.data.mentions .filter(c => c.creator.id == banRes.data.person_view.person.id) .forEach( c => (c.creator_banned_from_community = banRes.data.banned) ); } return s; }); } } updateBan(banRes: RequestState) { // Maybe not necessary if (banRes.state == "success") { this.setState(s => { if (s.repliesRes.state == "success") { s.repliesRes.data.replies .filter(c => c.creator.id == banRes.data.person_view.person.id) .forEach(c => (c.creator.banned = banRes.data.banned)); } if (s.mentionsRes.state == "success") { s.mentionsRes.data.mentions .filter(c => c.creator.id == banRes.data.person_view.person.id) .forEach(c => (c.creator.banned = banRes.data.banned)); } return s; }); } } purgeItem(purgeRes: RequestState) { if (purgeRes.state == "success") { toast(i18n.t("purge_success")); this.context.router.history.push(`/`); } } reportToast( res: RequestState ) { if (res.state == "success") { toast(i18n.t("report_created")); } } // A weird case, since you have only replies and mentions, not comment responses findAndUpdateComment(res: RequestState) { if (res.state == "success") { this.setState(s => { if (s.repliesRes.state == "success") { s.repliesRes.data.replies = editWith( res.data.comment_view, s.repliesRes.data.replies ); } if (s.mentionsRes.state == "success") { s.mentionsRes.data.mentions = editWith( res.data.comment_view, s.mentionsRes.data.mentions ); } // Set finished for the parent s.finished.set( getCommentParentId(res.data.comment_view.comment) ?? 0, true ); return s; }); } } findAndUpdateCommentReply(res: RequestState) { this.setState(s => { if (s.repliesRes.state == "success" && res.state == "success") { s.repliesRes.data.replies = editCommentReply( res.data.comment_reply_view, s.repliesRes.data.replies ); } return s; }); } findAndUpdateMention(res: RequestState) { this.setState(s => { if (s.mentionsRes.state == "success" && res.state == "success") { s.mentionsRes.data.mentions = editMention( res.data.person_mention_view, s.mentionsRes.data.mentions ); } return s; }); } }