mattermost-mobile/types/api/posts.d.ts
Harshil Sharma 2fb2e9d899
Burn On Read Posts (#9307)
* Added scaffolding for unrevealed BoR post

* Displayed reveal UI

* Displayed expiry timer

* WIP

* Displayed own post indicator and blur text

* restored button

* Ungrouped BoR posts

* WIP

* WIP

* DIsplayed error message on revealing

* Added last run check on mobile app cleanup job

* Cleanup

* lint fix

* i18n-fix

* Added tests

* test: add test suite for revealBoRPost function

* test: add unrevealed burn on read post test file

* feat: add tests for UnrevealedBurnOnReadPost component

* test: update UnrevealedBurnOnReadPost test with PostModel type

* test: replace toBeTruthy with toBeVisible for component visibility assertions

* test: add initial test file for expiry timer component

* test: add comprehensive tests for ExpiryCountdown component

* refactor: clean up test formatting and remove redundant test case

* fix: adjust test timing for ExpiryCountdown onExpiry callback

* test: fix timer test by advancing timers in smaller increments

* Added tests

* Updated tests

* fixed accidental change

* restored package.resolved

* WIP review fixes

* Review fixes

* Review fixes

* Fixed tests

* restored package.resolved

* WIP

* test: add test for skipping BoR post cleanup within 15 minutes

* test: add comprehensive test cases for expiredBoRPostCleanup

* WIP

* WIP

* test: add bor.test.ts placeholder file

* test: add comprehensive tests for BoR utility functions

* test: add comprehensive tests for formatTime function

* WIP

* test: add comprehensive tests for getLastBoRPostCleanupRun function

* Added tests

* removed a commented code

* post list optimization

* test: add test case for updating unrevealed burn-on-read post

* fix: handle error logging in expiredBoRPostCleanup test

* test: add test case for updateLastBoRCleanupRun error handling

* review fixes

* lint fixes

* Added WS event handling (#9320)

* Added WS event handling

* test: add burn on read websocket action test

* test: add tests for handleBoRPostRevealedEvent in burn_on_read

* Added tests

* test: add comprehensive error handling test cases for burn on read

* Added tests and error handling

* BoR post - restricted actions (#9315)

* Restricted post actions for BoR post type

* Prevent opening thread fr nBoR post

* WIP

* fix: remove redundant observable wrapping in post options

* fixed a change

* removed broken

* restored package.resolved

* Added tests

* Awaiting for last run to be set

* Added tests for validating expiry timer behaviour (#9338)

* Added tests for validating expiry timer behaviour

* No need of use event setup

* Bor ux fixes (#9336)

* WIP

* UI and delete fixes

* lint fixes

* fixed tests

* Improved mocking

* Improved test
2025-12-11 09:42:16 +05:30

178 lines
4 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
type PostType =
| ''
| 'system_add_remove'
| 'system_add_to_channel'
| 'system_add_to_team'
| 'system_channel_deleted'
| 'system_channel_restored'
| 'system_displayname_change'
| 'system_convert_channel'
| 'system_ephemeral'
| 'system_header_change'
| 'system_join_channel'
| 'system_join_leave'
| 'system_leave_channel'
| 'system_purpose_change'
| 'system_remove_from_channel'
| 'system_ephemeral_add_to_channel'
| 'system_guest_join_channel'
| 'system_add_guest_to_chan'
| 'system_join_team'
| 'system_leave_team'
| 'system_remove_from_team'
| 'system_combined_user_activity'
| 'add_bot_teams_channels'
| 'system_auto_responder'
| 'custom_calls'
| 'custom_calls_recording'
| 'custom_run_update'
| 'custom_llmbot'
| 'custom_llm_postback'
| 'burn_on_read';
type PostEmbedType = 'image' | 'message_attachment' | 'opengraph' | 'permalink';
type PostAcknowledgement = {
post_id: string;
user_id: string;
acknowledged_at: number;
}
type PostPriority = {
priority: '' | 'urgent' | 'important';
requested_ack?: boolean;
persistent_notifications?: boolean;
};
type PermalinkEmbedData = {
post_id: string;
post: Post;
team_name: string;
channel_display_name: string;
channel_type: string;
channel_id: string;
};
type PostEmbed = {
type: PostEmbedType;
url: string;
data: Record<string, any>;
};
type PostImage = {
height: number;
width: number;
format?: string;
frame_count?: number;
};
type PostMetadata = {
acknowledgements?: PostAcknowledgement[];
embeds?: PostEmbed[];
emojis?: CustomEmoji[];
files?: FileInfo[];
images?: Dictionary<PostImage | undefined>;
reactions?: Reaction[];
priority?: PostPriority;
expire_at?: number;
};
type Post = {
id: string;
create_at: number;
update_at: number;
edit_at: number;
delete_at: number;
is_following?: boolean;
is_pinned: boolean;
user_id: string;
channel_id: string;
root_id: string;
original_id: string;
message: string;
message_source?: string;
type: PostType;
participants?: null | UserProfile[]|string[];
props: Record<string, unknown> | undefined;
hashtags: string;
pending_post_id: string;
reply_count: number;
file_ids?: any[];
metadata: PostMetadata;
last_reply_at?: number;
user_activity_posts?: Post[];
state?: 'DELETED';
prev_post_id?: string;
};
type PostProps = {
disable_group_highlight?: boolean;
mentionHighlightDisabled: boolean;
};
type PostResponse = {
order: string[];
posts: IDMappedObjects<Post>;
prev_post_id?: string;
};
type SearchMatches = {[key: $ID<Post>]: string[]};
type SearchPostResponse = PostResponse & {
matches?: SearchMatches;
}
type ProcessedPosts = {
order: string[];
posts: Post[];
previousPostId?: string;
}
type MessageAttachment = {
id?: number;
fallback?: string;
color?: string;
pretext?: string;
author_name?: string;
author_link?: string;
author_icon?: string;
title?: string;
title_link?: string;
text?: string;
fields?: MessageAttachmentField[];
image_url?: string;
thumb_url?: string;
footer?: string;
footer_icon?: string;
timestamp?: number | string;
actions?: PostAction[];
};
type MessageAttachmentField = {
title?: string;
value?: any;
short?: boolean;
}
type PostSearchParams = {
terms: string;
is_or_search: boolean;
include_deleted_channels?: boolean;
time_zone_offset?: number;
page?: number;
per_page?: number;
};
type FetchPaginatedThreadOptions = {
fetchThreads?: boolean;
collapsedThreads?: boolean;
collapsedThreadsExtended?: boolean;
direction?: 'up'|'down';
fetchAll?: boolean;
perPage?: number;
fromCreateAt?: number;
fromPost?: string;
}