diff --git a/web/ee/docker/Dockerfile.dev b/web/ee/docker/Dockerfile.dev index 719331462b..6a151cdff0 100644 --- a/web/ee/docker/Dockerfile.dev +++ b/web/ee/docker/Dockerfile.dev @@ -18,7 +18,7 @@ COPY ee/package.json ./ee/yarn.lock* ./ee/package-lock.json* ./ee/pnpm-lock.yaml COPY oss/package.json ./oss/yarn.lock* ./oss/package-lock.json* ./oss/pnpm-lock.yaml* ./oss/.npmrc* ./oss/ COPY ./pnpm-workspace.yaml ./turbo.json ./ -COPY ./entrypoint.sh /app/entrypoint.sh +COPY ./entrypoint.sh /app/entrypoint.sh RUN pnpm i diff --git a/web/oss/package.json b/web/oss/package.json index 32f32c8596..2bf130c858 100644 --- a/web/oss/package.json +++ b/web/oss/package.json @@ -95,6 +95,8 @@ "lexical": "^0.38.2", "lodash": "^4.17.21", "lucide-react": "^0.475.0", + "motion": "^12.23.24", + "@agentaai/nextstepjs": "^2.1.3-agenta.1", "next": "15.5.9", "papaparse": "^5.5.3", "postcss": "^8.5.6", @@ -137,4 +139,4 @@ "node-mocks-http": "^1.17.2", "tailwind-scrollbar": "^3" } -} +} \ No newline at end of file diff --git a/web/oss/src/components/DeploymentsDashboard/components/Drawer/index.tsx b/web/oss/src/components/DeploymentsDashboard/components/Drawer/index.tsx index 93f8eab0c7..4635c83e41 100644 --- a/web/oss/src/components/DeploymentsDashboard/components/Drawer/index.tsx +++ b/web/oss/src/components/DeploymentsDashboard/components/Drawer/index.tsx @@ -3,10 +3,11 @@ import {ComponentProps, ReactNode, useState} from "react" import {CloseOutlined, FullscreenExitOutlined, FullscreenOutlined} from "@ant-design/icons" import {Button, Divider, Drawer} from "antd" import clsx from "clsx" -import {useAtomValue} from "jotai" +import {useAtomValue, useSetAtom} from "jotai" import {createUseStyles} from "react-jss" import {envRevisionsAtom} from "@/oss/components/DeploymentsDashboard/atoms" +import {openSelectDeployVariantModalAtom} from "@/oss/components/DeploymentsDashboard/modals/store/deploymentModalsStore" import EnhancedDrawer from "@/oss/components/EnhancedUIs/Drawer" import {JSSTheme} from "@/oss/lib/Types" import {revisionListAtom} from "@/oss/state/variant/selectors/variant" @@ -98,6 +99,8 @@ const DeploymentsDrawerContent = ({ }: DeploymentsDrawerProps) => { const variants = useAtomValue(revisionListAtom) || [] const envRevisions = useAtomValue(envRevisionsAtom) + const openSelectDeployVariantModal = useSetAtom(openSelectDeployVariantModalAtom) + return (