123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- import {forwardRef} from 'react';
- import styled from '@emotion/styled';
- import {motion} from 'framer-motion';
- import moment from 'moment';
- import {navigateTo} from 'sentry/actionCreators/navigation';
- import Avatar from 'sentry/components/avatar';
- import Button from 'sentry/components/button';
- import Card from 'sentry/components/card';
- import LetterAvatar from 'sentry/components/letterAvatar';
- import Tooltip from 'sentry/components/tooltip';
- import {IconCheckmark, IconClose, IconLock, IconSync} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import space from 'sentry/styles/space';
- import {AvatarUser, OnboardingTask, OnboardingTaskKey, Organization} from 'sentry/types';
- import trackAdvancedAnalyticsEvent from 'sentry/utils/analytics/trackAdvancedAnalyticsEvent';
- import testableTransition from 'sentry/utils/testableTransition';
- import {useRouteContext} from 'sentry/utils/useRouteContext';
- import withOrganization from 'sentry/utils/withOrganization';
- import SkipConfirm from './skipConfirm';
- import {taskIsDone} from './utils';
- const recordAnalytics = (
- task: OnboardingTask,
- organization: Organization,
- action: string
- ) =>
- trackAdvancedAnalyticsEvent('onboarding.wizard_clicked', {
- organization,
- todo_id: task.task,
- todo_title: task.title,
- action,
- });
- type Props = {
- forwardedRef: React.Ref<HTMLDivElement>;
- /**
- * Fired when a task is completed. This will typically happen if there is a
- * supplemental component with the ability to complete a task
- */
- onMarkComplete: (taskKey: OnboardingTaskKey) => void;
- /**
- * Fired when the task has been skipped
- */
- onSkip: (taskKey: OnboardingTaskKey) => void;
- organization: Organization;
- /**
- * Task to render
- */
- task: OnboardingTask;
- };
- function Task(props: Props) {
- const {task, onSkip, onMarkComplete, forwardedRef, organization} = props;
- const routeContext = useRouteContext();
- const {router} = routeContext;
- const handleSkip = () => {
- recordAnalytics(task, organization, 'skipped');
- onSkip(task.task);
- };
- const handleClick = (e: React.MouseEvent) => {
- recordAnalytics(task, organization, 'clickthrough');
- e.stopPropagation();
- if (task.actionType === 'external') {
- window.open(task.location, '_blank');
- }
- if (task.actionType === 'action') {
- task.action(routeContext);
- }
- if (task.actionType === 'app') {
- const url = new URL(task.location, window.location.origin);
- url.searchParams.append('referrer', 'onboarding_task');
- navigateTo(url.toString(), router);
- }
- };
- if (taskIsDone(task) && task.completionSeen) {
- const completedOn = moment(task.dateCompleted);
- return (
- <TaskCard ref={forwardedRef} onClick={handleClick}>
- <CompleteTitle>
- <StatusIndicator>
- {task.status === 'complete' && <CompleteIndicator />}
- {task.status === 'skipped' && <SkippedIndicator />}
- </StatusIndicator>
- {task.title}
- <DateCompleted title={completedOn.toString()}>
- {completedOn.fromNow()}
- </DateCompleted>
- {task.user ? (
- <TaskUserAvatar hasTooltip user={task.user} />
- ) : (
- <Tooltip
- containerDisplayMode="inherit"
- title={t('No user was associated with completing this task')}
- >
- <TaskBlankAvatar round />
- </Tooltip>
- )}
- </CompleteTitle>
- </TaskCard>
- );
- }
- const IncompleteMarker = task.requisiteTasks.length > 0 && (
- <Tooltip
- containerDisplayMode="block"
- title={tct('[requisite] before completing this task', {
- requisite: task.requisiteTasks[0].title,
- })}
- >
- <IconLock color="pink300" isSolid />
- </Tooltip>
- );
- const {SupplementComponent} = task;
- const supplement = SupplementComponent && (
- <SupplementComponent task={task} onCompleteTask={() => onMarkComplete(task.task)} />
- );
- const skipAction = task.skippable && (
- <SkipConfirm onSkip={handleSkip}>
- {({skip}) => (
- <CloseButton
- borderless
- size="zero"
- aria-label={t('Close')}
- icon={<IconClose size="xs" />}
- onClick={skip}
- />
- )}
- </SkipConfirm>
- );
- return (
- <TaskCard
- interactive
- ref={forwardedRef}
- onClick={handleClick}
- data-test-id={task.task}
- >
- <IncompleteTitle>
- {IncompleteMarker}
- {task.title}
- </IncompleteTitle>
- <Description>{`${task.description}`}</Description>
- {task.requisiteTasks.length === 0 && (
- <ActionBar>
- {skipAction}
- {supplement}
- {task.status === 'pending' ? (
- <InProgressIndicator user={task.user} />
- ) : (
- <Button priority="primary" size="sm">
- {t('Start')}
- </Button>
- )}
- </ActionBar>
- )}
- </TaskCard>
- );
- }
- const TaskCard = styled(Card)`
- position: relative;
- padding: ${space(2)} ${space(3)};
- `;
- const IncompleteTitle = styled('div')`
- display: grid;
- grid-template-columns: max-content 1fr;
- gap: ${space(1)};
- align-items: center;
- font-weight: 600;
- `;
- const CompleteTitle = styled(IncompleteTitle)`
- grid-template-columns: min-content 1fr max-content min-content;
- `;
- const Description = styled('p')`
- font-size: ${p => p.theme.fontSizeSmall};
- color: ${p => p.theme.subText};
- margin: ${space(0.5)} 0 0 0;
- `;
- const ActionBar = styled('div')`
- display: flex;
- justify-content: flex-end;
- align-items: flex-end;
- margin-top: ${space(1.5)};
- `;
- type InProgressIndicatorProps = React.HTMLAttributes<HTMLDivElement> & {
- user?: AvatarUser | null;
- };
- const InProgressIndicator = styled(({user, ...props}: InProgressIndicatorProps) => (
- <div {...props}>
- <Tooltip
- disabled={!user}
- containerDisplayMode="flex"
- title={tct('This task has been started by [user]', {
- user: user?.name,
- })}
- >
- <IconSync />
- </Tooltip>
- {t('Task in progress...')}
- </div>
- ))`
- font-size: ${p => p.theme.fontSizeMedium};
- font-weight: bold;
- color: ${p => p.theme.pink300};
- display: grid;
- grid-template-columns: max-content max-content;
- align-items: center;
- gap: ${space(1)};
- `;
- const CloseButton = styled(Button)`
- position: absolute;
- right: ${space(1.5)};
- top: ${space(1.5)};
- color: ${p => p.theme.gray300};
- `;
- const transition = testableTransition();
- const StatusIndicator = styled(motion.div)`
- display: flex;
- `;
- StatusIndicator.defaultProps = {
- variants: {
- initial: {opacity: 0, x: 10},
- animate: {opacity: 1, x: 0},
- },
- transition,
- };
- const CompleteIndicator = styled(IconCheckmark)``;
- CompleteIndicator.defaultProps = {
- isCircled: true,
- color: 'green300',
- };
- const SkippedIndicator = styled(IconClose)``;
- SkippedIndicator.defaultProps = {
- isCircled: true,
- color: 'pink300',
- };
- const completedItemAnimation = {
- initial: {opacity: 0, x: -10},
- animate: {opacity: 1, x: 0},
- };
- const DateCompleted = styled(motion.div)`
- color: ${p => p.theme.subText};
- font-size: ${p => p.theme.fontSizeSmall};
- font-weight: 300;
- `;
- DateCompleted.defaultProps = {
- variants: completedItemAnimation,
- transition,
- };
- const TaskUserAvatar = motion(Avatar);
- TaskUserAvatar.defaultProps = {
- variants: completedItemAnimation,
- transition,
- };
- const TaskBlankAvatar = styled(motion(LetterAvatar))`
- position: unset;
- `;
- TaskBlankAvatar.defaultProps = {
- variants: completedItemAnimation,
- transition,
- };
- const WrappedTask = withOrganization(Task);
- export default forwardRef<
- HTMLDivElement,
- Omit<React.ComponentProps<typeof WrappedTask>, 'forwardedRef'>
- >((props, ref) => <WrappedTask forwardedRef={ref} {...props} />);
|