Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 1 | /** |
| 2 | * Add string values to the virtual collection |
| 3 | */ |
| 4 | define({ |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 5 | |
| 6 | /** |
| 7 | * Create new string value helper. |
| 8 | */ |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 9 | create : function () { |
| 10 | var regex = false; |
| 11 | var value = ''; |
| 12 | if (arguments.length == 2) { |
| 13 | regex = arguments[1]; |
| 14 | }; |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 15 | if (arguments.length >= 1) { |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 16 | value = arguments[0]; |
| 17 | }; |
| 18 | return Object.create(this)._init(value, regex); |
| 19 | }, |
| 20 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 21 | |
| 22 | // Initialize the string value |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 23 | _init : function (value, regex) { |
| 24 | this.element(); |
| 25 | this.value(value); |
| 26 | this.regex(regex); |
| 27 | return this; |
| 28 | }, |
| 29 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 30 | |
| 31 | /** |
| 32 | * Get or set the regex boolean value. |
| 33 | * |
| 34 | * @param bool Either true or false |
| 35 | */ |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 36 | regex : function (bool) { |
| 37 | if (arguments.length === 1) { |
| 38 | if (bool) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 39 | this._regex = true; |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 40 | } |
| 41 | else { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 42 | this._regex = false; |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 43 | }; |
| 44 | this._update(); |
| 45 | }; |
| 46 | return this._regex; |
| 47 | }, |
| 48 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 49 | |
| 50 | /** |
| 51 | * Toggle the regex, make it either true, |
| 52 | * if it is false, or make it false, if it is true. |
| 53 | */ |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 54 | toggleRegex : function () { |
| 55 | if (this._regex === false) |
| 56 | this.regex(true); |
| 57 | else |
| 58 | this.regex(false); |
| 59 | }, |
| 60 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 61 | /** |
| 62 | * Get or set the string value. |
| 63 | */ |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 64 | value : function (val) { |
| 65 | if (arguments.length === 1) { |
| 66 | this._value = val; |
Nils Diewald | 7991a3f | 2015-05-19 14:12:37 +0000 | [diff] [blame] | 67 | this._input.value = val; |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 68 | this._update(); |
| 69 | }; |
| 70 | return this._value; |
| 71 | }, |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 72 | |
| 73 | |
| 74 | // Update dom element |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 75 | _update : function () { |
Nils Diewald | 7991a3f | 2015-05-19 14:12:37 +0000 | [diff] [blame] | 76 | this._value = this._input.value; |
| 77 | |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 78 | if (this._regex) { |
| 79 | this._element.classList.add('regex'); |
| 80 | } |
| 81 | else { |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 82 | this._element.classList.remove('regex'); |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 83 | }; |
| 84 | }, |
| 85 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 86 | |
| 87 | /** |
| 88 | * Store the string value. |
| 89 | * This method should be overwritten. |
| 90 | * The method receives the the value and the regex. |
| 91 | */ |
| 92 | store : function (v,r) {}, |
| 93 | |
| 94 | |
| 95 | focus : function () { |
| 96 | this._element.children[0].focus(); |
| 97 | }, |
| 98 | |
| 99 | /** |
| 100 | * Get the associated dom element. |
| 101 | */ |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 102 | element : function () { |
| 103 | if (this._element !== undefined) |
| 104 | return this._element; |
| 105 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 106 | // Create element |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 107 | this._element = document.createElement('div'); |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 108 | var e = this._element; |
| 109 | e.setAttribute('tabindex', 0); |
| 110 | e.style.outline = 0; |
| 111 | |
| 112 | var cl = e.classList; |
| 113 | cl.add('value'); |
| 114 | if (this.regex() === true) |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 115 | cl.add('regex'); |
| 116 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 117 | // Add input field |
| 118 | this._input = e.appendChild( |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 119 | document.createElement('input') |
| 120 | ); |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 121 | if (this.value() !== undefined) |
| 122 | this._input.value = this.value(); |
| 123 | |
Nils Diewald | 9c12506 | 2015-05-05 23:54:17 +0000 | [diff] [blame] | 124 | // Add regex button |
| 125 | var re = e.appendChild( |
| 126 | document.createElement('div') |
| 127 | ); |
| 128 | re.addEventListener( |
| 129 | 'click', |
| 130 | function (e) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 131 | this.toggleRegex(); |
| 132 | e.halt(); |
Nils Diewald | 9c12506 | 2015-05-05 23:54:17 +0000 | [diff] [blame] | 133 | }.bind(this), |
| 134 | true |
| 135 | ); |
| 136 | re.appendChild(document.createTextNode('RE')); |
| 137 | |
| 138 | e.addEventListener( |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 139 | 'blur', |
Nils Diewald | 9c12506 | 2015-05-05 23:54:17 +0000 | [diff] [blame] | 140 | function (e) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 141 | this.store(this.value(), this.regex()); |
| 142 | e.halt(); |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 143 | }.bind(this) |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 144 | ); |
| 145 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 146 | this._input.addEventListener( |
| 147 | 'keypress', |
| 148 | function (e) { |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 149 | if (e.keyCode == 13) { |
| 150 | this.value(this._input.value); |
| 151 | this.store(this.value(), this.regex()); |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 152 | return false; |
Akron | 8778f5d | 2017-06-30 21:25:55 +0200 | [diff] [blame] | 153 | }; |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 154 | }.bind(this) |
| 155 | ); |
| 156 | |
Nils Diewald | c4c4b83 | 2015-05-05 16:00:08 +0000 | [diff] [blame] | 157 | // Add store button |
| 158 | /* |
| 159 | e.appendChild( |
| 160 | document.createElement('div') |
| 161 | ).addEventListener('click', function () { |
| 162 | this.store(this.value(), this.regex()); |
| 163 | }.bind(this)); |
| 164 | */ |
| 165 | return e; |
Nils Diewald | f0c4f11 | 2015-05-05 12:56:59 +0000 | [diff] [blame] | 166 | } |
| 167 | }); |