web: Restored components with new folders

This commit is contained in:
Alexey Safronov 2019-05-28 10:20:49 +03:00
parent 97e0f6f8ce
commit b3539fa70e
2 changed files with 222 additions and 0 deletions

View File

@ -0,0 +1,124 @@
import React from 'react';
import styled, { css } from 'styled-components';
import PropTypes from 'prop-types';
const activatedCss = css`
background-color: ${props => (props.primary ? '#1f97ca' : '#e2e2e2')};
color: #ffffff;
${props =>
!props.primary &&
css`
border-width: 1px;
border-style: solid;
border-color: #dadada;
`}
`;
const hoveredCss = css`
background-color: ${props => (props.primary ? '#3db8ec' : '#f5f5f5')};
color: ${props => (props.primary ? '#ffffff' : '#666666')};
`;
const StyledButton = styled.button.attrs((props) => ({
disabled: props.isDisabled ? 'disabled' : '',
tabIndex: props.tabIndex
}))`
height: ${props =>
(props.size === 'huge' && '40px') ||
(props.size === 'big' && '32px') ||
(props.size === 'middle' && '24px') ||
(props.size === 'base' && '21px')
};
line-height: ${props => props.size === 'huge' && '15px' || props.size === 'big' && '17px' || '13px'};
font-size: ${props =>
((props.size === 'huge' || props.size === 'big') && '15px') ||
((props.size === 'middle' || props.size === 'base') && '12px')
};
color: ${props => (props.primary && '#ffffff') || (!props.isDisabled ? '#666666' : '#999')};
background-color: ${props => (!props.isDisabled ? (props.primary ? '#2da7db' : '#ebebeb') : (props.primary ? '#a6dcf2' : '#f7f7f7')) };
padding: ${props =>
(props.size === 'huge' && (props.primary ? '12px 30px 13px' : '11px 30px 12px')) ||
(props.size === 'big' && (props.primary ? '7px 30px 8px' : '6px 30px 7px')) ||
(props.size === 'middle' && (props.primary ? '5px 24px 6px' : '4px 24px 5px')) ||
(props.size === 'base' && (props.primary ? '4px 13px' : '3px 12px'))
};
cursor: ${props => props.isDisabled ? 'default !important' : 'pointer'};
font-family: 'Open Sans', sans-serif;
border: none;
margin: 0;
display: inline-block;
font-weight: normal;
text-align: center;
text-decoration: none;
vertical-align: middle;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
touch-callout: none;
-o-touch-callout: none;
-moz-touch-callout: none;
-webkit-touch-callout: none;
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
stroke: none;
${props =>
!props.primary &&
css`
border-width: 1px;
border-style: solid;
border-color: ${props => !props.isDisabled ? '#c4c4c4' : '#ebebeb'};
`}
${props => !props.isDisabled && (props.isActivated ? `${activatedCss}` : css`
&:active {
${activatedCss}
}`)
}
${props => !props.isDisabled && (props.isHovered ? `${hoveredCss}` : css`
&:hover {
${hoveredCss}
}`)
}
&:focus {
outline: none
}
`;
const Button = props => {
return <StyledButton {...props} />;
};
Button.propTypes = {
size: PropTypes.oneOf(['base', 'middle', 'big', 'huge']),
primary: PropTypes.bool,
tabIndex: PropTypes.number,
isActivated: PropTypes.bool,
isHovered: PropTypes.bool,
isDisabled: PropTypes.bool,
onClick: PropTypes.func.isRequired,
};
Button.defaultProps = {
primary: false,
isActivated: false,
isHovered: false,
isDisabled: false,
size: 'base',
tabIndex: -1
};
export default Button;

View File

@ -0,0 +1,98 @@
import React, { useState } from 'react';
import PropTypes from 'prop-types';
import { Collapse, Container, Row, Col } from 'reactstrap';
import styled from 'styled-components';
import Button from '../../button';
import TextInput from '../../text-input';
const FormRow = styled(Row)`
margin: 23px 0 0;
`
const LoginForm = props => {
const {loginPlaceholder, passwordPlaceholder, buttonText, onSubmit, errorText} = props;
const [login, setLogin] = useState('');
const [loginValid, setLoginValid] = useState(true);
const [password, setPassword] = useState('');
const [passwordValid, setPasswordValid] = useState(true);
const validateAndSubmit = (event) => {
if (!login.trim())
setLoginValid(false);
if (!password.trim())
setPasswordValid(false);
if (loginValid && passwordValid)
return onSubmit(event, { login, password });
return false;
};
return (
<Container>
<FormRow>
<Col sm="12" md={{ size: 6, offset: 3 }}>
<TextInput
id="login"
name="login"
hasError={!loginValid}
value={login}
placeholder={loginPlaceholder}
size='scale'
isAutoFocussed={true}
tabIndex={1}
onChange={event => {
setLogin(event.target.value);
setLoginValid(true);
}} />
</Col>
</FormRow>
<FormRow>
<Col sm="12" md={{ size: 6, offset: 3 }}>
<TextInput
id="password"
name="password"
type="password"
hasError={!passwordValid}
value={password}
placeholder={passwordPlaceholder}
size='scale'
tabIndex={2}
onChange={event => {
setPassword(event.target.value);
setPasswordValid(true);
}} />
</Col>
</FormRow>
<FormRow>
<Col sm="12" md={{ size: 6, offset: 3 }}>
<Button primary size='big' tabIndex={3} onClick={validateAndSubmit}>{buttonText}</Button>
</Col>
</FormRow>
<Collapse isOpen={errorText}>
<Row>
<Col>
<span>{errorText}</span>
</Col>
</Row>
</Collapse>
</Container>
);
}
LoginForm.propTypes = {
loginPlaceholder: PropTypes.string.isRequired,
passwordPlaceholder: PropTypes.string.isRequired,
buttonText: PropTypes.string.isRequired,
errorText: PropTypes.string,
onSubmit: PropTypes.func.isRequired
}
LoginForm.defaultProps = {
login: '',
password: ''
}
export default LoginForm