1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 | 89x 4x 5x 89x 4x 5x 129x 129x 35x 8x 8x 9x 9x 9x 9x 9x 1x 1x 1x 1x 1x 24x 24x 24x 24x 24x 24x 2x 2x 2x 2x 2x 2x 5x 5x 5x 5x 5x 44x 44x 44x 192x 192x 192x 192x 192x 192x 1x 192x 192x 192x 97x 192x 192x 192x 95x 94x 192x 4x 89x 89x 89x | import React from 'react'; import PropTypes from 'prop-types'; import { omit } from 'lodash'; import { Icon, InputError, InputHelper, Label, } from '@collab-ui/react'; /** * @category controls * @component input * @variations collab-ui-react */ const determineErrorType = array => { return array.reduce((agg, e) => { return agg === 'error' ? agg : e.type || ''; }, ''); }; const filterErrorsByType = (array, value) => { return array.reduce( (agg, e) => (e.type === value ? agg.concat(e.error) : agg), [] ); }; /** Text input with integrated label to enforce consistency in layout, error display, label placement, and required field marker. */ class Input extends React.Component { state = { isEditing: false, value: this.props.value || this.props.defaultValue, }; componentDidUpdate (prevProps) { const { value } = this.props; value !== prevProps.value && this.setValue(value); } setValue = value => { this.setState({ value }); }; handleKeyDown = e => { const { onKeyDown } = this.props; onKeyDown && onKeyDown(e); }; handleFocus = e => { const { onFocus, disabled } = this.props; Iif (disabled) { e.stopPropagation(); return; } Eif (onFocus) { onFocus(e); } this.setState({ isEditing: true, }); }; handleMouseDown = e => { const { onMouseDown, disabled } = this.props; Iif (disabled) { e.stopPropagation(); return; } Eif (onMouseDown) { onMouseDown(e); } this.setState({ isEditing: true, }); }; handleChange = e => { const { onChange } = this.props; const value = e.target.value; e.persist(); this.setState(() => { onChange && onChange(e); return { value }; }); }; handleBlur = e => { const { onDoneEditing } = this.props; const value = e.target.value; e.stopPropagation(); Eif (e.keyCode === 27 || e.keyCode === 13 || e.type === 'blur') { this.setState( { isEditing: false } , () => onDoneEditing && onDoneEditing(e, value) ); } }; handleClear = e => { const value = ''; e.target.value = value; e.persist(); this.input.focus(); this.handleChange(e); }; setInputRef = input => { const { clear, inputRef } = this.props; if (clear) this.input = input; if (inputRef) return inputRef(input); } render() { const { children, className, clear, clearAriaLabel, disabled, errorArr, htmlId, iconNode, id, inputClassName, inputHelpText, inputSize, label, nestedLevel, placeholder, readOnly, secondaryLabel, theme, type, ...props } = this.props; const { value } = this.state; const otherProps = omit({ ...props }, [ 'defaultValue', 'inputRef', 'onChange', 'onDoneEditing', 'onFocus', 'onKeyDown', 'onMouseDown', 'ref', 'value', ]); const errorType = (errorArr.length > 0 && determineErrorType(errorArr)) || ''; const errors = (errorType && filterErrorsByType(errorArr, errorType)) || []; const secondaryLabelWrapper = () => { return ( <div className="cui-label__secondary-label-container"> {inputElement} <Label className="cui-label__secondary-label" htmlFor={htmlId} label={secondaryLabel} theme={theme} /> </div> ); }; const clearButton = (clear && !disabled && value) && ( <Icon name="clear-active_16" onClick={this.handleClear} ariaLabel={clearAriaLabel || 'clear input'} /> ); const customInputIconNode = iconNode && React.cloneElement(iconNode, { className: (iconNode.props.onClick ? '' : 'cui-input__icon') }); const iconContainer = () => { return ( <div className='cui-input__icon-container'> {inputElement} {children} {customInputIconNode || clearButton} </div> ); }; const inputElement = ( <input className={ 'cui-input' + `${inputClassName ? ` ${inputClassName}` : ''}` + `${readOnly ? ' read-only' : ''}` + `${disabled ? ' disabled' : ''}` + `${value ? ` dirty` : ''}` } onBlur={this.handleBlur} onChange={this.handleChange} onFocus={this.handleFocus} onKeyDown={this.handleKeyDown} onMouseDown={this.handleMouseDown} ref={this.setInputRef} tabIndex={0} type={type} value={value} {...disabled && { disabled }} {...htmlId && { id: htmlId }} {...otherProps} {...placeholder && { placeholder }} {...readOnly && { readOnly }} /> ); const getInputWrapper = () => { if (iconNode || clear || children) return iconContainer(); if (secondaryLabel) return secondaryLabelWrapper(); return inputElement; }; return ( <div className={ `cui-input-group` + ` ${inputSize}` + `${inputSize ? ' columns' : ''}` + `${readOnly ? ' read-only' : ''}` + `${disabled ? ' disabled' : ''}` + `${(theme && ` cui-input-group--${theme}`) || ''}` + `${errorType ? ` ${errorType}` : ''}` + `${(nestedLevel && ` cui-input--nested-${nestedLevel}`) || ''}` + `${className ? ` ${className}` : ''}` } > { label && <Label className="cui-label" htmlFor={htmlId || id} label={label} theme={theme} /> } {getInputWrapper()} {inputHelpText && <InputHelper message={inputHelpText} />} {errors && errors.map((e, i) => ( <InputError error={e} key={`input-error-${i}`} /> ))} </div> ); } } Input.propTypes = { /** @prop Child component to display next to the input | '' */ children: PropTypes.node, /** @prop Optional css class name | '' */ className: PropTypes.string, /** @prop Clears Input values | false */ clear: PropTypes.bool, /** @prop Optional aria label on the clear button | null */ clearAriaLabel: PropTypes.string, /** @prop Default Value same as value but used when onChange isn't invoked | '' */ defaultValue: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), /*** @prop Sets the disabled attribute of the Input | false */ disabled: PropTypes.bool, /** @prop Array of Objects with error and type [{error: '', type: ''}] to display error message and assign class | [] */ errorArr: PropTypes.array, /** @prop Unique HTML ID used for tying label to HTML input for automated testing | null */ htmlId: PropTypes.string, /** Optional Icon node that overrides the default clear icon | null */ iconNode: PropTypes.node, /** Unique HTML ID used for tying label to HTML input | null */ id: PropTypes.string, /** @prop Input css class name string | '' */ inputClassName: PropTypes.string, /** @prop Help Text to show form validation rules | '' */ inputHelpText: PropTypes.string, /*** @prop Optional Input ref prop type | null */ inputRef: PropTypes.func, /** @prop Overall input group size | '' */ inputSize: PropTypes.string, /** @prop Input label text | '' */ label: PropTypes.string, /*** @prop Optional Input name prop type | null */ name: PropTypes.string, /** @prop Set the level of nested Input components | 0 */ nestedLevel: PropTypes.number, /** @prop Callback function invoked when user types into the Input field | null */ onChange: PropTypes.func, /*** @prop Callback function invoked when user is done editing Input field | null */ onDoneEditing: PropTypes.func, /*** @prop Callback function invoked when user focuses on the Input field | null */ onFocus: PropTypes.func, /*** @prop Callback function invoked when user presses any key | null */ onKeyDown: PropTypes.func, /*** @prop Callback function invoked when user clicks on the mouse/trackpad | null */ onMouseDown: PropTypes.func, /** @prop Placeholder text to display when Input is empty | '' */ placeholder: PropTypes.string, /*** @prop Determines if Input can be edited | false */ readOnly: PropTypes.bool, /** @prop Secondary Input label | '' */ secondaryLabel: PropTypes.string, /** @prop Input color theme | '' */ theme: PropTypes.string, /** @prop Input type | 'text' */ type: PropTypes.oneOf(['text', 'number', 'password', 'email']), /** @prop Input value | '' */ value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; Input.defaultProps = { children: '', className: '', clear: false, clearAriaLabel: null, defaultValue: '', disabled: false, errorArr: [], htmlId: null, iconNode: null, id: null, inputClassName: '', inputHelpText: '', inputRef: null, inputSize: '', label: '', name: null, nestedLevel: 0, onChange: null, onDoneEditing: null, onFocus: null, onKeyDown: null, onMouseDown: null, placeholder: '', readOnly: false, secondaryLabel: '', theme: '', type: 'text', value: '', }; Input.displayName = 'Input'; export default Input; /** * @component input * @section default * @react import { Input } from '@collab-ui/react'; export default class InputDefault extends React.PureComponent { render() { return ( <Input name='defaultInput' label='Default Input' htmlId='defaultInput' inputSize='small-5' placeholder='Placeholder Text' /> ); } } **/ /** * @component input * @section clear * @react import { Input } from '@collab-ui/react'; export default class InputClear extends React.PureComponent { state = { value: 'Press or click the clear icon to clear this input' }; handleChange = (event) => { this.setState({value: event.target.value}); } render() { return ( <Input name='clearInput' label='Input with clear' htmlId='clearInput' inputSize='small-5' placeholder='Placeholder Text' value={this.state.value} onChange={this.handleChange} clear /> ); } } **/ /** * @component input * @section error * @react import { Input } from '@collab-ui/react'; export default function InputError() { return ( <Input name='inputError' label='Error (Error) Input' htmlId='inputError' inputSize='small-5' errorArr={ [{error: 'This is where the error message would be.', type: 'error'}] } /> ); } **/ /** * @component input * @section warning * @react import { Input } from '@collab-ui/react'; export default function InputWarning() { return ( <Input name='inputWarning' label='Error (Warning) Input' htmlId='inputWarning' inputSize='small-5' errorArr={ [{error: 'This is where the warning message would be.', type: 'warning'}] } /> ); } **/ /** * @component input * @section success * @react import { Input } from '@collab-ui/react'; export default function InputSuccess() { return ( <Input name='inputSuccess' label='Error (Success) Input' htmlId='inputSuccess' inputSize='small-5' errorArr={ [{error: 'This is where the success message would be.', type: 'success'}] } /> ); } **/ /** * @component input * @section disabled * @react import { Input } from '@collab-ui/react'; export default function InputDisabled() { return ( <Input name='inputDisabled' label='Disabled Input' htmlId='inputDisabled' inputSize='small-5' value='Disabled Text' disabled /> ); } **/ /** * @component input * @section read-only * @react import { Input } from '@collab-ui/react'; export default function InputReadonly() { return ( <Input name='inputReadonly' label='Read Only Input' htmlId='inputReadonly' inputSize='small-5' value='Read Only Text' readOnly /> ); } **/ /** * @component input * @section help-text * @react import { Input } from '@collab-ui/react'; export default function InputHelpText() { return ( <div className='row'> <Input name='inputHelpText' label='Help Text Input' htmlId='inputHelpText' inputSize='small-5' inputHelpText='Help Text' /> </div> ); } **/ /** * @component input * @section secondary-label * @react import { Input } from '@collab-ui/react'; export default function InputSecondary() { return ( <Input name='inputSecondaryLabel' label='Input with Secondary Label' htmlId='inputSecondaryLabel' inputSize='small-5' secondaryLabel='Secondary Label' /> ); } **/ /** * @component input * @section nested * @react import { Input } from '@collab-ui/react'; export default function InputNested() { return ( <div className='row' key={'input1'}> <Input name='inputParent' label='Parent Input Example' htmlId='inputParent' inputSize='small-5' /> </div>, <div className='row' key={'input2'}> <Input name='inputNested1' label='Child Input Nested 1 Level' inputSize='small-5' htmlId='inputNested1' nestedLevel={1} /> </div>, <div className='row' key={'input3'}> <Input name='inputNested2' label='Child Input Nested 2 Levels' inputSize='small-5' htmlId='inputNested2' nestedLevel={2} /> </div>, <div className='row' key={'input4'}> <Input name='inputNested3' label='Child Input Nested 3 Levels' inputSize='small-5' htmlId='inputNested3' nestedLevel={3} /> </div> ); } **/ |