123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- import {RouteContextInterface} from 'react-router';
- import {Organization, Project} from 'sentry/types';
- import {OnboardingState} from 'sentry/views/onboarding/types';
- import type {AvatarUser} from './user';
- export enum OnboardingTaskKey {
- FIRST_PROJECT = 'create_project',
- FIRST_EVENT = 'send_first_event',
- INVITE_MEMBER = 'invite_member',
- SECOND_PLATFORM = 'setup_second_platform',
- USER_CONTEXT = 'setup_user_context',
- RELEASE_TRACKING = 'setup_release_tracking',
- SOURCEMAPS = 'setup_sourcemaps',
- USER_REPORTS = 'setup_user_reports',
- ISSUE_TRACKER = 'setup_issue_tracker',
- ALERT_RULE = 'setup_alert_rules',
- FIRST_TRANSACTION = 'setup_transactions',
- METRIC_ALERT = 'setup_metric_alert_rules',
- USER_SELECTED_PROJECTS = 'setup_userselected_projects',
- /// Customized card that shows the selected integrations during onboarding
- INTEGRATIONS = 'integrations',
- /// Regular card that tells the user to setup integrations if no integrations were selected during onboarding
- FIRST_INTEGRATION = 'setup_integrations',
- }
- export type OnboardingSupplementComponentProps = {
- onCompleteTask: () => void;
- task: OnboardingTask;
- };
- export type OnboardingCustomComponentProps = {
- onboardingState: OnboardingState | null;
- organization: Organization;
- projects: Project[];
- setOnboardingState: (state: OnboardingState | null) => void;
- task: OnboardingTask;
- };
- interface OnboardingTaskDescriptorBase {
- description: string;
- /**
- * Should the onboarding task currently be displayed
- */
- display: boolean;
- /**
- * A list of require task keys that must have been completed before these
- * tasks may be completed.
- */
- requisites: OnboardingTaskKey[];
- /**
- * Can this task be skipped?
- */
- skippable: boolean;
- task: OnboardingTaskKey;
- title: string;
- /**
- * An extra component that may be rendered within the onboarding task item.
- */
- SupplementComponent?: React.ComponentType<OnboardingSupplementComponentProps>;
- /**
- * If a render function was provided, it will be used to render the entire card,
- * and the card will be rendered before any other cards regardless of completion status.
- * the render function is therefore responsible for determining the completion status
- * of the card by returning null when it's completed.
- *
- * Note that this should not be given a react component.
- */
- renderCard?: (props: OnboardingCustomComponentProps) => JSX.Element | null;
- /**
- * Joins with this task id for server-side onboarding state.
- * This allows you to create alias for exising onboarding tasks or create multiple
- * tasks for the same server-side task.
- */
- serverTask?: string;
- }
- interface OnboardingTypeDescriptorWithAction extends OnboardingTaskDescriptorBase {
- action: (props: RouteContextInterface) => void;
- actionType: 'action';
- }
- interface OnboardingTypeDescriptorWithExternal extends OnboardingTaskDescriptorBase {
- actionType: 'app' | 'external';
- location: string;
- }
- export type OnboardingTaskDescriptor =
- | OnboardingTypeDescriptorWithAction
- | OnboardingTypeDescriptorWithExternal;
- export interface OnboardingTaskStatus {
- status: 'skipped' | 'pending' | 'complete';
- task: OnboardingTaskKey;
- completionSeen?: string | boolean;
- data?: {[key: string]: string};
- dateCompleted?: string;
- user?: AvatarUser | null;
- }
- interface OnboardingTaskWithAction
- extends OnboardingTaskStatus,
- OnboardingTypeDescriptorWithAction {
- /**
- * Onboarding tasks that are currently incomplete and must be completed
- * before this task should be completed.
- */
- requisiteTasks: OnboardingTaskDescriptor[];
- }
- interface OnboardingTaskWithExternal
- extends OnboardingTaskStatus,
- OnboardingTypeDescriptorWithExternal {
- /**
- * Onboarding tasks that are currently incomplete and must be completed
- * before this task should be completed.
- */
- requisiteTasks: OnboardingTaskDescriptor[];
- }
- export type OnboardingTask = OnboardingTaskWithAction | OnboardingTaskWithExternal;
|