feat: ✨ Add collaboration
This commit is contained in:
@@ -13,7 +13,7 @@ import { useUser } from 'contexts/UserContext'
|
||||
import { Typebot } from 'models'
|
||||
import { useRouter } from 'next/router'
|
||||
import React, { useState } from 'react'
|
||||
import { createTypebot, importTypebot } from 'services/typebots'
|
||||
import { createTypebot, importTypebot } from 'services/typebots/typebots'
|
||||
import { generate } from 'short-uuid'
|
||||
|
||||
export type TemplateProps = { name: string; emoji: string; fileName: string }
|
||||
|
||||
@@ -10,14 +10,14 @@ import { useTypebot } from 'contexts/TypebotContext'
|
||||
import { Graph } from 'components/shared/Graph'
|
||||
|
||||
export const Board = () => {
|
||||
const { typebot } = useTypebot()
|
||||
const { typebot, isReadOnly } = useTypebot()
|
||||
const { rightPanel } = useEditor()
|
||||
|
||||
return (
|
||||
<Flex flex="1" pos="relative" bgColor="gray.50" h="full">
|
||||
<GraphDndContext>
|
||||
<StepsSideBar />
|
||||
<GraphProvider blocks={typebot?.blocks ?? []}>
|
||||
<GraphProvider blocks={typebot?.blocks ?? []} isReadOnly={isReadOnly}>
|
||||
{typebot && <Graph flex="1" typebot={typebot} />}
|
||||
<BoardMenuButton pos="absolute" right="40px" top="20px" />
|
||||
{rightPanel === RightPanel.PREVIEW && <PreviewDrawer />}
|
||||
|
||||
@@ -5,7 +5,7 @@ import { useUser } from 'contexts/UserContext'
|
||||
import { useRouter } from 'next/router'
|
||||
import React, { useMemo } from 'react'
|
||||
import { useStats } from 'services/analytics'
|
||||
import { isFreePlan } from 'services/user'
|
||||
import { isFreePlan } from 'services/user/user'
|
||||
import { AnalyticsContent } from './AnalyticsContent'
|
||||
import { SubmissionsContent } from './SubmissionContent'
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
deleteResults,
|
||||
getAllResults,
|
||||
useResults,
|
||||
} from 'services/results'
|
||||
} from 'services/typebots'
|
||||
import { unparse } from 'papaparse'
|
||||
import { UnlockProPlanInfo } from 'components/shared/Info'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user