mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 04:46:10 +01:00
234fb4ac5d
* adds component with locales and test * adds feedback from review * adds storeis file * update snapshots * prettier * clean up stories file * relocation * review fixes * Update ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Button path remove * Update ui/pages/institutional/confirm-add-custodian-token/confirm-add-custodian-token.js Co-authored-by: George Marshall <george.marshall@consensys.net> * pulled * stories file update location --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
144 lines
4.0 KiB
JavaScript
144 lines
4.0 KiB
JavaScript
import React, { useState, useRef } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import {
|
|
AlignItems,
|
|
DISPLAY,
|
|
BorderColor,
|
|
BLOCK_SIZES,
|
|
FLEX_DIRECTION,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { Text } from '../../component-library';
|
|
import JwtDropdown from '../jwt-dropdown';
|
|
import Button from '../../ui/button';
|
|
import Box from '../../ui/box';
|
|
|
|
const JwtUrlForm = (props) => {
|
|
const t = useI18nContext();
|
|
const inputRef = useRef();
|
|
const [addNewTokenClicked, setAddNewTokenClicked] = useState(false);
|
|
const [fileTooBigError, setFileTooBigError] = useState();
|
|
|
|
const renderJWTInput = () => {
|
|
const showAddNewToken = addNewTokenClicked;
|
|
const showJwtDropdown = props.jwtList.length >= 1;
|
|
|
|
return (
|
|
<Box
|
|
width={BLOCK_SIZES.FULL}
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
marginTop={4}
|
|
alignItems={AlignItems.center}
|
|
className="jwt-url-form__jwt-container"
|
|
marginBottom={6}
|
|
>
|
|
{showJwtDropdown && (
|
|
<JwtDropdown
|
|
data-testid="jwt-dropdown"
|
|
currentJwt={props.currentJwt ? props.currentJwt : props.jwtList[0]}
|
|
jwtList={props.jwtList}
|
|
onChange={(value) => {
|
|
props.onJwtChange(value);
|
|
setFileTooBigError(false);
|
|
}}
|
|
/>
|
|
)}
|
|
{showJwtDropdown && !showAddNewToken && (
|
|
<Box
|
|
width={BLOCK_SIZES.FULL}
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
alignItems={AlignItems.center}
|
|
marginTop={2}
|
|
>
|
|
<Text>{t('or')}</Text>
|
|
<Button
|
|
data-testid="addNewToken-btn"
|
|
type="secondary"
|
|
medium="true"
|
|
onClick={() => {
|
|
props.onJwtChange('');
|
|
setAddNewTokenClicked(true);
|
|
}}
|
|
>
|
|
<Text>{t('addNewToken')}</Text>
|
|
</Button>
|
|
</Box>
|
|
)}
|
|
{(!showJwtDropdown || showAddNewToken) && (
|
|
<Box>
|
|
<Text className="jwt-url-form__instruction" display={DISPLAY.BLOCK}>
|
|
{props.jwtInputText}
|
|
</Text>
|
|
{fileTooBigError && (
|
|
<span className="error">
|
|
<Text>{t('fileTooBig')}</Text>
|
|
</span>
|
|
)}
|
|
<textarea
|
|
className="jwt-url-form__input-jwt"
|
|
data-testid="jwt-input"
|
|
borderColor={BorderColor.borderDefault}
|
|
id="jwt-box"
|
|
onChange={(e) => {
|
|
props.onJwtChange(e.target.value);
|
|
setFileTooBigError(false);
|
|
}}
|
|
ref={inputRef.current}
|
|
value={props.currentJwt}
|
|
autoFocus
|
|
/>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
const renderAPIURLInput = () => {
|
|
return (
|
|
<Box width={BLOCK_SIZES.FULL}>
|
|
<Text className="jwt-url-form__instruction" display={DISPLAY.BLOCK}>
|
|
{props.urlInputText}
|
|
</Text>
|
|
<Box>
|
|
<input
|
|
className="jwt-url-form__input"
|
|
id="api-url-box"
|
|
data-testid="jwt-api-url-input"
|
|
onChange={(e) => {
|
|
props.onUrlChange(e.target.value);
|
|
}}
|
|
value={props.apiUrl}
|
|
/>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<Box
|
|
className="jwt-url-form"
|
|
display={DISPLAY.FLEX}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
alignItems={AlignItems.flexStart}
|
|
marginBottom={8}
|
|
>
|
|
{renderJWTInput()}
|
|
{renderAPIURLInput()}
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
JwtUrlForm.propTypes = {
|
|
jwtList: PropTypes.array,
|
|
currentJwt: PropTypes.string,
|
|
onJwtChange: PropTypes.func,
|
|
jwtInputText: PropTypes.string,
|
|
apiUrl: PropTypes.string,
|
|
urlInputText: PropTypes.string,
|
|
onUrlChange: PropTypes.func,
|
|
};
|
|
|
|
export default JwtUrlForm;
|