All files / src/demo App.js

0% Statements 0/9
100% Branches 0/0
0% Functions 0/5
0% Lines 0/9
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                                                                                                                                                                                                                                                                                                                                           
import React, {Component} from 'react';
import './App.css';
import EasyEdit from "../lib/EasyEdit";
 
class App extends Component {
 
  static onTest(value) {
    alert(value);
  }
 
  static generateOptions() {
    return [
      {label: 'Test One', value: 'testone'},
      {label: 'Test Two', value: 'testtwo'},
      {label: 'Test Three', value: 'testthree'},
      {label: 'Test Four', value: 'testfour'}
    ]
  }
 
  static generateValues() {
    return ['testone', 'testtwo'];
  }
 
  render() {
    let attributes = {
      id: 'name-two',
      disabled: true
    };
 
    return (
        <div className="App">
          <header className="App-header">
            <div>
              <h1>React Easy Edit</h1>
              <h3>Datalist</h3>
              <EasyEdit
                  type="datalist"
                  onSave={App.onTest}
                  options={App.generateOptions()}
                  instructions="Custom instructions"
              />
              <h3>Input Field</h3>
              <h4>type "text"</h4>
              <EasyEdit
                  type="text"
                  value="Can't click this"
                  onSave={App.onTest}
                  allowEdit={false}
              />
              <EasyEdit
                  type="text"
                  placeholder="I'm disabled!"
                  onSave={App.onTest}
                  onValidate={() => true}
                  attributes={attributes}
              />
              <EasyEdit
                  type="text"
                  value="Edit me!"
                  onSave={App.onTest}
                  instructions="Custom instructions"
              />
              <h4>type "range"</h4>
              <EasyEdit
                  type="range"
                  onSave={App.onTest}
                  instructions="Custom instructions"
              />
              <h4>type "color"</h4>
              <EasyEdit
                  type="color"
                  value="#ff00ff"
                  onSave={App.onTest}
                  instructions="Custom instructions"
              />
              <h4>type "date"</h4>
              <EasyEdit
                  type="date"
                  onSave={App.onTest}
                  instructions="Custom instructions"
              />
              <h4>type "datetime-local"</h4>
              <EasyEdit
                  type="datetime-local"
                  onSave={App.onTest}
              />
              <h4>type "time"</h4>
              <EasyEdit
                  type="time"
                  onSave={App.onTest}
              />
              <h4>type "week"</h4>
              <EasyEdit
                  type="week"
                  onSave={App.onTest}
              />
              <h4>type "month"</h4>
              <EasyEdit
                  type="month"
                  onSave={App.onTest}
              />
              <h4>type "number"</h4>
              <EasyEdit
                  type="number"
                  value={1}
                  onSave={App.onTest}
                  min={0}
              />
              <EasyEdit
                  type="number"
                  onSave={App.onTest}
              />
              <h4>type "radio"</h4>
              <EasyEdit
                  type="radio"
                  value="testone"
                  onSave={App.onTest}
                  options={App.generateOptions()}
                  instructions="Custom instructions"
              />
              <h3>Textarea</h3>
              <EasyEdit
                  type="textarea"
                  value="Test Textarea"
                  onSave={App.onTest}
                  instructions="Custom instructions"
              />
              <EasyEdit
                  type="textarea"
                  onSave={App.onTest}
              />
              <h3>Select</h3>
              <EasyEdit
                  type="select"
                  options={App.generateOptions()}
                  onSave={App.onTest}
              />
              <EasyEdit
                  type="select"
                  options={App.generateOptions()}
                  onSave={App.onTest}
                  placeholder="My Placeholder"
                  instructions="Custom instructions"
              />
              <h3>Checkbox</h3>
              <EasyEdit
                  type="checkbox"
                  options={App.generateOptions()}
                  onSave={App.onTest}
                  instructions="Custom instructions"
              />
              <EasyEdit
                  type="checkbox"
                  options={App.generateOptions()}
                  onSave={App.onTest}
                  value={App.generateValues()}
              />
            </div>
          </header>
        </div>
    );
  }
}
 
export default App;