Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 1 | define(['buttongroup/menu','menu/item','util'], function (treeMenuClass, defaultItemClass) { |
| 2 | "use strict"; |
| 3 | |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 4 | return { |
| 5 | /** |
| 6 | * Create button group |
| 7 | */ |
| 8 | create : function (classes) { |
| 9 | return Object.create(this)._init(classes); |
| 10 | }, |
| 11 | |
| 12 | // Initialize button group |
| 13 | _init : function (classes) { |
| 14 | var e = document.createElement('div'); |
| 15 | var cl = e.classList; |
Akron | 4d926f1 | 2018-07-16 15:30:25 +0200 | [diff] [blame] | 16 | if (classes) { |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 17 | cl.add.apply(cl,classes); |
| 18 | }; |
| 19 | cl.add('button-group'); |
| 20 | this._element = e; |
| 21 | return this; |
| 22 | }, |
| 23 | |
Akron | d141a36 | 2018-07-10 18:12:13 +0200 | [diff] [blame] | 24 | |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 25 | /** |
| 26 | * Return main element |
| 27 | */ |
| 28 | element : function () { |
| 29 | return this._element; |
| 30 | }, |
| 31 | |
Akron | d141a36 | 2018-07-10 18:12:13 +0200 | [diff] [blame] | 32 | |
| 33 | /** |
hebasta | 40a85cf | 2020-07-15 18:10:08 +0200 | [diff] [blame^] | 34 | * Upgrade this object to another object, |
Akron | d141a36 | 2018-07-10 18:12:13 +0200 | [diff] [blame] | 35 | * while private data stays intact. |
hebasta | 40a85cf | 2020-07-15 18:10:08 +0200 | [diff] [blame^] | 36 | * |
Akron | d141a36 | 2018-07-10 18:12:13 +0200 | [diff] [blame] | 37 | * @param {Object} An object with properties. |
| 38 | */ |
| 39 | upgradeTo : function (props) { |
| 40 | for (var prop in props) { |
| 41 | this[prop] = props[prop]; |
| 42 | }; |
| 43 | return this; |
| 44 | }, |
| 45 | |
| 46 | |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 47 | /** |
| 48 | * Add button in order |
hebasta | 40a85cf | 2020-07-15 18:10:08 +0200 | [diff] [blame^] | 49 | * |
Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 50 | * Returns the button element |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 51 | */ |
hebasta | 40a85cf | 2020-07-15 18:10:08 +0200 | [diff] [blame^] | 52 | // TODO: Accept an object instead of a list |
| 53 | add : function (title, classes, cb, icon) { |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 54 | var b = this._element.addE('span'); |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 55 | b.setAttribute('title',title); |
| 56 | if (classes !== undefined) { |
| 57 | b.classList.add.apply(b.classList, classes); |
| 58 | }; |
hebasta | 40a85cf | 2020-07-15 18:10:08 +0200 | [diff] [blame^] | 59 | |
| 60 | if (icon !== undefined){ |
| 61 | b.setAttribute('data-icon', icon); |
| 62 | }; |
| 63 | |
Akron | bec4a6a | 2018-07-10 14:45:15 +0200 | [diff] [blame] | 64 | b.addE('span').addT(title); |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 65 | |
| 66 | var that = this; |
| 67 | b.addEventListener('click', function (e) { |
| 68 | |
| 69 | // Do not bubble |
| 70 | e.halt(); |
| 71 | |
| 72 | // Call callback |
Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 73 | var obj = that._bind || this; |
| 74 | obj.button = b; |
| 75 | cb.apply(obj, e) |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 76 | }); |
Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 77 | |
| 78 | return b; |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 79 | }, |
| 80 | |
Akron | d141a36 | 2018-07-10 18:12:13 +0200 | [diff] [blame] | 81 | |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 82 | /** |
Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 83 | * Add button that spawns a list in order. |
hebasta | 40a85cf | 2020-07-15 18:10:08 +0200 | [diff] [blame^] | 84 | * |
Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 85 | * Returns the list object. |
| 86 | */ |
Akron | 3b253d3 | 2018-07-15 10:16:06 +0200 | [diff] [blame] | 87 | addList : function (title, classes, itemClass = defaultItemClass) { |
| 88 | var list = treeMenuClass.create([], itemClass); |
Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 89 | this.add(title, classes, function (e) { |
| 90 | list.show(); |
| 91 | list.button(this.button); |
| 92 | list.focus(); |
| 93 | }); |
| 94 | |
| 95 | return list; |
| 96 | }, |
Akron | 858cbc8 | 2019-12-05 16:53:13 +0100 | [diff] [blame] | 97 | |
| 98 | /** |
| 99 | * Add button that can toggle a state. |
| 100 | * The state has to be a state object. |
| 101 | */ |
| 102 | addToggle : function (title, classes, state) { |
| 103 | let b = this._element.addE('span'); |
| 104 | b.setAttribute('title',title); |
| 105 | if (classes !== undefined) { |
| 106 | b.classList.add.apply(b.classList, classes); |
| 107 | }; |
| 108 | |
| 109 | // Set check marker |
| 110 | let check = b.addE('span'); |
| 111 | check.classList.add("check", "button-icon"); |
| 112 | check.addE('span'); |
| 113 | |
| 114 | // Associate this object to state |
| 115 | // Add setState method to object |
| 116 | check.setState = function (value) { |
| 117 | if (value) { |
| 118 | this.classList.add("checked"); |
| 119 | } else { |
| 120 | this.classList.remove("checked"); |
| 121 | } |
| 122 | }; |
| 123 | state.associate(check); |
| 124 | |
| 125 | b.addE('span').addT(title); |
| 126 | |
| 127 | let that = this; |
| 128 | b.addEventListener('click', function (e) { |
| 129 | |
| 130 | // Do not bubble |
| 131 | e.halt(); |
| 132 | |
| 133 | // Toggle state |
| 134 | if (state.get()) { |
| 135 | state.set(false) |
| 136 | } else { |
| 137 | state.set(true); |
| 138 | } |
| 139 | }); |
| 140 | |
| 141 | return b; |
| 142 | }, |
Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 143 | |
| 144 | /** |
hebasta | 40a85cf | 2020-07-15 18:10:08 +0200 | [diff] [blame^] | 145 | * Bind an object to all callbacks of the button group. |
| 146 | * To get the button element inside the callback, |
Akron | 52ed22d | 2018-07-11 17:05:19 +0200 | [diff] [blame] | 147 | * use this.button |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 148 | */ |
| 149 | bind : function (obj) { |
| 150 | if (obj !== undefined) { |
| 151 | this._bind = obj; |
Akron | b23e271 | 2018-07-13 18:17:37 +0200 | [diff] [blame] | 152 | return this; |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 153 | }; |
| 154 | return this._bind || this; |
Akron | d141a36 | 2018-07-10 18:12:13 +0200 | [diff] [blame] | 155 | }, |
| 156 | |
| 157 | |
| 158 | /** |
| 159 | * Remove all defined buttons |
| 160 | */ |
| 161 | clear : function () { |
| 162 | _removeChildren(this._element); |
| 163 | return this; |
Akron | defa5e8 | 2018-07-10 12:09:46 +0200 | [diff] [blame] | 164 | } |
| 165 | } |
| 166 | }); |