123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- import { WidgetConfig, WidgetProps } from "@medusajs/admin";
- import { useAdminCustomPost, useAdminCustomQuery } from "medusa-react";
- import React, { useEffect, useState } from "react";
- import { useNavigate } from "react-router-dom";
- import { OnboardingState } from "../../../models/onboarding";
- import {
- AdminOnboardingUpdateStateReq,
- OnboardingStateRes,
- UpdateOnboardingStateInput,
- } from "../../../types/onboarding";
- import OrderDetail from "../../components/onboarding-flow/orders/order-detail";
- import OrdersList from "../../components/onboarding-flow/orders/orders-list";
- import ProductDetail from "../../components/onboarding-flow/products/product-detail";
- import ProductsList from "../../components/onboarding-flow/products/products-list";
- import Accordion from "../../components/shared/accordion";
- import Button from "../../components/shared/button";
- import { Container } from "../../components/shared/container";
- import GetStartedIcon from "../../components/shared/icons/get-started-icon";
- type STEP_ID =
- | "create_product"
- | "preview_product"
- | "create_order"
- | "setup_finished";
- export type StepContentProps = WidgetProps & {
- onNext?: Function;
- isComplete?: boolean;
- data?: OnboardingState;
- };
- type Step = {
- id: STEP_ID;
- title: string;
- component: React.FC<StepContentProps>;
- onNext?: Function;
- };
- const STEP_FLOW: STEP_ID[] = [
- "create_product",
- "preview_product",
- "create_order",
- "setup_finished",
- ];
- const QUERY_KEY = ["onboarding_state"];
- const OnboardingFlow = (props: WidgetProps) => {
- const { data, isLoading } = useAdminCustomQuery<
- undefined,
- OnboardingStateRes
- >("/onboarding", QUERY_KEY);
- const { mutate } = useAdminCustomPost<
- AdminOnboardingUpdateStateReq,
- OnboardingStateRes
- >("/onboarding", QUERY_KEY);
- const navigate = useNavigate();
- const currentStep: STEP_ID | undefined = data?.status
- ?.current_step as STEP_ID;
- const [openStep, setOpenStep] = useState(currentStep);
- const [completed, setCompleted] = useState(false);
- useEffect(() => {
- setOpenStep(currentStep);
- if (currentStep === STEP_FLOW[STEP_FLOW.length - 1]) setCompleted(true);
- }, [currentStep]);
- if (
- !isLoading &&
- data?.status?.is_complete &&
- !localStorage.getItem("override_onboarding_finish")
- )
- return null;
- const updateServerState = (
- payload: UpdateOnboardingStateInput,
- onSuccess: () => void = () => {}
- ) => {
- mutate(payload, { onSuccess });
- };
- const onStart = () => {
- updateServerState({ current_step: STEP_FLOW[0] });
- navigate(`/a/products`);
- };
- const setStepComplete = ({
- step_id,
- extraData,
- onComplete,
- }: {
- step_id: STEP_ID;
- extraData?: UpdateOnboardingStateInput;
- onComplete?: () => void;
- }) => {
- const next = STEP_FLOW[STEP_FLOW.findIndex((step) => step === step_id) + 1];
- updateServerState({ current_step: next, ...extraData }, onComplete);
- };
- const goToProductView = (product: any) => {
- setStepComplete({
- step_id: "create_product",
- extraData: { product_id: product.id },
- onComplete: () => navigate(`/a/products/${product.id}`),
- });
- };
- const goToOrders = () => {
- setStepComplete({
- step_id: "preview_product",
- onComplete: () => navigate(`/a/orders`),
- });
- };
- const goToOrderView = (order: any) => {
- setStepComplete({
- step_id: "create_order",
- onComplete: () => navigate(`/a/orders/${order.id}`),
- });
- };
- const onComplete = () => {
- setCompleted(true);
- };
- const onHide = () => {
- updateServerState({ is_complete: true });
- };
- const Steps: Step[] = [
- {
- id: "create_product",
- title: "Create Product",
- component: ProductsList,
- onNext: goToProductView,
- },
- {
- id: "preview_product",
- title: "Preview Product",
- component: ProductDetail,
- onNext: goToOrders,
- },
- {
- id: "create_order",
- title: "Create an Order",
- component: OrdersList,
- onNext: goToOrderView,
- },
- {
- id: "setup_finished",
- title: "Setup Finished: Start developing with Medusa",
- component: OrderDetail,
- },
- ];
- const isStepComplete = (step_id: STEP_ID) =>
- STEP_FLOW.indexOf(currentStep) > STEP_FLOW.indexOf(step_id);
- return (
- <>
- <Container>
- <Accordion
- type="single"
- className="my-3"
- value={openStep}
- onValueChange={(value) => setOpenStep(value as STEP_ID)}
- >
- <div className="flex items-center">
- <div className="mr-5">
- <GetStartedIcon />
- </div>
- {!completed ? (
- <>
- <div>
- <h1 className="font-semibold text-lg">Get started</h1>
- <p>
- Learn the basics of Medusa by creating your first order.
- </p>
- </div>
- <div className="ml-auto flex items-start gap-2">
- {!!currentStep ? (
- <>
- {currentStep === STEP_FLOW[STEP_FLOW.length - 1] ? (
- <Button
- variant="primary"
- size="small"
- onClick={() => onComplete()}
- >
- Complete Setup
- </Button>
- ) : (
- <Button
- variant="secondary"
- size="small"
- onClick={() => onHide()}
- >
- Cancel Setup
- </Button>
- )}
- </>
- ) : (
- <>
- <Button
- variant="secondary"
- size="small"
- onClick={() => onHide()}
- >
- Close
- </Button>
- <Button
- variant="primary"
- size="small"
- onClick={() => onStart()}
- >
- Begin setup
- </Button>
- </>
- )}
- </div>
- </>
- ) : (
- <>
- <div>
- <h1 className="font-semibold text-lg">
- Thank you for completing the setup guide!
- </h1>
- <p>
- This whole experience was built using our new{" "}
- <strong>widgets</strong> feature.
- <br /> You can find out more details and build your own by
- following{" "}
- <a
- href="https://docs.medusajs.com/admin/onboarding?ref=onboarding"
- target="_blank"
- className="text-blue-500 font-semibold"
- >
- our guide
- </a>
- .
- </p>
- </div>
- <div className="ml-auto flex items-start gap-2">
- <Button
- variant="secondary"
- size="small"
- onClick={() => onHide()}
- >
- Close
- </Button>
- </div>
- </>
- )}
- </div>
- {
- <div className="mt-5">
- {(!completed ? Steps : Steps.slice(-1)).map((step) => {
- const isComplete = isStepComplete(step.id);
- const isCurrent = currentStep === step.id;
- return (
- <Accordion.Item
- title={step.title}
- value={step.id}
- headingSize="medium"
- active={isCurrent}
- complete={isComplete}
- disabled={!isComplete && !isCurrent}
- key={step.id}
- {...(!isComplete &&
- !isCurrent && {
- customTrigger: <></>,
- })}
- >
- <div className="py-3 px-11 text-gray-500">
- <step.component
- onNext={step.onNext}
- isComplete={isComplete}
- data={data?.status}
- {...props}
- />
- </div>
- </Accordion.Item>
- );
- })}
- </div>
- }
- </Accordion>
- </Container>
- </>
- );
- };
- export const config: WidgetConfig = {
- zone: [
- "product.list.before",
- "product.details.before",
- "order.list.before",
- "order.details.before",
- ],
- };
- export default OnboardingFlow;
|