Files
twenty/packages/twenty-front/src/modules/spreadsheet-import/tests/mockRsiValues.ts
Aryan Singh 5c8fe027f9 5425 - Introducing support for all Composite Fields Import (#5470)
Adding support for all Composite Fields while using the "import"
functionality. This includes:
- Currency
- Address

Edit : 
- Refactored a lot of types in the spreadsheet import module
- Renamed a lot of functions, hooks and types that were not
self-explanatory enough

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
2024-07-23 18:02:23 +02:00

196 lines
3.9 KiB
TypeScript

import { defaultSpreadsheetImportProps } from '@/spreadsheet-import/provider/components/SpreadsheetImport';
import { Columns } from '@/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep';
import {
Fields,
SpreadsheetImportDialogOptions,
} from '@/spreadsheet-import/types';
import { sleep } from '~/utils/sleep';
const fields = [
{
icon: null,
label: 'Name',
key: 'name',
alternateMatches: ['first name', 'first'],
fieldType: {
type: 'input',
},
example: 'Stephanie',
fieldValidationDefinitions: [
{
rule: 'required',
errorMessage: 'Name is required',
},
],
},
{
icon: null,
label: 'Surname',
key: 'surname',
alternateMatches: ['second name', 'last name', 'last'],
fieldType: {
type: 'input',
},
example: 'McDonald',
fieldValidationDefinitions: [
{
rule: 'unique',
errorMessage: 'Last name must be unique',
level: 'info',
},
],
description: 'Family / Last name',
},
{
icon: null,
label: 'Age',
key: 'age',
alternateMatches: ['years'],
fieldType: {
type: 'input',
},
example: '23',
fieldValidationDefinitions: [
{
rule: 'regex',
value: '^\\d+$',
errorMessage: 'Age must be a number',
level: 'warning',
},
],
},
{
icon: null,
label: 'Team',
key: 'team',
alternateMatches: ['department'],
fieldType: {
type: 'select',
options: [
{ label: 'Team One', value: 'one' },
{ label: 'Team Two', value: 'two' },
],
},
example: 'Team one',
fieldValidationDefinitions: [
{
rule: 'required',
errorMessage: 'Team is required',
},
],
},
{
icon: null,
label: 'Is manager',
key: 'is_manager',
alternateMatches: ['manages'],
fieldType: {
type: 'checkbox',
booleanMatches: {},
},
example: 'true',
},
] as Fields<string>;
export const importedColums: Columns<string> = [
{
header: 'Name',
index: 0,
type: 2,
value: 'name',
},
{
header: 'Surname',
index: 1,
type: 2,
value: 'surname',
},
{
header: 'Age',
index: 2,
type: 2,
value: 'age',
},
{
header: 'Team',
index: 3,
type: 2,
value: 'team',
},
];
const mockComponentBehaviourForTypes = <T extends string>(
props: SpreadsheetImportDialogOptions<T>,
) => props;
export const mockRsiValues = mockComponentBehaviourForTypes({
...defaultSpreadsheetImportProps,
fields: fields,
onSubmit: async () => {
return;
},
isOpen: true,
onClose: () => {
return;
},
uploadStepHook: async (data) => {
await sleep(4000, (resolve) => resolve(data));
return data;
},
selectHeaderStepHook: async (hData, data) => {
await sleep(4000, (resolve) =>
resolve({
headerValues: hData,
data,
}),
);
return {
headerRow: hData,
importedRows: data,
};
},
// Runs after column matching and on entry change, more performant
matchColumnsStepHook: async (data) => {
await sleep(4000, (resolve) => resolve(data));
return data;
},
});
export const editableTableInitialData = [
{
name: 'Hello',
surname: 'Hello',
age: '123123',
team: 'one',
is_manager: true,
},
{
name: 'Hello',
surname: 'Hello',
age: '12312zsas3',
team: 'two',
is_manager: true,
},
{
name: 'Whooaasdasdawdawdawdiouasdiuasdisdhasd',
surname: 'Hello',
age: '123123',
team: undefined,
is_manager: false,
},
{
name: 'Goodbye',
surname: 'Goodbye',
age: '111',
team: 'two',
is_manager: true,
},
];
export const headerSelectionTableFields = [
['text', 'num', 'select', 'bool'],
['Hello', '123', 'one', 'true'],
['Hello', '123', 'one', 'true'],
['Hello', '123', 'one', 'true'],
];