-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bold all title and don't show last message in search "In" filter page #49835
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -532,9 +532,15 @@ function getAlternateText(option: ReportUtils.OptionData, {showChatPreviewLine = | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const report = ReportUtils.getReportOrDraftReport(option.reportID); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const isAdminRoom = ReportUtils.isAdminRoom(report); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const isAnnounceRoom = ReportUtils.isAnnounceRoom(report); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const isGroupChat = ReportUtils.isGroupChat(report); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const isExpenseThread = ReportUtils.isMoneyRequest(report); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!!option.isThread || !!option.isMoneyRequestReport) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return option.lastMessageText ? option.lastMessageText : Localize.translate(preferredLocale, 'report.noActivityYet'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (isExpenseThread || option.isMoneyRequestReport) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They are different.
App/src/libs/OptionsListUtils.ts Line 741 in 05ca35c
Lines 1611 to 1614 in 05ca35c
Lines 1603 to 1606 in 05ca35c
Lines 1566 to 1586 in 05ca35c
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Interesting, those method names are definitely misleading. Thanks for clarifying though |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return showChatPreviewLine && option.lastMessageText ? option.lastMessageText : Localize.translate(preferredLocale, 'iou.expense'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (option.isThread) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return showChatPreviewLine && option.lastMessageText ? option.lastMessageText : Localize.translate(preferredLocale, 'threads.thread'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (option.isChatRoom && !isAdminRoom && !isAnnounceRoom) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -546,7 +552,11 @@ function getAlternateText(option: ReportUtils.OptionData, {showChatPreviewLine = | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (option.isTaskReport) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return showChatPreviewLine && option.lastMessageText ? option.lastMessageText : Localize.translate(preferredLocale, 'report.noActivityYet'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return showChatPreviewLine && option.lastMessageText ? option.lastMessageText : Localize.translate(preferredLocale, 'task.task'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (isGroupChat) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return showChatPreviewLine && option.lastMessageText ? option.lastMessageText : Localize.translate(preferredLocale, 'common.group'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return showChatPreviewLine && option.lastMessageText | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -2084,7 +2094,7 @@ function getOptions( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* Build the options for the Search view | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
function getSearchOptions(options: OptionList, searchValue = '', betas: Beta[] = []): Options { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
function getSearchOptions(options: OptionList, searchValue = '', betas: Beta[] = [], isUsedInChatFinder = true): Options { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Timing.start(CONST.TIMING.LOAD_SEARCH_OPTIONS); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Performance.markStart(CONST.TIMING.LOAD_SEARCH_OPTIONS); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const optionList = getOptions(options, { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -2094,15 +2104,15 @@ function getSearchOptions(options: OptionList, searchValue = '', betas: Beta[] = | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
includeMultipleParticipantReports: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
maxRecentReportsToShow: 0, // Unlimited | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sortByReportTypeInSearch: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
showChatPreviewLine: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
showChatPreviewLine: isUsedInChatFinder, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
includeP2P: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
forcePolicyNamePreview: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
includeOwnedWorkspaceChats: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
includeThreads: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
includeMoneyRequests: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
includeTasks: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
includeSelfDM: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
shouldBoldTitleByDefault: false, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
shouldBoldTitleByDefault: !isUsedInChatFinder, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Timing.end(CONST.TIMING.LOAD_SEARCH_OPTIONS); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Performance.markEnd(CONST.TIMING.LOAD_SEARCH_OPTIONS); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just returning whether the report is a money request report, not if it is a thread.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the comment above clarified this as well.