blob: d60112d2249b8777df604d8a1585190bdd5ea9a5 (
plain)
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// eslint-disable-next-line no-unused-vars
import React from "react";
import { useGlobals } from "@storybook/api";
import {
// eslint-disable-next-line no-unused-vars
Icons,
// eslint-disable-next-line no-unused-vars
IconButton,
// eslint-disable-next-line no-unused-vars
WithTooltip,
// eslint-disable-next-line no-unused-vars
TooltipLinkList,
} from "@storybook/components";
import { TOOL_ID, STRATEGY_DEFAULT, PSEUDO_STRATEGIES } from "./constants.mjs";
// React component for a button + tooltip that gets added to the Storybook toolbar.
export const PseudoLocalizationButton = () => {
const [{ pseudoStrategy = STRATEGY_DEFAULT }, updateGlobals] = useGlobals();
const updatePseudoStrategy = strategy => {
updateGlobals({ pseudoStrategy: strategy });
};
const getTooltipLinks = ({ onHide }) => {
return PSEUDO_STRATEGIES.map(strategy => ({
id: strategy,
title: strategy.charAt(0).toUpperCase() + strategy.slice(1),
onClick: () => {
updatePseudoStrategy(strategy);
onHide();
},
active: pseudoStrategy === strategy,
}));
};
return (
<WithTooltip
placement="top"
trigger="click"
tooltip={props => <TooltipLinkList links={getTooltipLinks(props)} />}
>
<IconButton
key={TOOL_ID}
active={pseudoStrategy && pseudoStrategy !== STRATEGY_DEFAULT}
title="Apply pseudo localization"
>
<Icons icon="transfer" />
</IconButton>
</WithTooltip>
);
};
|