Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

380 linhas
9.4 KiB

  1. import * as React from 'react'
  2. import * as PropTypes from 'prop-types'
  3. import * as ReachSlider from '@reach/slider'
  4. import styled from 'styled-components'
  5. import stringify from '../../services/stringify'
  6. const Wrapper = styled('div')({
  7. position: 'relative',
  8. display: 'inline-block',
  9. verticalAlign: 'top',
  10. ':focus-within': {
  11. '--color-accent': 'var(--color-active, Highlight)',
  12. },
  13. })
  14. Wrapper.displayName = 'div'
  15. const Base = styled(ReachSlider.SliderInput)({
  16. boxSizing: 'border-box',
  17. position: 'absolute',
  18. bottom: 0,
  19. right: 0,
  20. ':active': {
  21. cursor: 'grabbing',
  22. },
  23. })
  24. Base.displayName = 'input'
  25. const Track = styled(ReachSlider.SliderTrack)({
  26. borderRadius: '0.125rem',
  27. position: 'relative',
  28. width: '100%',
  29. height: '100%',
  30. '::before': {
  31. display: 'block',
  32. position: 'absolute',
  33. content: "''",
  34. opacity: 0.25,
  35. width: '100%',
  36. height: '100%',
  37. backgroundColor: 'currentColor',
  38. borderRadius: '0.125rem',
  39. },
  40. })
  41. const Handle = styled(ReachSlider.SliderHandle)({
  42. cursor: 'grab',
  43. width: '1.25rem',
  44. height: '1.25rem',
  45. backgroundColor: 'var(--color-accent, blue)',
  46. borderRadius: '50%',
  47. zIndex: 1,
  48. transformOrigin: 'center',
  49. outline: 0,
  50. position: 'relative',
  51. '::before': {
  52. position: 'absolute',
  53. top: 0,
  54. left: 0,
  55. width: '100%',
  56. height: '100%',
  57. content: "''",
  58. borderRadius: '50%',
  59. opacity: 0.5,
  60. pointerEvents: 'none',
  61. },
  62. ':focus::before': {
  63. boxShadow: '0 0 0 0.25rem var(--color-accent, blue)',
  64. },
  65. })
  66. const Highlight = styled(ReachSlider.SliderTrackHighlight)({
  67. backgroundColor: 'var(--color-accent, blue)',
  68. borderRadius: '0.125rem',
  69. })
  70. const SizingWrapper = styled('span')({
  71. width: '100%',
  72. display: 'inline-block',
  73. verticalAlign: 'top',
  74. position: 'relative',
  75. })
  76. SizingWrapper.displayName = 'SizingWrapper'
  77. const TransformWrapper = styled('span')({
  78. display: 'inline-block',
  79. verticalAlign: 'top',
  80. transformOrigin: 'top left',
  81. })
  82. TransformWrapper.displayName = 'TransformWrapper'
  83. const LabelWrapper = styled('span')({
  84. color: 'var(--color-accent, blue)',
  85. boxSizing: 'border-box',
  86. fontSize: '0.75em',
  87. maxWidth: '100%',
  88. overflow: 'hidden',
  89. textOverflow: 'ellipsis',
  90. whiteSpace: 'nowrap',
  91. fontWeight: 'bolder',
  92. zIndex: 2,
  93. pointerEvents: 'none',
  94. transformOrigin: 'top left',
  95. position: 'absolute',
  96. top: 0,
  97. left: 0,
  98. transitionProperty: 'color',
  99. })
  100. LabelWrapper.displayName = 'span'
  101. const FallbackTrack = styled('span')({
  102. padding: '1.875rem 0.75rem 0.875rem',
  103. boxSizing: 'border-box',
  104. position: 'absolute',
  105. top: 0,
  106. left: 0,
  107. pointerEvents: 'none',
  108. '::before': {
  109. display: 'block',
  110. content: "''",
  111. opacity: 0.25,
  112. width: '100%',
  113. height: '100%',
  114. backgroundColor: 'currentColor',
  115. borderRadius: '0.125rem',
  116. },
  117. })
  118. const FallbackSlider = styled('input')({
  119. boxSizing: 'border-box',
  120. backgroundColor: 'transparent',
  121. verticalAlign: 'top',
  122. margin: 0,
  123. width: '100%',
  124. height: '2rem',
  125. marginTop: '1rem',
  126. appearance: 'none',
  127. outline: 0,
  128. position: 'absolute',
  129. left: 0,
  130. '::-moz-focus-inner': {
  131. outline: 0,
  132. border: 0,
  133. },
  134. '::-webkit-slider-thumb': {
  135. cursor: 'grab',
  136. width: '1.25rem',
  137. height: '1.25rem',
  138. backgroundColor: 'var(--color-accent, blue)',
  139. borderRadius: '50%',
  140. zIndex: 1,
  141. transformOrigin: 'center',
  142. outline: 0,
  143. position: 'relative',
  144. appearance: 'none',
  145. },
  146. '::-moz-range-thumb': {
  147. cursor: 'grab',
  148. border: 0,
  149. width: '1.25rem',
  150. height: '1.25rem',
  151. backgroundColor: 'var(--color-accent, blue)',
  152. borderRadius: '50%',
  153. zIndex: 1,
  154. transformOrigin: 'center',
  155. outline: 0,
  156. position: 'relative',
  157. appearance: 'none',
  158. },
  159. })
  160. FallbackSlider.displayName = 'input'
  161. const ClickArea = styled('label')({
  162. verticalAlign: 'top',
  163. width: '100%',
  164. height: '100%',
  165. })
  166. ClickArea.displayName = 'label'
  167. export type Orientation = 'vertical' | 'horizontal'
  168. type Dimension = 'width' | 'height'
  169. const propTypes = {
  170. /**
  171. * The component orientation.
  172. */
  173. orientation: PropTypes.oneOf<Orientation>(['vertical', 'horizontal']),
  174. /**
  175. * Short textual description indicating the nature of the component's value.
  176. */
  177. label: PropTypes.any,
  178. /**
  179. * CSS size for the component length.
  180. */
  181. length: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
  182. /**
  183. * Class name used for styling.
  184. */
  185. className: PropTypes.string,
  186. /**
  187. * Is the component active?
  188. */
  189. disabled: PropTypes.bool,
  190. }
  191. type Props = PropTypes.InferProps<typeof propTypes>
  192. /**
  193. * Component for inputting numeric values in a graphical manner.
  194. *
  195. * The component is styled using client-side scripts. When the component is rendered server-side,
  196. * the component falls back into the original `<input type="range">` element.
  197. *
  198. * @see {@link //reacttraining.com/reach-ui/slider/#sliderinput|Reach UI Slider} for the client-side implementation.
  199. * @param {'vertical' | 'horizontal'} [orientation] - The component orientation.
  200. * @param {*} [label] - Short textual description indicating the nature of the component's value.
  201. * @param {string | number} [length] - CSS size for the component length.
  202. * @param {string} [className] - Class name used for styling.
  203. * @param {boolean} [disabled] - Is the component active?
  204. * @param {object} etcProps - The component props.
  205. * @returns {React.ReactElement} The component elements.
  206. */
  207. const Slider: React.FC<Props> = ({
  208. orientation = 'horizontal',
  209. label = '',
  210. length = '16rem',
  211. className = '',
  212. disabled = false,
  213. ...etcProps
  214. }) => {
  215. const [isClient, setIsClient] = React.useState(false)
  216. React.useEffect(() => {
  217. window.document.body.style.setProperty('--reach-slider', '1')
  218. setIsClient(true)
  219. }, [])
  220. const parallelDimension: Dimension = orientation === 'horizontal' ? 'width' : 'height'
  221. const perpendicularDimension: Dimension = orientation === 'horizontal' ? 'height' : 'width'
  222. const perpendicularReference = orientation === 'horizontal' ? 'top' : 'left'
  223. const perpendicularTransform = orientation === 'horizontal' ? 'translateY' : 'translateX'
  224. if (isClient) {
  225. return (
  226. <Wrapper
  227. className={className!}
  228. style={{
  229. opacity: disabled ? 0.5 : undefined,
  230. [parallelDimension]: length!,
  231. }}
  232. >
  233. <ClickArea>
  234. <SizingWrapper
  235. style={{
  236. [parallelDimension]: length!,
  237. [perpendicularDimension]: '3rem',
  238. }}
  239. >
  240. <TransformWrapper
  241. style={{
  242. [parallelDimension]: length!,
  243. [perpendicularDimension]: '100%',
  244. transform:
  245. orientation === 'horizontal'
  246. ? undefined
  247. : `rotate(-90deg) translateX(calc(${
  248. typeof length! === 'number' ? `${length as number}px` : (length as string)
  249. } * -1))`,
  250. }}
  251. >
  252. <LabelWrapper
  253. style={{
  254. maxWidth: length!,
  255. }}
  256. >
  257. {stringify(label)}
  258. </LabelWrapper>
  259. </TransformWrapper>
  260. </SizingWrapper>
  261. <Base
  262. {...etcProps}
  263. disabled={disabled!}
  264. style={{
  265. [parallelDimension]: length,
  266. [perpendicularDimension]: '2rem',
  267. padding: orientation === 'horizontal' ? '0.875rem 0.75rem' : '0.75rem 0.875rem',
  268. cursor: disabled ? 'not-allowed' : undefined,
  269. }}
  270. >
  271. <Track>
  272. <Highlight
  273. style={{
  274. [perpendicularDimension]: '100%',
  275. }}
  276. />
  277. <Handle
  278. style={{
  279. [perpendicularReference]: '50%',
  280. transform: `${perpendicularTransform}(-50%)`,
  281. cursor: disabled ? 'not-allowed' : undefined,
  282. }}
  283. />
  284. </Track>
  285. </Base>
  286. </ClickArea>
  287. </Wrapper>
  288. )
  289. }
  290. return (
  291. <Wrapper
  292. className={className!}
  293. style={{
  294. opacity: disabled ? 0.5 : undefined,
  295. [parallelDimension]: length!,
  296. }}
  297. >
  298. <SizingWrapper
  299. style={{
  300. [parallelDimension]: length!,
  301. [perpendicularDimension]: '3rem',
  302. }}
  303. >
  304. <TransformWrapper
  305. style={{
  306. [parallelDimension]: length!,
  307. [perpendicularDimension]: '100%',
  308. transform:
  309. orientation === 'horizontal'
  310. ? undefined
  311. : `rotate(-90deg) translateX(calc(${typeof length! === 'number' ? `${length}px` : length} * -1))`,
  312. }}
  313. >
  314. <FallbackTrack
  315. style={{
  316. width: length!,
  317. height: '3rem',
  318. padding: '1.875rem 0.75rem 0.875rem',
  319. }}
  320. />
  321. <ClickArea>
  322. <LabelWrapper
  323. style={{
  324. maxWidth: length!,
  325. }}
  326. >
  327. {stringify(label)}
  328. </LabelWrapper>
  329. {stringify(label).length > 0 && ' '}
  330. <FallbackSlider
  331. {...etcProps}
  332. style={{
  333. width: length!,
  334. }}
  335. disabled={disabled!}
  336. type="range"
  337. />
  338. </ClickArea>
  339. </TransformWrapper>
  340. </SizingWrapper>
  341. </Wrapper>
  342. )
  343. }
  344. Slider.propTypes = propTypes
  345. Slider.displayName = 'Slider'
  346. export default Slider