166 lines
4.0 KiB
TypeScript
166 lines
4.0 KiB
TypeScript
import { Block, Edge, IdMap, Source, Step, Target } from 'models'
|
|
import {
|
|
createContext,
|
|
Dispatch,
|
|
MutableRefObject,
|
|
ReactNode,
|
|
SetStateAction,
|
|
useContext,
|
|
useEffect,
|
|
useState,
|
|
} from 'react'
|
|
|
|
export const stubLength = 20
|
|
export const blockWidth = 300
|
|
export const blockAnchorsOffset = {
|
|
left: {
|
|
x: 0,
|
|
y: 20,
|
|
},
|
|
top: {
|
|
x: blockWidth / 2,
|
|
y: 0,
|
|
},
|
|
right: {
|
|
x: blockWidth,
|
|
y: 20,
|
|
},
|
|
}
|
|
|
|
export type Coordinates = { x: number; y: number }
|
|
|
|
type Position = Coordinates & { scale: number }
|
|
|
|
export type Anchor = {
|
|
coordinates: Coordinates
|
|
}
|
|
|
|
export type Node = Omit<Block, 'steps'> & {
|
|
steps: (Step & {
|
|
sourceAnchorsPosition: { left: Coordinates; right: Coordinates }
|
|
})[]
|
|
}
|
|
|
|
export const graphPositionDefaultValue = { x: 400, y: 100, scale: 1 }
|
|
|
|
export type ConnectingIds = {
|
|
source: Source
|
|
target?: Target
|
|
}
|
|
|
|
type StepId = string
|
|
type ButtonId = string
|
|
export type Endpoint = {
|
|
id: StepId | ButtonId
|
|
ref: MutableRefObject<HTMLDivElement | null>
|
|
}
|
|
|
|
export type BlocksCoordinates = IdMap<Coordinates>
|
|
|
|
const graphContext = createContext<{
|
|
blocksCoordinates: BlocksCoordinates
|
|
updateBlockCoordinates: (blockId: string, newCoord: Coordinates) => void
|
|
graphPosition: Position
|
|
setGraphPosition: Dispatch<SetStateAction<Position>>
|
|
connectingIds: ConnectingIds | null
|
|
setConnectingIds: Dispatch<SetStateAction<ConnectingIds | null>>
|
|
previewingEdge?: Edge
|
|
setPreviewingEdge: Dispatch<SetStateAction<Edge | undefined>>
|
|
sourceEndpoints: IdMap<Endpoint>
|
|
addSourceEndpoint: (endpoint: Endpoint) => void
|
|
targetEndpoints: IdMap<Endpoint>
|
|
addTargetEndpoint: (endpoint: Endpoint) => void
|
|
openedStepId?: string
|
|
setOpenedStepId: Dispatch<SetStateAction<string | undefined>>
|
|
isReadOnly: boolean
|
|
graphOffsetY: number
|
|
setGraphOffsetY: Dispatch<SetStateAction<number>>
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
//@ts-ignore
|
|
}>({
|
|
graphPosition: graphPositionDefaultValue,
|
|
connectingIds: null,
|
|
})
|
|
|
|
export const GraphProvider = ({
|
|
children,
|
|
blocks,
|
|
isReadOnly = false,
|
|
}: {
|
|
children: ReactNode
|
|
blocks: Block[]
|
|
isReadOnly?: boolean
|
|
}) => {
|
|
const [graphPosition, setGraphPosition] = useState(graphPositionDefaultValue)
|
|
const [connectingIds, setConnectingIds] = useState<ConnectingIds | null>(null)
|
|
const [previewingEdge, setPreviewingEdge] = useState<Edge>()
|
|
const [sourceEndpoints, setSourceEndpoints] = useState<IdMap<Endpoint>>({})
|
|
const [targetEndpoints, setTargetEndpoints] = useState<IdMap<Endpoint>>({})
|
|
const [openedStepId, setOpenedStepId] = useState<string>()
|
|
const [blocksCoordinates, setBlocksCoordinates] = useState<BlocksCoordinates>(
|
|
{}
|
|
)
|
|
const [graphOffsetY, setGraphOffsetY] = useState(0)
|
|
|
|
useEffect(() => {
|
|
setBlocksCoordinates(
|
|
blocks.reduce(
|
|
(coords, block) => ({
|
|
...coords,
|
|
[block.id]: block.graphCoordinates,
|
|
}),
|
|
{}
|
|
)
|
|
)
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [blocks])
|
|
|
|
const addSourceEndpoint = (endpoint: Endpoint) => {
|
|
setSourceEndpoints((endpoints) => ({
|
|
...endpoints,
|
|
[endpoint.id]: endpoint,
|
|
}))
|
|
}
|
|
|
|
const addTargetEndpoint = (endpoint: Endpoint) => {
|
|
setTargetEndpoints((endpoints) => ({
|
|
...endpoints,
|
|
[endpoint.id]: endpoint,
|
|
}))
|
|
}
|
|
|
|
const updateBlockCoordinates = (blockId: string, newCoord: Coordinates) =>
|
|
setBlocksCoordinates((blocksCoordinates) => ({
|
|
...blocksCoordinates,
|
|
[blockId]: newCoord,
|
|
}))
|
|
|
|
return (
|
|
<graphContext.Provider
|
|
value={{
|
|
graphPosition,
|
|
setGraphPosition,
|
|
connectingIds,
|
|
setConnectingIds,
|
|
previewingEdge,
|
|
setPreviewingEdge,
|
|
sourceEndpoints,
|
|
targetEndpoints,
|
|
addSourceEndpoint,
|
|
addTargetEndpoint,
|
|
openedStepId,
|
|
setOpenedStepId,
|
|
blocksCoordinates,
|
|
updateBlockCoordinates,
|
|
isReadOnly,
|
|
graphOffsetY,
|
|
setGraphOffsetY,
|
|
}}
|
|
>
|
|
{children}
|
|
</graphContext.Provider>
|
|
)
|
|
}
|
|
|
|
export const useGraph = () => useContext(graphContext)
|