Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | import { css } from '@emotion/react'; import styled from '@emotion/styled'; import { Fragment, memo } from 'react'; import { FormattedMessage } from 'react-intl'; import { Badge, CircularLoader, Divider, Group, Skeleton, Tooltip, Typography } from '@allshares/studio-design-system'; import { ChallengeActiveDatesBadge } from '@amalia/payout-definition/challenges/components'; import { useChallengeByRulePeriod } from '@amalia/payout-definition/challenges/state'; import { usePlan } from '@amalia/payout-definition/state'; import { RuleDesignerStatementTotalAchieved } from '../../compute/result/compute-result/statement-total/RuleDesignerStatementTotalAchieved'; import { RuleDesignerMasterComputeButtonAchieved } from '../../compute/result/master-compute-button/RuleDesignerMasterComputeButtonAchieved'; import { useRuleDesignerComputeContext } from '../../compute/RuleDesignerCompute.context'; import { useDesignerLibrary } from '../../hooks/use-designer-library'; import { usePlanHubRuleDesignerChallengeStepTab } from '../../hooks/use-plan-hub-rule-designer-step-tab'; import { usePlanHubRuleDesignerContext } from '../../PlanHubRuleDesigner.context'; import { ChallengeDesignerSummaryPrizeIndicator } from './indicators/prize/ChallengeDesignerSummaryPrizeIndicator'; import { ChallengeDesignerSummaryRankIndicator } from './indicators/rank/ChallengeDesignerSummaryRankIndicator'; const StyledSummaryContainer = styled(Group)` min-height: 80px; padding: 16px 24px 16px 32px; `; const CHALLENGE_NAME_PLACEHOLDER = 'Challenge name'; export const PlanHubChallengeDesignerSummary = memo(function PlanHubChallengeDesignerSummary() { const { accessors } = useDesignerLibrary(); const { planId, ruleId } = usePlanHubRuleDesignerContext(); const { statement, userId, error, isStatementLoading, period, isCurrentStatementComputing } = useRuleDesignerComputeContext(); const [selectedTab] = usePlanHubRuleDesignerChallengeStepTab(); const ruleDefinition = accessors.getRuleById(ruleId); const { data: plan } = usePlan(planId); const { data: challenge, isPending } = useChallengeByRulePeriod(ruleDefinition?.id, period?.id); const isLoading = isStatementLoading || isPending; return ( <StyledSummaryContainer align="center" gap={16} justify="space-between" > <Group align="center" gap={16} > <Skeleton visible={!ruleDefinition?.name}> <Typography variant="heading4Medium">{ruleDefinition?.name ?? CHALLENGE_NAME_PLACEHOLDER}</Typography> </Skeleton> <Group align="center" gap={8} > {!!plan && !!ruleDefinition?.configuration && ( <ChallengeActiveDatesBadge plan={plan} ruleConfiguration={ruleDefinition.configuration} size="small" /> )} {ruleDefinition?.configuration?.challengePricesTableVariableId === null && ( <Badge size="small" variant="grey" > <FormattedMessage defaultMessage="Non-payout" /> </Badge> )} </Group> </Group> <Group align="center" gap={24} > {!!isCurrentStatementComputing && ( <Tooltip content={<FormattedMessage defaultMessage="Statement calculation ongoing" />}> <CircularLoader size={32} /> </Tooltip> )} <Group align="center" gap={16} > <ChallengeDesignerSummaryRankIndicator challenge={challenge} error={error} isActive={selectedTab === '2-select-evaluation-criterion'} isComputing={isCurrentStatementComputing} isLoading={isLoading} period={period} ruleDefinition={ruleDefinition} userId={userId} /> <Divider.Vertical darkGrayShade={600} grayShade={100} css={css` height: 36px; `} /> {ruleDefinition?.configuration?.challengePricesTableVariableId !== null && ( <Fragment> <ChallengeDesignerSummaryPrizeIndicator challenge={challenge} error={error} isActive={selectedTab === '3-set-prize-table'} isComputing={isCurrentStatementComputing} isLoading={isLoading} period={period} ruleDefinition={ruleDefinition} statement={statement} userId={userId} /> <Divider.Vertical darkGrayShade={600} grayShade={100} css={css` height: 36px; `} /> </Fragment> )} <RuleDesignerStatementTotalAchieved /> </Group> <RuleDesignerMasterComputeButtonAchieved /> </Group> </StyledSummaryContainer> ); }); |