Skip to content
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

Ex4 chat masking #51790

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open

Ex4 chat masking #51790

wants to merge 22 commits into from

Conversation

LCOleksii
Copy link
Contributor

@LCOleksii LCOleksii commented Oct 31, 2024

Explanation of Change

UNMASK:
Chats between Non-Expensify users and Expensify users (e.g. Concierge)

MASK:
Chats between Expensify users and other Expensify users

Chats between non-Expensify users that do NOT include any Expensify users

Exposed PersonalDetailsProvider from OnyxProvider
Added CONST that represents email domain for support team:

  • EXPENSIFY_TEAM_EMAIL_DOMAIN

Updated @lib/Fullstory to evaluate MASK/UNMASK based on provided report context

Added isExpensifyAndCustomerChat exported function to ReportUtils
to handle report type evaluation.

Fixed Issues

$ #52271
PROPOSAL:
Improve MASK/UNMASK process based on report context.
No visual changes. Component attributes added.

Tests

  • Verify that no errors appear in the JS console
  • Verify components have appropriate "Fullstory" properties set
    QA:
  • Navigate using the fullstory@applause email
  • Send a message on a Concierge chat
  • Send a message on a chat with an expensify user
  • create a policy, and add expenses to a policy expense chat
  • Check on Fullstory if your session and confirm that you can only see the full data in the policy expense chat

Offline tests

QA Steps

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome

$https://drive.google.com/file/d/1KoI9jJIAkUD80-na2Xzf35iFoI1wuLER/view?usp=drive_link

iOS: Native

$https://drive.google.com/file/d/10QZ6PG__dkNqF5RbQVFbSbhc4yzbi8Dv/view?usp=drive_link

iOS: mWeb Safari
MacOS: Chrome / Safari

$https://drive.google.com/file/d/1ZP5xIH7hcxV_LS_iA2PpbZDUgNRVaNjg/view?usp=sharing

MacOS: Desktop

@LCOleksii LCOleksii requested a review from a team as a code owner October 31, 2024 14:07
@melvin-bot melvin-bot bot requested review from srikarparsi and removed request for a team October 31, 2024 14:08
Copy link

melvin-bot bot commented Oct 31, 2024

@srikarparsi Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@srikarparsi
Copy link
Contributor

Hi @LCOleksii, is this for a specific issue? Please let me know and I can reopen this PR

@danieldoglas
Copy link
Contributor

hm @srikarparsi why did you close this PR?

@srikarparsi
Copy link
Contributor

Oh sorry, I didn't know if it was a legit one because I didn't see a linked issue and there was a bunch of lint errors when it was ready for review. But re-opening since you seem to suggest it's legit?

@srikarparsi srikarparsi reopened this Oct 31, 2024
@danieldoglas
Copy link
Contributor

Yep, it is legit.

@srikarparsi srikarparsi requested review from danieldoglas and removed request for srikarparsi November 5, 2024 09:20
@srikarparsi
Copy link
Contributor

Re-assigning you @danieldoglas if that's okay

Comment on lines 8366 to 8367
const baseRegexp = new RegExp(`${CONST.EMAIL.EXPENSIFY_EMAIL_DOMAIN}$`);
const teamRegexp = new RegExp(`${CONST.EMAIL.EXPENSIFY_TEAM_EMAIL_DOMAIN}$`);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you can remove the regex testing and change this to use endsWith()

UNMASK:
Chats between Non-Expensify users and Expensify users (e.g. Concierge)

MASK:
Chats between Expensify users and other Expensify users

Chats between non-Expensify users that do NOT include any Expensify users

Exposed PersonalDetailsProvider from OnyxProvider
Added CONST that represents email domain for support team:
- EXPENSIFY_TEAM_EMAIL_DOMAIN

Updated @lib/Fullstory to evaluate MASK/UNMASK based on provided report context

Added isExpensifyAndCustomerChat exported function to ReportUtils
to handle report type evaluation.
Clean perfcheck passed.
Removed unused imports
Refactoring, context evaluation moved to component level.
Changed function args usage in related functions.
ESLINT fixes
ESLINT fixes
ESLINT fixes

Prefer an early return to a conditionally-wrapped function body  rulesdir/prefer-early-return
Prettier fixes
Prettier fixes
ESlint double neg check fixes
Comment on lines 154 to 168
function getChatFSAttributes(context: OnyxEntry<PersonalDetailsList>, name: string, report: OnyxInputOrEntry<Report>, prefix: boolean): string {
let componentPrefix = prefix ? `${name},` : '';
let componentSuffix = name ? `,fs-${name}` : '';
let fsAttrValue = '';

if (isConciergeChatReport(report)) {
componentPrefix = prefix ? `${CONCIERGE}-${name},` : '';
componentSuffix = name ? `,fs-${name}` : '';
/*
concierge-chatMessage,fs-unmask,fs-chatMessage
*/
fsAttrValue = `${componentPrefix}${UNMASK}${componentSuffix}`;
} else if (isExpensifyAndCustomerChat(context, report)) {
componentPrefix = prefix ? `${CUSTOMER}-${name},` : '';
componentSuffix = name ? `,fs-${name}` : '';
/*
customer-chatMessage,fs-unmask,fs-chatMessage
*/
fsAttrValue = `${componentPrefix}${UNMASK}${componentSuffix}`;
} else {
componentPrefix = prefix ? `${OTHER}-${name},` : '';
componentSuffix = name ? `,fs-${name}` : '';
/*
other-chatMessage,fs-mask,fs-chatMessage
*/
fsAttrValue = `${componentPrefix}${MASK}${componentSuffix}`;
}

return fsAttrValue;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this logic can be simplified as

Suggested change
function getChatFSAttributes(context: OnyxEntry<PersonalDetailsList>, name: string, report: OnyxInputOrEntry<Report>, prefix: boolean): string {
let componentPrefix = prefix ? `${name},` : '';
let componentSuffix = name ? `,fs-${name}` : '';
let fsAttrValue = '';
if (isConciergeChatReport(report)) {
componentPrefix = prefix ? `${CONCIERGE}-${name},` : '';
componentSuffix = name ? `,fs-${name}` : '';
/*
concierge-chatMessage,fs-unmask,fs-chatMessage
*/
fsAttrValue = `${componentPrefix}${UNMASK}${componentSuffix}`;
} else if (isExpensifyAndCustomerChat(context, report)) {
componentPrefix = prefix ? `${CUSTOMER}-${name},` : '';
componentSuffix = name ? `,fs-${name}` : '';
/*
customer-chatMessage,fs-unmask,fs-chatMessage
*/
fsAttrValue = `${componentPrefix}${UNMASK}${componentSuffix}`;
} else {
componentPrefix = prefix ? `${OTHER}-${name},` : '';
componentSuffix = name ? `,fs-${name}` : '';
/*
other-chatMessage,fs-mask,fs-chatMessage
*/
fsAttrValue = `${componentPrefix}${MASK}${componentSuffix}`;
}
return fsAttrValue;
}
function getChatFSAttributes(context: OnyxEntry<PersonalDetailsList>, name: string, report: OnyxInputOrEntry<Report>, prefix: boolean): string {
const baseName = name ? `,fs-${name}` : '';
let componentPrefix = '';
let maskType = MASK;
if (isConciergeChatReport(report)) {
componentPrefix = CONCIERGE;
maskType = UNMASK;
} else if (isExpensifyAndCustomerChat(context, report)) {
componentPrefix = CUSTOMER;
maskType = UNMASK;
} else {
componentPrefix = OTHER;
}
const prefixPart = prefix ? `${componentPrefix}-${name},` : '';
return `${prefixPart}${maskType}${baseName}`;
}

return fsAttrValue;
}

function getChatFSAttributes(context: OnyxEntry<PersonalDetailsList>, name: string, report: OnyxInputOrEntry<Report>, prefix: boolean): string {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be great to add test on all this functions

* Extract values from non-scraped at build time attribute WEB_PROP_ATTR,
* reevaluate "fs-class".
*/
function parseFSAttributes(): void {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’m concerned about this function; it seems to be executed multiple times in a row. Each execution tests approximately 300 elements, and this occurs when switching reports, even if switching between the same reports.

Screenshot 2024-11-06 at 19 11 58

Would be great to avoid it, given that I felt the report switching lagging

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also suggest to add test on this function, which seems complex and any future update should be cover by tests

Performance review fixes,
Cleanup.
Comment on lines 8415 to 8418
const participantAccountIDs = new Set(Object.keys(report.participants));
if (participantAccountIDs.size > 2) {
return false;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should come after the other checks. A police expense chat can have 10s of people, and we would want to unmask those too. this should be added after line 8426.

Comment on lines 8434 to 8441
const login = contextAccountData.login ?? '';
if (login.endsWith(CONST.EMAIL.EXPENSIFY_EMAIL_DOMAIN)) {
return true;
}

if (login.endsWith(CONST.EMAIL.EXPENSIFY_TEAM_EMAIL_DOMAIN)) {
return true;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is wrong. If we have 1:1 chats between expensify users only, we don't want to unmask those. Since you'll only have 2 emails here, we only want to return true if one of the emails is from expensify AND the other isnt.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, got ot.

Comment on lines 8446 to 8451
// System users communication
const expensifyTeam = new Set(Object.values(CONST.ACCOUNT_ID));
const hasIntersection = [...participantAccountIDs].some((id) => expensifyTeam.has(Number(id)));
if (hasIntersection) {
return true;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm confused on this part.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Set.Intersection is not available in the TS version you are using.
this is alternative to intersection check.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have removed this bit as this was not part of original ticket.

Better function naming.
Higher priority to unmask policy expense chats.
Internal 1:1 team chat masked.
System users check masked.
@danieldoglas danieldoglas requested a review from gedu November 11, 2024 13:33
if (contextAccountData) {
const login = contextAccountData.login ?? '';

if (login.endsWith(CONST.EMAIL.EXPENSIFY_EMAIL_DOMAIN) ?? login.endsWith(CONST.EMAIL.EXPENSIFY_TEAM_EMAIL_DOMAIN)) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What it means here the use of ??? shouldn't be the OR operator? ||?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this case could be caught with tests, we should add some

Comment on lines +8423 to +8426
const participantAccountIDs = new Set(Object.keys(report.participants));
if (participantAccountIDs.size > 2) {
return false;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we don't need to create a Set

const participantAccountIDs = Object.keys(report.participants);
    if (participantAccountIDs.length > 2) {
        return false;
    }
    ```
    that should work 

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please address this comment too

Comment on lines +162 to +170
return [`${formattedName},${UNMASK}`, `${formattedName}`];
}
if (shouldUnmaskChat(context, report)) {
const formattedName = `${CUSTOMER}-${name}`;
return [`${formattedName},${UNMASK}`, `${formattedName}`];
}

const formattedName = `${OTHER}-${name}`;
return [`${formattedName},${MASK}`, `${formattedName}`];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there is no need to interpolate formattedName, it is an string already, so the second position can be just
[${formattedName}, ${XXXXX}, formattedName]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please address this comment too

Comment on lines +715 to +716
const [reportActionsListTestID, reportActionsListFSClass] = getChatFSAttributes(participantsContext, 'ReportActionsList', report);

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ReportActionsList is being rerender many times, when switching and when sending/receiving messages, I would recommend to wrap it in a useMemo and the dependency array would be [report.reportID]
Screenshot 2024-11-13 at 11 44 20

Screenshot 2024-11-13 at 11 45 56

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please address this comment too

clean unnecessary type coercion
@danieldoglas
Copy link
Contributor

@LCOleksii please merge main into this

# Conflicts:
#	src/libs/ReportUtils.ts
#	src/pages/home/report/ReportActionsList.tsx
Error fix: Prettier diff detected
@gedu
Copy link
Contributor

gedu commented Nov 15, 2024

There is a failing test

@gedu
Copy link
Contributor

gedu commented Nov 21, 2024

Any news here?

@danieldoglas
Copy link
Contributor

@LCOleksii bump on te test fix

Error fix: Perf-test missing mocked library fix.
Eslint check fix.
@danieldoglas danieldoglas requested a review from gedu December 2, 2024 18:58
@danieldoglas
Copy link
Contributor

@gedu ready for your eyes again

@gedu
Copy link
Contributor

gedu commented Dec 4, 2024

Cool, I will take a look tomorrow

@danielrvidal
Copy link
Contributor

@gedu this is still being worked on, correct? Who are you waiting on?

@gedu
Copy link
Contributor

gedu commented Dec 10, 2024

Sorry, something with more priority shows up, tomorrow first thing in the morning I will check it

@gedu
Copy link
Contributor

gedu commented Dec 11, 2024

LGTM

@allgandalf
Copy link
Contributor

please assign me for review

@danieldoglas danieldoglas requested review from allgandalf and removed request for gedu December 11, 2024 19:38
@allgandalf
Copy link
Contributor

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

Comment on lines +73 to +78
/**
* Placeholder function for Mobile-Web compatibility.
*/
function parseFSAttributes(): void {
// pass
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay considering this placeholder, I will overlook it, but what is the use of this ?

const WEB_PROP_ATTR = 'data-testid';
const MASK = 'fs-mask';
const UNMASK = 'fs-unmask';
const CUSTOMER = 'customer';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see these values repeated again from native and web files, this breaks the checklist checkbox which wants our code to be DRY, can you define these values in CONST.ts and use here and in native file ?

return true;
}

if (isThread(report) && report.chatType && report.chatType === CONST.REPORT.CHAT_TYPE.POLICY_EXPENSE_CHAT) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (isThread(report) && report.chatType && report.chatType === CONST.REPORT.CHAT_TYPE.POLICY_EXPENSE_CHAT) {
if (isThread(report) && report?.chatType && report?.chatType === CONST.REPORT.CHAT_TYPE.POLICY_EXPENSE_CHAT) {

I worry that the app will crash if we don't have any of those, won't it ? do you think that this is unnecessary ?

return true;
}

if (isThread(report) && report.type === CONST.REPORT.TYPE.EXPENSE) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as ^

return true;
}

const participantAccountIDs = new Set(Object.keys(report.participants));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as ^

}

if (participantsContext) {
// by email participants
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure if i understand this comment, can you be more specific here ?

@@ -719,13 +722,19 @@ function ReportActionsList({
// When performing comment linking, initially 25 items are added to the list. Subsequent fetches add 15 items from the cache or 50 items from the server.
// This is to ensure that the user is able to see the 'scroll to newer comments' button when they do comment linking and have not reached the end of the list yet.
const canScrollToNewerComments = !isLoadingInitialReportActions && !hasNewestReportAction && sortedReportActions.length > 25 && !isLastPendingActionIsDelete;
const [reportActionsListTestID, reportActionsListFSClass] = getChatFSAttributes(participantsContext, 'ReportActionsList', report);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

was comment from @gedu addressed here ? they mentioned that ReportActionsList was rendered many times?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants