All files / libs/payout-definition/plans/views/hub/rule-designer/src/lib/header PlanHubRuleDesignerHeader.tsx

0% Statements 0/276
0% Branches 0/1
0% Functions 0/1
0% Lines 0/276

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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
import { css } from '@emotion/react';
import { IconArchive, IconArrowLeft, IconAward } from '@tabler/icons-react';
import { partition } from 'lodash-es';
import { memo, useCallback, useMemo } from 'react';
import { FormattedMessage } from 'react-intl';
import { generatePath, useLocation } from 'react-router-dom';

import {
  Badge,
  Breadcrumbs,
  ButtonLink,
  Dropdown,
  Group,
  PageHeader,
  TextLink,
  TextOverflow,
  Tooltip,
  type SelectDropdownOption,
} from '@allshares/studio-design-system';
import { routes } from '@amalia/core/routes';
import { Link, useNavigate, useQueryString } from '@amalia/ext/react-router-dom';
import { objectToQs, qsToObject } from '@amalia/ext/web';
import { ForecastIcon } from '@amalia/payout-calculation/forecasts/components';
import { getChallengeStatus } from '@amalia/payout-definition/challenges/shared';
import { PlanVisibilityBadge } from '@amalia/payout-definition/plans/components';
import { isRuleConfigurationComplete } from '@amalia/payout-definition/plans/shared';
import { RuleType, type Rule, type RulePlanConfiguration } from '@amalia/payout-definition/plans/types';
import { usePlan, useRulePlanConfigurations } from '@amalia/payout-definition/state';

import { RuleDesignerComputeBreadcrumbs } from '../compute/breadcrumbs/RuleDesignerComputeBreadcrumbs';
import { AchievedOrForecastComponentSwitcher } from '../forecast/AchievedOrForecastComponentSwitcher';
import { useRuleDesignerForecastContext } from '../forecast/RuleDesignerForecast.context';
import { usePlanHubRuleDesignerContext } from '../PlanHubRuleDesigner.context';

type RuleOption = SelectDropdownOption<Rule['id']>;

const buildRulesOptions = (
  ruleConfigurations: RulePlanConfiguration[] = [],
  isForecastedView: boolean = false,
): RuleOption[] =>
  ruleConfigurations
    .toSorted((a, b) => a.ruleAssignment.index - b.ruleAssignment.index)
    // Hide challenges when in forecast view.
    .filter((ruleConfiguration) => !isForecastedView || ruleConfiguration.rule.type !== RuleType.CHALLENGE)
    .map((ruleConfiguration) => {
      const configurationIsComplete = isRuleConfigurationComplete(ruleConfiguration.rule);
      const isForecastDisabled = isForecastedView && !configurationIsComplete;

      const ruleIcon =
        ruleConfiguration.rule.type === RuleType.CHALLENGE ? (
          <IconAward
            size={14}
            css={(theme) => css`
              color: ${theme.ds.colors.gray[900]};
              display: block;

              [data-color-scheme='dark'] & {
                color: ${theme.ds.colors.gray[100]};
              }
            `}
          />
        ) : !!ruleConfiguration.isRuleForecasted && configurationIsComplete ? (
          <ForecastIcon
            size={14}
            tooltipMessage={<FormattedMessage defaultMessage="This rule has forecast set up" />}
          />
        ) : undefined;

      return {
        value: ruleConfiguration.rule.id,
        label: ruleConfiguration.rule.name,
        secondaryLabel: ruleIcon,
        disabled: isForecastDisabled,
        tooltip: isForecastDisabled && (
          <FormattedMessage defaultMessage="Complete rule setup to enable forecast configuration." />
        ),

        // Show the rule icon in the breadcrumb when selected.
        valueLabel: (
          <Group
            align="center"
            gap={8}
          >
            <TextOverflow>{ruleConfiguration.rule.name}</TextOverflow>

            {ruleIcon}
          </Group>
        ),
      };
    });

export const PlanHubRuleDesignerHeader = memo(function PlanHubRuleDesignerHeader() {
  const navigate = useNavigate();
  const location = useLocation();
  const { planId, ruleId } = usePlanHubRuleDesignerContext();
  const { data: plan } = usePlan(planId);
  const { data: rules } = useRulePlanConfigurations(planId);
  const { isForecastedView } = useRuleDesignerForecastContext();
  const { userId, periodId } = useQueryString();

  const currentStep = qsToObject(location.search)['step'];

  const rulesOptions = useMemo(() => {
    const [allRules, expiredChallenges] = partition(
      rules,
      (rule) => rule.rule.type !== RuleType.CHALLENGE || getChallengeStatus(rule.rule.configuration) !== 'past',
    );

    const rulesGroupByCategories = Object.groupBy(allRules, (rule) => rule.ruleAssignment.category ?? 'null');

    return [
      ...buildRulesOptions(rulesGroupByCategories['null'] ?? [], isForecastedView),
      ...(plan?.categoriesV2 ?? []).flatMap(({ name }) =>
        buildRulesOptions(rulesGroupByCategories[name] ?? [], isForecastedView),
      ),
      !isForecastedView && {
        label: <FormattedMessage defaultMessage="Expired challenges" />,
        options: buildRulesOptions(expiredChallenges),
        initialIsOpen: false,
      },
    ].filter(Boolean);
  }, [plan?.categoriesV2, rules, isForecastedView]);

  const selectedRule = rules?.find((ruleConfig) => ruleConfig.rule.id === ruleId)?.rule;
  const canAccessForecastedRule = !!selectedRule && isRuleConfigurationComplete(selectedRule);

  const handleChangeRule = useCallback(
    (ruleId: Rule['id']) => {
      const nextRule = rules?.find((ruleConfig) => ruleConfig.rule.id === ruleId)?.rule;

      navigate({
        pathname: generatePath(isForecastedView ? routes.PLAN_HUB_RULE_FORECAST : routes.PLAN_HUB_RULE, {
          planId,
          ruleId,
        }),
        search: objectToQs({
          userId,
          periodId,
          step:
            // Reset step when changing from challenge to rule or rule to challenge.
            // Condition is "either both are challenges or both are not challenges".
            (nextRule?.type === RuleType.CHALLENGE) === (selectedRule?.type === RuleType.CHALLENGE)
              ? currentStep
              : undefined,
        }),
      });
    },
    [userId, periodId, navigate, isForecastedView, planId, currentStep, rules, selectedRule],
  );

  return (
    <PageHeader
      css={css`
        height: 70px;
        display: flex;
        align-items: center;
        padding: 0 16px;
      `}
    >
      <PageHeader.Row
        right={<RuleDesignerComputeBreadcrumbs />}
        left={
          <Group
            align="center"
            gap={8}
          >
            <Breadcrumbs
              withShadow={false}
              back={
                <Tooltip content={<FormattedMessage defaultMessage="Back to plan hub" />}>
                  <ButtonLink
                    icon={<IconArrowLeft />}
                    to={generatePath(routes.PLAN_HUB_RULES, { planId })}
                    variant="light-text"
                    badge={
                      plan?.archived ? (
                        <div
                          css={css`
                            height: 18px;
                          `}
                        >
                          <IconArchive size={18} />
                        </div>
                      ) : (
                        <PlanVisibilityBadge isPlanHidden={plan?.isHidden} />
                      )
                    }
                  >
                    <FormattedMessage
                      defaultMessage="Back to {planName}"
                      values={{ planName: plan?.name }}
                    />
                  </ButtonLink>
                </Tooltip>
              }
            >
              <Breadcrumbs.SelectItem<RuleOption>
                options={rulesOptions}
                value={ruleId}
                action={
                  plan?.forecastId && selectedRule && selectedRule.type !== RuleType.CHALLENGE ? (
                    <AchievedOrForecastComponentSwitcher
                      achievedComponent={
                        <Tooltip
                          disabled={canAccessForecastedRule}
                          content={
                            <FormattedMessage defaultMessage="Complete rule setup to enable forecast configuration." />
                          }
                        >
                          <Dropdown.ActionLink
                            disabled={!canAccessForecastedRule}
                            to={{
                              pathname: generatePath(routes.PLAN_HUB_RULE_FORECAST, { planId, ruleId }),
                              search: objectToQs({ step: currentStep, userId, periodId }),
                            }}
                          >
                            <FormattedMessage defaultMessage="Edit forecast" />
                          </Dropdown.ActionLink>
                        </Tooltip>
                      }
                      forecastedComponent={
                        <Dropdown.ActionLink
                          to={{
                            pathname: generatePath(routes.PLAN_HUB_RULE, { planId, ruleId }),
                            search: objectToQs({ step: currentStep, userId, periodId }),
                          }}
                        >
                          <FormattedMessage defaultMessage="Edit actual rule" />
                        </Dropdown.ActionLink>
                      }
                    />
                  ) : null
                }
                title={
                  <AchievedOrForecastComponentSwitcher
                    achievedComponent={<FormattedMessage defaultMessage="Rules" />}
                    forecastedComponent={<FormattedMessage defaultMessage="Forecast rules" />}
                  />
                }
                onChange={handleChangeRule}
              />
            </Breadcrumbs>
            {!!isForecastedView && (
              <Tooltip
                content={
                  <FormattedMessage
                    defaultMessage="You're currently editing forecast.{br}Please add or remove elements from the <link>actual rule</link>."
                    values={{
                      link: (chunks) => (
                        <TextLink
                          colorScheme="light"
                          to={
                            <Link
                              openInNewTab
                              to={generatePath(routes.PLAN_HUB_RULE, { planId, ruleId })}
                            />
                          }
                        >
                          {chunks}
                        </TextLink>
                      ),
                    }}
                  />
                }
              >
                <Badge variant="purple">
                  <FormattedMessage defaultMessage="Forecast configuration" />
                </Badge>
              </Tooltip>
            )}
          </Group>
        }
      />
    </PageHeader>
  );
});