chore: edit row components reorganize

This commit is contained in:
ascarbek 2023-03-23 00:07:17 +06:00
parent 13e9b29eef
commit da1ee430b0
7 changed files with 7 additions and 7 deletions

View File

@ -8,9 +8,9 @@ import { getBgColor } from '$app/components/_shared/getColor';
import { EditorCheckSvg } from '$app/components/_shared/svg/EditorCheckSvg';
import { EditorUncheckSvg } from '$app/components/_shared/svg/EditorUncheckSvg';
import { useState } from 'react';
import { EditCellText } from '$app/components/board/EditBoardRow/EditCellText';
import { EditFieldPopup } from '$app/components/board/EditBoardRow/EditFieldPopup';
import { FieldTypeIcon } from '$app/components/board/EditBoardRow/FieldTypeIcon';
import { EditCellText } from '$app/components/_shared/EditRow/EditCellText';
import { EditFieldPopup } from '$app/components/_shared/EditRow/EditFieldPopup';
import { FieldTypeIcon } from '$app/components/_shared/EditRow/FieldTypeIcon';
export const EditCellWrapper = ({
viewId,

View File

@ -3,8 +3,8 @@ import useOutsideClick from '$app/components/_shared/useOutsideClick';
import { TrashSvg } from '$app/components/_shared/svg/TrashSvg';
import { CellController } from '$app/stores/effects/database/cell/cell_controller';
import { FieldType } from '@/services/backend';
import { FieldTypeIcon } from '$app/components/board/EditBoardRow/FieldTypeIcon';
import { FieldTypeName } from '$app/components/board/EditBoardRow/FieldTypeName';
import { FieldTypeIcon } from '$app/components/_shared/EditRow/FieldTypeIcon';
import { FieldTypeName } from '$app/components/_shared/EditRow/FieldTypeName';
import { useTranslation } from 'react-i18next';
import { TypeOptionController } from '$app/stores/effects/database/field/type_option/type_option_controller';
import { Some } from 'ts-results';

View File

@ -2,7 +2,7 @@ import { CloseSvg } from '$app/components/_shared/svg/CloseSvg';
import { useRow } from '$app/components/_shared/database-hooks/useRow';
import { DatabaseController } from '$app/stores/effects/database/database_controller';
import { RowInfo } from '$app/stores/effects/database/row/row_cache';
import { EditCellWrapper } from '$app/components/board/EditBoardRow/EditCellWrapper';
import { EditCellWrapper } from '$app/components/_shared/EditRow/EditCellWrapper';
import AddSvg from '$app/components/_shared/svg/AddSvg';
import { useTranslation } from 'react-i18next';

View File

@ -7,7 +7,7 @@ import { ViewLayoutTypePB } from '@/services/backend';
import { DragDropContext } from 'react-beautiful-dnd';
import { useState } from 'react';
import { RowInfo } from '$app/stores/effects/database/row/row_cache';
import { EditRow } from '$app/components/board/EditBoardRow/EditRow';
import { EditRow } from '$app/components/_shared/EditRow/EditRow';
export const Board = ({ viewId }: { viewId: string }) => {
const { controller, rows, groups, onNewRowClick, onDragEnd } = useDatabase(viewId, ViewLayoutTypePB.Board);