mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 06:37:14 -04:00
chore: edit row components reorganize
This commit is contained in:
parent
4545410703
commit
98e9ba19d6
7 changed files with 7 additions and 7 deletions
|
@ -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,
|
|
@ -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';
|
|
@ -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';
|
||||
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue