All files Tags.js

97.83% Statements 45/46
85% Branches 34/40
100% Functions 7/7
100% Lines 42/42
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                                            1x                       30x 9x   9x 2x     8x 8x   8x 1x     7x 7x     7x       30x 3x 3x   3x 3x       30x 13x   4x   4x   3x 2x     3x     9x   9x 9x 3x     9x     9x       30x 13x   13x 3x       30x     30x 64x                 30x                 31x     30x   30x                       1x                    
// @flow
 
import React from 'react';
import Tag from './Tag';
 
import '../scss/styles.scss';
 
type Props = {
  tags: Array<string>,
  maxTags?: number,
  placeholder?: string,
  deleteOnKeyPress?: boolean,
  addKeys?: Array<number>,
  uniqueTags?: boolean,
  readOnly?: boolean,
  onAdded?: Function,
  onRemoved?: Function,
  onInputChange?: Function,
  id?: string,
  removeTagIcon?: string | Object
};
 
const Tags = ({
                tags,
                maxTags = -1,
                placeholder = 'Add a tag',
                deleteOnKeyPress = true,
                addKeys = [Tags.KEYS.enter, Tags.KEYS.tab, Tags.KEYS.spacebar],
                uniqueTags = false,
                readOnly = false,
                ...props }: Props) => {
 
  let input: HTMLInputElement;
 
  const addTag = (): void => {
    const { onAdded } = props;
 
    if (maxTags > 0){
      if (tags.length >= maxTags) return;
    }
 
    Eif (input){
      const value = input.value.trim();
 
      if (uniqueTags){
        Eif (tags.indexOf(value) >= 0) return;
      }
 
      Eif (typeof onAdded !== 'undefined'){
        onAdded(value);
      }
 
      input.value = '';
    }
  };
 
  const removeTag = (index: number): void => {
    const { onRemoved } = props;
    const value: string = tags[index];
 
    Eif (typeof onRemoved !== 'undefined'){
      onRemoved(value, index);
    }
  };
 
  const onInputKey = (e: KeyboardEvent): void => {
    switch (e.keyCode){
      case Tags.KEYS.backspace:
        const { length } = tags;
 
        if (length === 0 || !deleteOnKeyPress) return;
 
        if (input.value === ''){
          removeTag(length - 1);
        }
 
        break;
 
      default:
        Iif (input.value === '') return;
 
        Eif (addKeys.indexOf(e.keyCode) !== -1){
          if (Tags.KEYS.enter !== e.keyCode){
            e.preventDefault();
          }
 
          addTag();
        }
 
        break;
    }
  };
 
  const onInputChange = (e: SyntheticInputEvent): void => {
    const value: string = e.target.value.trim();
 
    if (typeof props.onInputChange !== 'undefined'){
      props.onInputChange(value);
    }
  };
 
  const { removeTagIcon, id } = props;
 
  //-- Render tags
  const tagItems: Array<Tag> = tags.map((tag, v) => {
    return <Tag
      key={v}
      name={tag}
      readOnly={readOnly}
      removeTagIcon={removeTagIcon}
      onRemoveTag={removeTag.bind(this, v)} />;
  });
 
  //-- Render the input field
  const tagInput: ?React$Element<any> = !readOnly ? (
    <input
      type="text"
      role="textbox"
      autoComplete="off"
      aria-label={placeholder}
      placeholder={placeholder}
      onChange={onInputChange}
      onKeyDown={onInputKey}
      ref={el => input = el} />
  ) : null;
 
  const classNames: string = readOnly ? 'react-tags__container react-tags__container_readonly' : 'react-tags__container';
 
  return (
    <div className="react-tags" id={id}>
      <ul className={classNames}>
        {tagItems}
      </ul>
 
      {tagInput}
    </div>
  );
};
 
//-- Keyboard key map
Tags.KEYS = {
  enter: 13,
  tab: 9,
  spacebar: 32,
  backspace: 8,
  left: 37,
  right: 39
};
 
export default Tags;