diff options
| author | Ryan Mehri <[email protected]> | 2020-05-10 10:06:17 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-10 10:06:17 -0600 |
| commit | b63c59506439652354d2ae93796732039156dc32 (patch) | |
| tree | be456f581edcf40a4d95337346313fed26b3b8b9 /frontend/src/components/CharLimit.js | |
| parent | Merge pull request #7 from jackyzha0/react (diff) | |
| parent | input length check and component splitting (diff) | |
| download | ctrl-v-b63c59506439652354d2ae93796732039156dc32.tar.xz ctrl-v-b63c59506439652354d2ae93796732039156dc32.zip | |
Merge pull request #8 from jackyzha0/react
more react changes
Diffstat (limited to 'frontend/src/components/CharLimit.js')
| -rw-r--r-- | frontend/src/components/CharLimit.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/frontend/src/components/CharLimit.js b/frontend/src/components/CharLimit.js new file mode 100644 index 0000000..623b378 --- /dev/null +++ b/frontend/src/components/CharLimit.js @@ -0,0 +1,37 @@ +import React from 'react'; +import styled, { css } from 'styled-components' + +// show char limit if length > half of max +const Chars = styled.p` + color: #11111100; + font-family: 'Roboto Mono', monospace; + position: absolute; + font-size: 0.8em; + writing-mode: vertical-rl; + top: 50%; + transform: translate(5em, -50%); + right: 0; + transition: all 0.5s cubic-bezier(.25,.8,.25,1); + + ${props => + ((props.content.length / props.maxLength) > 0.5) && + css` + color: #111111; + `}; + + ${props => + ((props.content.length / props.maxLength) > 1) && + css` + color: #ee1111; + `}; +`; + +class CharLimit extends React.Component { + render() { + return ( + <Chars {...this.props} >{this.props.maxLength - this.props.content.length}/{this.props.maxLength}</Chars> + ); + } +} + +export default CharLimit
\ No newline at end of file |