Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/components/Search/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ import {columnsSelector} from '@src/selectors/AdvancedSearchFiltersForm';
import {isActionLoadingSetSelector} from '@src/selectors/ReportMetaData';
import type {OutstandingReportsByPolicyIDDerivedValue, Transaction} from '@src/types/onyx';
import type SearchResults from '@src/types/onyx/SearchResults';
import type {SearchTransaction} from '@src/types/onyx/SearchResults';
import type {TransactionViolation} from '@src/types/onyx/TransactionViolation';
import {isEmptyObject} from '@src/types/utils/EmptyObject';
import arraysEqual from '@src/utils/arraysEqual';
Expand Down Expand Up @@ -176,6 +175,7 @@ function prepareTransactionsList(
action: item.action,
reportID: item.reportID,
policyID: item.policyID,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
amount: Math.abs(item.modifiedAmount || item.amount),
groupAmount: item.groupAmount,
groupCurrency: item.groupCurrency,
Expand Down Expand Up @@ -260,8 +260,7 @@ function Search({
const transactionKeys = Object.keys(searchResults.data).filter((key) => key.startsWith(ONYXKEYS.COLLECTION.TRANSACTION));

for (const key of transactionKeys) {
// eslint-disable-next-line @typescript-eslint/no-deprecated
const transaction = searchResults.data[key as keyof typeof searchResults.data] as SearchTransaction;
const transaction = searchResults.data[key as keyof typeof searchResults.data] as Transaction;
if (!transaction || typeof transaction !== 'object' || !('transactionID' in transaction) || !('reportID' in transaction)) {
continue;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Search/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type SelectedTransactionInfo = {
action: ValueOf<typeof CONST.SEARCH.ACTION_TYPES>;

/** The reportID of the transaction */
reportID: string;
reportID?: string;
Comment thread
DylanDylann marked this conversation as resolved.

/** The policyID tied to the report the transaction is reported on */
policyID: string | undefined;
Expand Down Expand Up @@ -71,7 +71,7 @@ type SelectedTransactions = Record<string, SelectedTransactionInfo>;

/** Model of selected reports */
type SelectedReports = {
reportID: string;
reportID: string | undefined;
policyID: string | undefined;
action: ValueOf<typeof CONST.SEARCH.ACTION_TYPES>;
allActions: Array<ValueOf<typeof CONST.SEARCH.ACTION_TYPES>>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import Badge from '@components/Badge';
import Button from '@components/Button';
import Icon from '@components/Icon';
import * as Expensicons from '@components/Icon/Expensicons';

Check warning on line 8 in src/components/SelectionListWithSections/Search/TaskListItemRow.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

'@components/Icon/Expensicons' import is restricted from being used by a pattern. Direct imports from Icon/Expensicons are deprecated. Please use lazy loading hooks instead. Use `useMemoizedLazyExpensifyIcons` from @hooks/useLazyAsset. See docs/LAZY_ICONS_AND_ILLUSTRATIONS.md for details

Check warning on line 8 in src/components/SelectionListWithSections/Search/TaskListItemRow.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

'@components/Icon/Expensicons' import is restricted from being used. Direct imports from @components/Icon/Expensicons are deprecated. Please use lazy loading hooks instead. Use `useMemoizedLazyExpensifyIcons` from @hooks/useLazyAsset. See docs/LAZY_ICONS_AND_ILLUSTRATIONS.md for details
import {useSession} from '@components/OnyxListItemProvider';
import type {TaskListItemType} from '@components/SelectionListWithSections/types';
import TextWithTooltip from '@components/TextWithTooltip';
Expand All @@ -22,6 +22,7 @@
import {canActionTask, completeTask} from '@libs/actions/Task';
import variables from '@styles/variables';
import CONST from '@src/CONST';
import type {Report} from '@src/types/onyx';
import AvatarWithTextCell from './AvatarWithTextCell';
import DateCell from './DateCell';
import UserInfoCell from './UserInfoCell';
Expand Down Expand Up @@ -110,7 +111,7 @@
style={[styles.w100]}
isDisabled={!isTaskActionable}
onPress={callFunctionIfActionIsAllowed(() => {
completeTask(taskItem, parentReport?.hasOutstandingChildTask ?? false, hasOutstandingChildTask, parentReportAction, taskItem.reportID);
completeTask(taskItem as Report, parentReport?.hasOutstandingChildTask ?? false, hasOutstandingChildTask, parentReportAction, taskItem.reportID);
})}
/>
);
Expand Down
7 changes: 3 additions & 4 deletions src/components/SelectionListWithSections/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import type CONST from '@src/CONST';
import type {PersonalDetails, PersonalDetailsList, Policy, Report, ReportAction, SearchResults, TransactionViolation, TransactionViolations} from '@src/types/onyx';
import type {Attendee, SplitExpense} from '@src/types/onyx/IOU';
import type {Errors, Icon, PendingAction} from '@src/types/onyx/OnyxCommon';
import type {SearchCardGroup, SearchDataTypes, SearchMemberGroup, SearchTask, SearchTransaction, SearchTransactionAction, SearchWithdrawalIDGroup} from '@src/types/onyx/SearchResults';
import type {SearchCardGroup, SearchDataTypes, SearchMemberGroup, SearchTask, SearchTransactionAction, SearchWithdrawalIDGroup} from '@src/types/onyx/SearchResults';
import type {ReceiptErrors} from '@src/types/onyx/Transaction';
import type Transaction from '@src/types/onyx/Transaction';
import type ChildrenProps from '@src/types/utils/ChildrenProps';
Expand Down Expand Up @@ -167,7 +167,7 @@ type ListItem<K extends string | number = string> = {
icons?: Icon[];

/** Errors that this user may contain */
errors?: Errors;
errors?: Errors | ReceiptErrors;

/** The type of action that's pending */
pendingAction?: PendingAction;
Expand Down Expand Up @@ -239,8 +239,7 @@ type ListItem<K extends string | number = string> = {
};

type TransactionListItemType = ListItem &
// eslint-disable-next-line @typescript-eslint/no-deprecated
SearchTransaction & {
Transaction & {
/** Report to which the transaction belongs */
report: Report | undefined;

Expand Down
5 changes: 4 additions & 1 deletion src/components/WideRHPContextProvider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@ function WideRHPContextProvider({children}: React.PropsWithChildren) {
* It helps us open expense as wide, before it fully loads.
*/
const markReportIDAsExpense = useCallback(
(reportID: string) => {
(reportID?: string) => {
if (!reportID) {
return;
}
const report = allReports?.[`${ONYXKEYS.COLLECTION.REPORT}${reportID}`];
const isInvoice = report?.type === CONST.REPORT.TYPE.INVOICE;
const isTask = report?.type === CONST.REPORT.TYPE.TASK;
Expand Down
2 changes: 1 addition & 1 deletion src/components/WideRHPContextProvider/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type WideRHPContextType = {
removeSuperWideRHPRouteKey: (route: NavigationRoute) => void;

// Mark reportID as expense before condition check
markReportIDAsExpense: (reportID: string) => void;
markReportIDAsExpense: (reportID?: string) => void;

// Mark reportID as multi-transaction expense before condition check
markReportIDAsMultiTransactionExpense: (reportID: string) => void;
Expand Down
6 changes: 3 additions & 3 deletions src/libs/MergeTransactionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,15 +176,15 @@ function getTransactionsAndReportsFromSearch(
} {
const transaction1 = searchResults.data[`${ONYXKEYS.COLLECTION.TRANSACTION}${transactionIDs.at(0)}`];
const transaction2 = searchResults.data[`${ONYXKEYS.COLLECTION.TRANSACTION}${transactionIDs.at(1)}`];
const policyID1 = searchResults.data[`${ONYXKEYS.COLLECTION.REPORT}${transaction1?.reportID}`]?.policyID;
const policyID2 = searchResults.data[`${ONYXKEYS.COLLECTION.REPORT}${transaction2?.reportID}`]?.policyID;

return {
transactions: [transaction1, transaction2].filter((transaction) => !!transaction),
reports: [searchResults.data[`${ONYXKEYS.COLLECTION.REPORT}${transaction1?.reportID}`], searchResults.data[`${ONYXKEYS.COLLECTION.REPORT}${transaction2?.reportID}`]].filter(
(report) => !!report,
),
policies: [searchResults.data[`${ONYXKEYS.COLLECTION.POLICY}${transaction1?.policyID}`], searchResults.data[`${ONYXKEYS.COLLECTION.POLICY}${transaction2?.policyID}`]].filter(
(policy) => !!policy,
),
policies: [searchResults.data[`${ONYXKEYS.COLLECTION.POLICY}${policyID1}`], searchResults.data[`${ONYXKEYS.COLLECTION.POLICY}${policyID2}`]].filter((policy) => !!policy),
};
}

Expand Down
47 changes: 16 additions & 31 deletions src/libs/SearchUIUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ import type {
SearchDataTypes,
SearchMemberGroup,
SearchTask,
SearchTransaction,
SearchTransactionAction,
SearchWithdrawalIDGroup,
} from '@src/types/onyx/SearchResults';
Expand Down Expand Up @@ -696,8 +695,7 @@ function getSuggestedSearchesVisibility(
* Returns a list of properties that are common to every Search ListItem
*/
function getTransactionItemCommonFormattedProperties(
// eslint-disable-next-line @typescript-eslint/no-deprecated
transactionItem: SearchTransaction,
transactionItem: OnyxTypes.Transaction,
from: OnyxTypes.PersonalDetails,
to: OnyxTypes.PersonalDetails,
policy: OnyxTypes.Policy,
Expand Down Expand Up @@ -854,15 +852,13 @@ function isAmountTooLong(amount: number, maxLength = 8): boolean {
return Math.abs(amount).toString().length >= maxLength;
}

// eslint-disable-next-line @typescript-eslint/no-deprecated
function isTransactionAmountTooLong(transactionItem: TransactionListItemType | SearchTransaction | OnyxTypes.Transaction) {
function isTransactionAmountTooLong(transactionItem: TransactionListItemType | OnyxTypes.Transaction) {
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
const amount = Math.abs(transactionItem.modifiedAmount || transactionItem.amount);
return isAmountTooLong(amount);
}

// eslint-disable-next-line @typescript-eslint/no-deprecated
function isTransactionTaxAmountTooLong(transactionItem: TransactionListItemType | SearchTransaction | OnyxTypes.Transaction) {
function isTransactionTaxAmountTooLong(transactionItem: TransactionListItemType | OnyxTypes.Transaction) {
// it won't matter if pass true or false as second argument to getTaxAmount here because isAmountTooLong function uses Math.abs on the returned value of getTaxAmount
const taxAmount = getTaxAmount(transactionItem, false);
return isAmountTooLong(taxAmount);
Expand All @@ -875,8 +871,7 @@ function getWideAmountIndicators(data: TransactionListItemType[] | TransactionGr
let isAmountWide = false;
let isTaxAmountWide = false;

// eslint-disable-next-line @typescript-eslint/no-deprecated
const processTransaction = (transaction: TransactionListItemType | SearchTransaction) => {
const processTransaction = (transaction: TransactionListItemType | OnyxTypes.Transaction) => {
isAmountWide ||= isTransactionAmountTooLong(transaction);
isTaxAmountWide ||= isTransactionTaxAmountTooLong(transaction);
};
Expand Down Expand Up @@ -1043,7 +1038,7 @@ function shouldShowYear(
result.shouldShowYearPosted = postedYear !== currentYear;
}

const exportedAction = lastExportedActionByReportID.get(item.reportID);
const exportedAction = item.reportID ? lastExportedActionByReportID.get(item.reportID) : undefined;
if (exportedAction?.created && DateUtils.doesDateBelongToAPastYear(exportedAction.created)) {
result.shouldShowYearExported = true;
}
Expand Down Expand Up @@ -1109,8 +1104,7 @@ function getIOUReportName(translate: LocalizedTranslate, data: OnyxTypes.SearchR

function getTransactionViolations(
allViolations: OnyxCollection<OnyxTypes.TransactionViolation[]>,
// eslint-disable-next-line @typescript-eslint/no-deprecated
transaction: SearchTransaction,
transaction: OnyxTypes.Transaction,
currentUserEmail: string,
currentUserAccountID: number,
report: OnyxEntry<OnyxTypes.Report>,
Expand Down Expand Up @@ -1304,7 +1298,7 @@ function getTransactionsSections(
submitted,
approved,
posted,
exported: lastExportedActionByReportID.get(transactionItem.reportID)?.created ?? '',
exported: transactionItem.reportID ? (lastExportedActionByReportID.get(transactionItem.reportID)?.created ?? '') : '',
shouldShowMerchant,
shouldShowYear: shouldShowYearCreated,
shouldShowYearSubmitted,
Expand All @@ -1327,15 +1321,10 @@ function getTransactionsSections(
* Retrieves all transactions associated with a specific report ID from the search data.

*/
// eslint-disable-next-line @typescript-eslint/no-deprecated
function getTransactionsForReport(data: OnyxTypes.SearchResults['data'], reportID: string): SearchTransaction[] {
return (
Object.entries(data)
// eslint-disable-next-line @typescript-eslint/no-deprecated
.filter(([key, value]) => isTransactionEntry(key) && (value as SearchTransaction)?.reportID === reportID)
// eslint-disable-next-line @typescript-eslint/no-deprecated
.map(([, value]) => value as SearchTransaction)
);
function getTransactionsForReport(data: OnyxTypes.SearchResults['data'], reportID: string): OnyxTypes.Transaction[] {
return Object.entries(data)
.filter(([key, value]) => isTransactionEntry(key) && (value as OnyxTypes.Transaction)?.reportID === reportID)
.map(([, value]) => value as OnyxTypes.Transaction);
}

/**
Expand Down Expand Up @@ -1426,8 +1415,7 @@ function getActions(
}

const allActions: SearchTransactionAction[] = [];
// eslint-disable-next-line @typescript-eslint/no-deprecated
let allReportTransactions: SearchTransaction[];
let allReportTransactions: OnyxTypes.Transaction[];
if (isReportEntry(key)) {
allReportTransactions = getTransactionsForReport(data, report.reportID);
} else {
Expand Down Expand Up @@ -1846,7 +1834,7 @@ function getReportSections(
formattedTotal,
formattedMerchant,
date,
exported: lastExportedActionByReportID.get(transactionItem.reportID)?.created ?? '',
exported: transactionItem.reportID ? (lastExportedActionByReportID.get(transactionItem.reportID)?.created ?? '') : '',
shouldShowMerchant,
shouldShowYear: shouldShowYearCreatedTransaction,
shouldShowYearSubmitted: shouldShowYearSubmittedTransaction,
Expand Down Expand Up @@ -2495,8 +2483,7 @@ function isSearchResultsEmpty(searchResults: SearchResults, groupBy?: SearchGrou
return !Object.keys(searchResults?.data).some(
(key) =>
key.startsWith(ONYXKEYS.COLLECTION.TRANSACTION) &&
// eslint-disable-next-line @typescript-eslint/no-deprecated
(searchResults?.data[key as keyof typeof searchResults.data] as SearchTransaction)?.pendingAction !== CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
(searchResults?.data[key as keyof typeof searchResults.data] as OnyxTypes.Transaction)?.pendingAction !== CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
);
}

Expand Down Expand Up @@ -3208,9 +3195,7 @@ function getColumnsToShow(
}

const {moneyRequestReportActionsByTransactionID} = Array.isArray(data) ? {} : createReportActionsLookupMaps(data);

// eslint-disable-next-line @typescript-eslint/no-deprecated
const updateColumns = (transaction: OnyxTypes.Transaction | SearchTransaction) => {
const updateColumns = (transaction: OnyxTypes.Transaction) => {
const merchant = transaction.modifiedMerchant ? transaction.modifiedMerchant : (transaction.merchant ?? '');
if ((merchant !== '' && merchant !== CONST.TRANSACTION.PARTIAL_TRANSACTION_MERCHANT) || isScanning(transaction)) {
columns[CONST.SEARCH.TABLE_COLUMNS.MERCHANT] = true;
Expand Down Expand Up @@ -3247,7 +3232,7 @@ function getColumnsToShow(
}

// eslint-disable-next-line @typescript-eslint/no-deprecated
const toFieldValue = getToFieldValueForTransaction(transaction as SearchTransaction, report, data.personalDetailsList, reportAction);
const toFieldValue = getToFieldValueForTransaction(transaction, report, data.personalDetailsList, reportAction);
if (toFieldValue.accountID && toFieldValue.accountID !== currentAccountID && !columns[CONST.SEARCH.TABLE_COLUMNS.TO]) {
columns[CONST.SEARCH.TABLE_COLUMNS.TO] = !!report && !isOpenReport(report);
}
Expand Down
14 changes: 4 additions & 10 deletions src/libs/TransactionUtils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@
import type {Errors, PendingAction} from '@src/types/onyx/OnyxCommon';
import type {CurrentUserPersonalDetails} from '@src/types/onyx/PersonalDetails';
import type {OnyxData} from '@src/types/onyx/Request';
// eslint-disable-next-line @typescript-eslint/no-deprecated
import type {SearchTransaction} from '@src/types/onyx/SearchResults';
import type {
Comment,
Receipt,
Expand Down Expand Up @@ -126,7 +124,7 @@
};

let deprecatedAllReports: OnyxCollection<Report> = {};
Onyx.connect({

Check warning on line 127 in src/libs/TransactionUtils/index.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Onyx.connect() is deprecated. Use useOnyx() hook instead and pass the data as parameters to a pure function
key: ONYXKEYS.COLLECTION.REPORT,
waitForCollectionCallback: true,
callback: (value) => {
Expand All @@ -135,7 +133,7 @@
});

let deprecatedAllTransactionViolations: OnyxCollection<TransactionViolations> = {};
Onyx.connect({

Check warning on line 136 in src/libs/TransactionUtils/index.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Onyx.connect() is deprecated. Use useOnyx() hook instead and pass the data as parameters to a pure function
key: ONYXKEYS.COLLECTION.TRANSACTION_VIOLATIONS,
waitForCollectionCallback: true,
callback: (value) => (deprecatedAllTransactionViolations = value),
Expand Down Expand Up @@ -1268,8 +1266,7 @@
* Get all transaction violations of the transaction with given transactionID.
*/
function getTransactionViolations(
// eslint-disable-next-line @typescript-eslint/no-deprecated
transaction: OnyxEntry<Transaction | SearchTransaction>,
transaction: OnyxEntry<Transaction>,
transactionViolations: OnyxCollection<TransactionViolations>,
currentUserEmail: string,
currentUserAccountID: number,
Expand Down Expand Up @@ -1314,8 +1311,7 @@
* Check if there is broken connection violation.
*/
function hasBrokenConnectionViolation(
// eslint-disable-next-line @typescript-eslint/no-deprecated
transaction: Transaction | SearchTransaction,
transaction: Transaction,
transactionViolations: OnyxCollection<TransactionViolations> | undefined,
currentUserEmail: string,
currentUserAccountID: number,
Expand Down Expand Up @@ -1457,8 +1453,7 @@
* Check if there is pending rter violation in all transactionViolations with given transactionIDs.
*/
function allHavePendingRTERViolation(
// eslint-disable-next-line @typescript-eslint/no-deprecated
transactions: OnyxEntry<Transaction[] | SearchTransaction[]>,
transactions: OnyxEntry<Transaction[]>,
transactionViolations: OnyxCollection<TransactionViolations> | undefined,
currentUserEmail: string,
currentUserAccountID: number,
Expand Down Expand Up @@ -1492,8 +1487,7 @@
* Check if there is any transaction without RTER violation within the given transactionIDs.
*/
function hasAnyTransactionWithoutRTERViolation(
// eslint-disable-next-line @typescript-eslint/no-deprecated
transactions: Transaction[] | SearchTransaction[],
transactions: Transaction[],
transactionViolations: OnyxCollection<TransactionViolations> | undefined,
currentUserEmail: string,
currentUserAccountID: number,
Expand Down
9 changes: 3 additions & 6 deletions src/libs/actions/IOU/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@
import type {InvoiceReceiver, InvoiceReceiverType, ReportNextStep} from '@src/types/onyx/Report';
import type ReportAction from '@src/types/onyx/ReportAction';
import type {OnyxData} from '@src/types/onyx/Request';
import type {SearchTransaction} from '@src/types/onyx/SearchResults';
import type {Comment, Receipt, ReceiptSource, Routes, SplitShares, TransactionChanges, TransactionCustomUnit, WaypointCollection} from '@src/types/onyx/Transaction';
import {isEmptyObject} from '@src/types/utils/EmptyObject';

Expand Down Expand Up @@ -754,7 +753,7 @@
};

let allPersonalDetails: OnyxTypes.PersonalDetailsList = {};
Onyx.connect({

Check warning on line 756 in src/libs/actions/IOU/index.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Onyx.connect() is deprecated. Use useOnyx() hook instead and pass the data as parameters to a pure function
key: ONYXKEYS.PERSONAL_DETAILS_LIST,
callback: (value) => {
allPersonalDetails = value ?? {};
Expand Down Expand Up @@ -851,7 +850,7 @@
};

let allTransactions: NonNullable<OnyxCollection<OnyxTypes.Transaction>> = {};
Onyx.connect({

Check warning on line 853 in src/libs/actions/IOU/index.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Onyx.connect() is deprecated. Use useOnyx() hook instead and pass the data as parameters to a pure function
key: ONYXKEYS.COLLECTION.TRANSACTION,
waitForCollectionCallback: true,
callback: (value) => {
Expand All @@ -865,7 +864,7 @@
});

let allTransactionDrafts: NonNullable<OnyxCollection<OnyxTypes.Transaction>> = {};
Onyx.connect({

Check warning on line 867 in src/libs/actions/IOU/index.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Onyx.connect() is deprecated. Use useOnyx() hook instead and pass the data as parameters to a pure function
key: ONYXKEYS.COLLECTION.TRANSACTION_DRAFT,
waitForCollectionCallback: true,
callback: (value) => {
Expand All @@ -874,7 +873,7 @@
});

let allTransactionViolations: NonNullable<OnyxCollection<OnyxTypes.TransactionViolations>> = {};
Onyx.connect({

Check warning on line 876 in src/libs/actions/IOU/index.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Onyx.connect() is deprecated. Use useOnyx() hook instead and pass the data as parameters to a pure function
key: ONYXKEYS.COLLECTION.TRANSACTION_VIOLATIONS,
waitForCollectionCallback: true,
callback: (value) => {
Expand All @@ -888,7 +887,7 @@
});

let allNextSteps: NonNullable<OnyxCollection<OnyxTypes.ReportNextStepDeprecated>> = {};
Onyx.connect({

Check warning on line 890 in src/libs/actions/IOU/index.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Onyx.connect() is deprecated. Use useOnyx() hook instead and pass the data as parameters to a pure function
key: ONYXKEYS.COLLECTION.NEXT_STEP,
waitForCollectionCallback: true,
callback: (value) => {
Expand All @@ -900,7 +899,7 @@
// `allRecentlyUsedTags` was moved here temporarily from `src/libs/actions/Policy/Tag.ts` during the `Deprecate Onyx.connect` refactor.
// All uses of this variable should be replaced with `useOnyx`.
let allRecentlyUsedTags: OnyxCollection<RecentlyUsedTags> = {};
Onyx.connect({

Check warning on line 902 in src/libs/actions/IOU/index.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Onyx.connect() is deprecated. Use useOnyx() hook instead and pass the data as parameters to a pure function
key: ONYXKEYS.COLLECTION.POLICY_RECENTLY_USED_TAGS,
waitForCollectionCallback: true,
callback: (val) => (allRecentlyUsedTags = val),
Expand Down Expand Up @@ -9654,8 +9653,8 @@
value: {
data: {
[`${ONYXKEYS.COLLECTION.REPORT}${iouReport?.reportID}`]: {
// @ts-expect-error - will be solved in https://github.com/Expensify/App/issues/73830
pendingFields: {
// @ts-expect-error - will be solved in https://github.com/Expensify/App/issues/73830
preview: CONST.RED_BRICK_ROAD_PENDING_ACTION.DELETE,
},
},
Expand Down Expand Up @@ -10400,8 +10399,7 @@
iouReport: OnyxTypes.OnyxInputOrEntry<OnyxTypes.Report>,
chatReport: OnyxTypes.OnyxInputOrEntry<OnyxTypes.Report>,
policy: OnyxTypes.OnyxInputOrEntry<OnyxTypes.Policy>,
// eslint-disable-next-line @typescript-eslint/no-deprecated
transactions?: OnyxTypes.Transaction[] | SearchTransaction[],
transactions?: OnyxTypes.Transaction[],
onlyShowPayElsewhere = false,
chatReportRNVP?: OnyxTypes.ReportNameValuePairs,
invoiceReceiverPolicy?: OnyxTypes.Policy,
Expand Down Expand Up @@ -10472,8 +10470,7 @@
function canSubmitReport(
report: OnyxEntry<OnyxTypes.Report>,
policy: OnyxEntry<OnyxTypes.Policy>,
// eslint-disable-next-line @typescript-eslint/no-deprecated
transactions: OnyxTypes.Transaction[] | SearchTransaction[],
transactions: OnyxTypes.Transaction[],
allViolations: OnyxCollection<OnyxTypes.TransactionViolations> | undefined,
isReportArchived: boolean,
currentUserEmailParam: string,
Expand Down
Loading
Loading