mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
0306422bbf
Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: Brad Decker <bhdecker84@gmail.com> Co-authored-by: David Walsh <davidwalsh83@gmail.com> Co-authored-by: Howard Braham <howrad@gmail.com> * change js to tsx * update to typescript * add labels to circle animation * add willHide prop to hold to reveal modal * add test * convert to design system * fix lint * fix type * bump coverage * rename * remove comments * remove ts comment and add fix exhuastive dep check * update coverage * add hide modal test * use banneralert * update label * remove unused * fix text * update aria label messages * change exportAccountAndGetPrivateKey to be async * fix lint * update coverage target * update coverage * update input component * update coverage * update coverage * fix blank line * use && * move plainKey to under !privateKeyInput * update hold modal to display srp and private key message * fix styling * fix lint and test * fix unused locales * remove redundent check * update storybook * fix text alignment * fix lint * update snapshot * fix test * update coverage * fix merge conflict * refactor * fix variant * update snapshot * fix test after merge * fix test after merge conflict * fix label text * update to use label component
224 lines
6.6 KiB
JavaScript
224 lines
6.6 KiB
JavaScript
import React, { useCallback, useContext, useRef, useState } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import { Button } from '../../component-library';
|
|
import Box from '../../ui/box';
|
|
import {
|
|
AlignItems,
|
|
DISPLAY,
|
|
JustifyContent,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
import {
|
|
MetaMetricsEventCategory,
|
|
MetaMetricsEventKeyType,
|
|
MetaMetricsEventName,
|
|
} from '../../../../shared/constants/metametrics';
|
|
|
|
const radius = 14;
|
|
const strokeWidth = 2;
|
|
const radiusWithStroke = radius - strokeWidth / 2;
|
|
|
|
export default function HoldToRevealButton({ buttonText, onLongPressed }) {
|
|
const t = useContext(I18nContext);
|
|
const isLongPressing = useRef(false);
|
|
const [isUnlocking, setIsUnlocking] = useState(false);
|
|
const [hasTriggeredUnlock, setHasTriggeredUnlock] = useState(false);
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
|
|
/**
|
|
* Prevent animation events from propogating up
|
|
*
|
|
* @param e - Native animation event - React.AnimationEvent<HTMLDivElement>
|
|
*/
|
|
const preventPropogation = (e) => {
|
|
e.stopPropagation();
|
|
};
|
|
|
|
/**
|
|
* Event for mouse click down
|
|
*/
|
|
const onMouseDown = () => {
|
|
isLongPressing.current = true;
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Keys,
|
|
event: MetaMetricsEventName.SrpHoldToRevealClickStarted,
|
|
properties: {
|
|
key_type: MetaMetricsEventKeyType.Srp,
|
|
},
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Event for mouse click up
|
|
*/
|
|
const onMouseUp = () => {
|
|
isLongPressing.current = false;
|
|
};
|
|
|
|
/**
|
|
* 1. Progress cirle completed. Begin next animation phase (Shrink halo and show unlocked padlock)
|
|
*/
|
|
const onProgressComplete = () => {
|
|
isLongPressing.current && setIsUnlocking(true);
|
|
};
|
|
|
|
/**
|
|
* 2. Trigger onLongPressed callback. Begin next animation phase (Shrink unlocked padlock and fade in original content)
|
|
*
|
|
* @param e - Native animation event - React.AnimationEvent<HTMLDivElement>
|
|
*/
|
|
const triggerOnLongPressed = useCallback(
|
|
(e) => {
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Keys,
|
|
event: MetaMetricsEventName.SrpHoldToRevealCompleted,
|
|
properties: {
|
|
key_type: MetaMetricsEventKeyType.Srp,
|
|
},
|
|
});
|
|
trackEvent({
|
|
category: MetaMetricsEventCategory.Keys,
|
|
event: MetaMetricsEventName.SrpRevealViewed,
|
|
properties: {
|
|
key_type: MetaMetricsEventKeyType.Srp,
|
|
},
|
|
});
|
|
onLongPressed();
|
|
setHasTriggeredUnlock(true);
|
|
preventPropogation(e);
|
|
},
|
|
[onLongPressed],
|
|
);
|
|
|
|
/**
|
|
* 3. Reset animation states
|
|
*/
|
|
const resetAnimationStates = () => {
|
|
setIsUnlocking(false);
|
|
setHasTriggeredUnlock(false);
|
|
};
|
|
|
|
const renderPreCompleteContent = useCallback(() => {
|
|
return (
|
|
<Box
|
|
className={classnames('hold-to-reveal-button__absolute-fill', {
|
|
'hold-to-reveal-button__absolute-fill': isUnlocking,
|
|
'hold-to-reveal-button__main-icon-show': hasTriggeredUnlock,
|
|
})}
|
|
>
|
|
<Box className="hold-to-reveal-button__absolute-fill">
|
|
<svg className="hold-to-reveal-button__circle-svg">
|
|
<circle
|
|
className="hold-to-reveal-button__circle-background"
|
|
cx={radius}
|
|
cy={radius}
|
|
r={radiusWithStroke}
|
|
/>
|
|
</svg>
|
|
</Box>
|
|
<Box className="hold-to-reveal-button__absolute-fill">
|
|
<svg className="hold-to-reveal-button__circle-svg">
|
|
<circle
|
|
aria-label={t('holdToRevealLockedLabel')}
|
|
onTransitionEnd={onProgressComplete}
|
|
className="hold-to-reveal-button__circle-foreground"
|
|
cx={radius}
|
|
cy={radius}
|
|
r={radiusWithStroke}
|
|
/>
|
|
</svg>
|
|
</Box>
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
alignItems={AlignItems.center}
|
|
justifyContent={JustifyContent.center}
|
|
className="hold-to-reveal-button__lock-icon-container"
|
|
>
|
|
<img
|
|
src="images/lock-icon.svg"
|
|
alt={t('padlock')}
|
|
className="hold-to-reveal-button__lock-icon"
|
|
/>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}, [isUnlocking, hasTriggeredUnlock, t]);
|
|
|
|
const renderPostCompleteContent = useCallback(() => {
|
|
return isUnlocking ? (
|
|
<div
|
|
className={classnames('hold-to-reveal-button__absolute-fill', {
|
|
'hold-to-reveal-button__unlock-icon-hide': hasTriggeredUnlock,
|
|
})}
|
|
onAnimationEnd={resetAnimationStates}
|
|
>
|
|
<div
|
|
onAnimationEnd={preventPropogation}
|
|
className="hold-to-reveal-button__absolute-fill hold-to-reveal-button__circle-static-outer-container"
|
|
>
|
|
<svg className="hold-to-reveal-button__circle-svg">
|
|
<circle
|
|
className="hold-to-reveal-button__circle-static-outer"
|
|
cx={14}
|
|
cy={14}
|
|
r={14}
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div
|
|
onAnimationEnd={preventPropogation}
|
|
className="hold-to-reveal-button__absolute-fill hold-to-reveal-button__circle-static-inner-container"
|
|
>
|
|
<svg className="hold-to-reveal-button__circle-svg">
|
|
<circle
|
|
className="hold-to-reveal-button__circle-static-inner"
|
|
cx={14}
|
|
cy={14}
|
|
r={12}
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div
|
|
aria-label={t('holdToRevealUnlockedLabel')}
|
|
className="hold-to-reveal-button__unlock-icon-container"
|
|
onAnimationEnd={triggerOnLongPressed}
|
|
>
|
|
<img
|
|
src="images/unlock-icon.svg"
|
|
alt={t('padlock')}
|
|
className="hold-to-reveal-button__unlock-icon"
|
|
/>
|
|
</div>
|
|
</div>
|
|
) : null;
|
|
}, [isUnlocking, hasTriggeredUnlock, triggerOnLongPressed, t]);
|
|
|
|
return (
|
|
<Button
|
|
onMouseDown={onMouseDown}
|
|
onMouseUp={onMouseUp}
|
|
className="hold-to-reveal-button__button-hold"
|
|
textProps={{ display: DISPLAY.FLEX, alignItems: AlignItems.center }}
|
|
>
|
|
<Box className="hold-to-reveal-button__icon-container" marginRight={2}>
|
|
{renderPreCompleteContent()}
|
|
{renderPostCompleteContent()}
|
|
</Box>
|
|
{buttonText}
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
HoldToRevealButton.propTypes = {
|
|
/**
|
|
* Text to be displayed on the button
|
|
*/
|
|
buttonText: PropTypes.string.isRequired,
|
|
/**
|
|
* Function to be called after the animation is finished
|
|
*/
|
|
onLongPressed: PropTypes.func.isRequired,
|
|
};
|