* feat(ui) - getting started - wip * feat(ui) - getting started - wip * feat(ui) - getting started - wip * feat(ui) - getting started - wip * change(ui) - getting started * change(ui) - getting started - css changes
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import StepList, { Step } from './StepList';
|
|
import Modal from 'App/components/Modal/Modal';
|
|
import CircleProgress from './CircleProgress';
|
|
import GettingStartedProgress from './GettingStartedProgress';
|
|
import { observer } from 'mobx-react-lite';
|
|
|
|
export interface Props {
|
|
list: Step[];
|
|
}
|
|
|
|
function GettingStartedModal(props: Props) {
|
|
const { list } = props;
|
|
const pendingSteps = list.filter((step) => step.status === 'pending');
|
|
const completedSteps = list.filter(
|
|
(step) => step.status === 'completed' || step.status === 'ignored'
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Modal.Header title="Setup Openreplay">
|
|
<div className="px-4 pt-4">
|
|
<div className="text-2xl">Setup Openreplay</div>
|
|
<p>Find all the ways in which OpenReplay can benefit you and your product.</p>
|
|
</div>
|
|
</Modal.Header>
|
|
|
|
<Modal.Content className="p-4 pb-20">
|
|
<StepList title="Pending" steps={pendingSteps} status="pending" />
|
|
<StepList title="Completed" steps={completedSteps} status="completed" />
|
|
</Modal.Content>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default observer(GettingStartedModal);
|