This reverts commit cc71394863.
Regression introduced in https://github.com/twentyhq/twenty/pull/13213
The import/export use an upsert logic and when it goes through the
"update" path it fails due to the connect not being implemented yet
(should be in https://github.com/twentyhq/core-team-issues/issues/1230)
---------
Co-authored-by: prastoin <paul@twenty.com>
53 lines
1.9 KiB
TypeScript
53 lines
1.9 KiB
TypeScript
import lavenstein from 'js-levenshtein';
|
|
|
|
import { MatchColumnsStepProps } from '@/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep';
|
|
|
|
import {
|
|
SpreadsheetImportField,
|
|
SpreadsheetImportFields,
|
|
} from '@/spreadsheet-import/types';
|
|
import { SpreadsheetColumn } from '@/spreadsheet-import/types/SpreadsheetColumn';
|
|
import { SpreadsheetColumns } from '@/spreadsheet-import/types/SpreadsheetColumns';
|
|
import { isDefined } from 'twenty-shared/utils';
|
|
import { findMatch } from './findMatch';
|
|
import { setColumn } from './setColumn';
|
|
|
|
export const getMatchedColumns = <T extends string>(
|
|
columns: SpreadsheetColumns<T>,
|
|
fields: SpreadsheetImportFields<T>,
|
|
data: MatchColumnsStepProps['data'],
|
|
autoMapDistance: number,
|
|
) =>
|
|
columns.reduce<SpreadsheetColumn<T>[]>((arr, column) => {
|
|
const autoMatch = findMatch(column.header, fields, autoMapDistance);
|
|
if (isDefined(autoMatch)) {
|
|
const field = fields.find(
|
|
(field) => field.key === autoMatch,
|
|
) as SpreadsheetImportField<T>;
|
|
const duplicateIndex = arr.findIndex(
|
|
(column) => 'value' in column && column.value === field.key,
|
|
);
|
|
const duplicate = arr[duplicateIndex];
|
|
if (duplicate && 'value' in duplicate) {
|
|
return lavenstein(duplicate.value, duplicate.header) <
|
|
lavenstein(autoMatch, column.header)
|
|
? [
|
|
...arr.slice(0, duplicateIndex),
|
|
setColumn(arr[duplicateIndex], field, data),
|
|
...arr.slice(duplicateIndex + 1),
|
|
setColumn(column),
|
|
]
|
|
: [
|
|
...arr.slice(0, duplicateIndex),
|
|
setColumn(arr[duplicateIndex]),
|
|
...arr.slice(duplicateIndex + 1),
|
|
setColumn(column, field, data),
|
|
];
|
|
} else {
|
|
return [...arr, setColumn(column, field, data)];
|
|
}
|
|
} else {
|
|
return [...arr, column];
|
|
}
|
|
}, []);
|