12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import { CellIdentifier } from '../../stores/effects/database/cell/cell_bd_svc';
- import { CellCache } from '../../stores/effects/database/cell/cell_cache';
- import { FieldController } from '../../stores/effects/database/field/field_controller';
- import { FieldType } from '../../../services/backend';
- import { BoardOptionsCell } from './BoardOptionsCell';
- import { BoardDateCell } from './BoardDateCell';
- import { BoardTextCell } from './BoardTextCell';
- export const BoardCell = ({
- cellIdentifier,
- cellCache,
- fieldController,
- }: {
- cellIdentifier: CellIdentifier;
- cellCache: CellCache;
- fieldController: FieldController;
- }) => {
- return (
- <>
- {cellIdentifier.fieldType === FieldType.SingleSelect ||
- cellIdentifier.fieldType === FieldType.MultiSelect ||
- cellIdentifier.fieldType === FieldType.Checklist ? (
- <BoardOptionsCell
- cellIdentifier={cellIdentifier}
- cellCache={cellCache}
- fieldController={fieldController}
- ></BoardOptionsCell>
- ) : cellIdentifier.fieldType === FieldType.DateTime ? (
- <BoardDateCell
- cellIdentifier={cellIdentifier}
- cellCache={cellCache}
- fieldController={fieldController}
- ></BoardDateCell>
- ) : (
- <BoardTextCell
- cellIdentifier={cellIdentifier}
- cellCache={cellCache}
- fieldController={fieldController}
- ></BoardTextCell>
- )}
- </>
- );
- };
|