blob: 85c655548943675b11b111e0a4ca0041f4a5db82 [file] [log] [blame]
Akrone51eaa32020-11-10 09:35:53 +01001"use strict";
2
Akron52ed22d2018-07-11 17:05:19 +02003define(['buttongroup/menu','menu/item','util'], function (treeMenuClass, defaultItemClass) {
Akron52ed22d2018-07-11 17:05:19 +02004
Akrondefa5e82018-07-10 12:09:46 +02005 return {
6 /**
7 * Create button group
8 */
9 create : function (classes) {
10 return Object.create(this)._init(classes);
11 },
Akronf8af3b82021-07-21 20:24:00 +020012
13 /**
14 * Adopt existing button group element
15 */
16 adopt : function (element) {
17 const obj = Object.create(this);
18 obj._el = element;
19 return obj;
20 },
21
Akrondefa5e82018-07-10 12:09:46 +020022 // Initialize button group
23 _init : function (classes) {
Akronbf713fc2020-10-13 10:44:35 +020024 const e = document.createElement('div');
25 const cl = e.classList;
Akron4d926f12018-07-16 15:30:25 +020026 if (classes) {
Akrondefa5e82018-07-10 12:09:46 +020027 cl.add.apply(cl,classes);
Akron4510a3e2021-09-10 15:09:56 +020028 classes.forEach(i => {
29 switch (i) {
30 case "open-menu-below" : {
31 this._omBelow = true;
32 break;
33 }
34 case "open-menu-outside" : {
35 this._omOutside = true;
36 break;
37 }
38 case "open-menu-left" : {
39 this._omLeft = true;
40 }
41 }
42 })
Akrondefa5e82018-07-10 12:09:46 +020043 };
44 cl.add('button-group');
Akron24aa0052020-11-10 11:00:34 +010045 this._el = e;
Akrondefa5e82018-07-10 12:09:46 +020046 return this;
47 },
Akrond141a362018-07-10 18:12:13 +020048
Akrondefa5e82018-07-10 12:09:46 +020049 /**
50 * Return main element
51 */
52 element : function () {
Akron24aa0052020-11-10 11:00:34 +010053 return this._el;
Akrondefa5e82018-07-10 12:09:46 +020054 },
55
Akronf8af3b82021-07-21 20:24:00 +020056 /**
57 * Define element following newly added buttons.
58 */
59 anchor : function (anchor) {
Akronc8c8bf12021-09-24 11:30:45 +020060 if (anchor !== null && anchor.parentNode == this._el) {
Akronf8af3b82021-07-21 20:24:00 +020061 this._anchor = anchor;
62 return true;
63 };
64 return false;
65 },
Akrond141a362018-07-10 18:12:13 +020066
Akrond141a362018-07-10 18:12:13 +020067
Akronf8af3b82021-07-21 20:24:00 +020068 _insert : function (tag = 'span') {
69 const span = document.createElement(tag);
70 if (this._anchor) {
71 this._el.insertBefore(span, this._anchor);
72 return span;
73 }
74 return this._el.appendChild(span);
75 },
Akrond141a362018-07-10 18:12:13 +020076
Akrondefa5e82018-07-10 12:09:46 +020077 /**
78 * Add button in order
hebasta40a85cf2020-07-15 18:10:08 +020079 *
Akron52ed22d2018-07-11 17:05:19 +020080 * Returns the button element
Akrondefa5e82018-07-10 12:09:46 +020081 */
Akron792b1a42020-09-14 18:56:38 +020082 add : function (title, data, cb) {
Akronf8af3b82021-07-21 20:24:00 +020083 const b = this._insert('span');
Akrondefa5e82018-07-10 12:09:46 +020084 b.setAttribute('title',title);
Akron792b1a42020-09-14 18:56:38 +020085
86 if (data !== undefined) {
87 if (data['cls'] !== undefined) {
88 b.classList.add.apply(b.classList, data['cls']);
89 };
hebasta40a85cf2020-07-15 18:10:08 +020090
Akronba09ed22020-10-01 16:01:45 +020091 if (data['icon'] !== undefined) {
Akron792b1a42020-09-14 18:56:38 +020092 b.setAttribute('data-icon', data['icon']);
93 };
Akronba09ed22020-10-01 16:01:45 +020094
95 if (data['state'] !== undefined) {
96 b['state'] = data['state'];
97 }
hebasta40a85cf2020-07-15 18:10:08 +020098 };
99
Akronbec4a6a2018-07-10 14:45:15 +0200100 b.addE('span').addT(title);
Akrondefa5e82018-07-10 12:09:46 +0200101
Akronbf713fc2020-10-13 10:44:35 +0200102 let that = this;
Akrondefa5e82018-07-10 12:09:46 +0200103 b.addEventListener('click', function (e) {
104
105 // Do not bubble
106 e.halt();
107
108 // Call callback
Akronbf713fc2020-10-13 10:44:35 +0200109 let obj = that._bind || this;
Akron52ed22d2018-07-11 17:05:19 +0200110 obj.button = b;
111 cb.apply(obj, e)
Akrondefa5e82018-07-10 12:09:46 +0200112 });
Akron52ed22d2018-07-11 17:05:19 +0200113
114 return b;
Akrondefa5e82018-07-10 12:09:46 +0200115 },
116
Akrond141a362018-07-10 18:12:13 +0200117
Akrondefa5e82018-07-10 12:09:46 +0200118 /**
Akron52ed22d2018-07-11 17:05:19 +0200119 * Add button that spawns a list in order.
hebasta40a85cf2020-07-15 18:10:08 +0200120 *
Akron52ed22d2018-07-11 17:05:19 +0200121 * Returns the list object.
122 */
Akron792b1a42020-09-14 18:56:38 +0200123 addList : function (title, data, itemClass = defaultItemClass) {
Akronbf713fc2020-10-13 10:44:35 +0200124 const list = treeMenuClass.create([], itemClass);
Akron4510a3e2021-09-10 15:09:56 +0200125
126 list.openAt(
127 this._omLeft ? true : false,
128 this._omBelow ? true : false,
129 this._omOutside ? true : false,
130 );
131
Akron792b1a42020-09-14 18:56:38 +0200132 this.add(title, data, function (e) {
Akron52ed22d2018-07-11 17:05:19 +0200133 list.show();
134 list.button(this.button);
135 list.focus();
136 });
Akron52ed22d2018-07-11 17:05:19 +0200137 return list;
138 },
Akron858cbc82019-12-05 16:53:13 +0100139
140 /**
141 * Add button that can toggle a state.
142 * The state has to be a state object.
143 */
Akron37ea1192021-07-28 10:40:14 +0200144 /*
145 * addToggle() should be removed in favor of add(toggleObj)
146 * or similar, so the API of buttongroups and lists is similar
147 * for use as action plugins.
148 */
Akron792b1a42020-09-14 18:56:38 +0200149 addToggle : function (title, data, state) {
Akronf8af3b82021-07-21 20:24:00 +0200150 const b = this._insert('span');
Akron858cbc82019-12-05 16:53:13 +0100151 b.setAttribute('title',title);
Akron792b1a42020-09-14 18:56:38 +0200152
153 if (data != undefined) {
154 if (data['cls'] !== undefined) {
Akronbf713fc2020-10-13 10:44:35 +0200155 b.classList.add.apply(
156 b.classList,
157 data['cls']
158 );
Akron792b1a42020-09-14 18:56:38 +0200159 };
Akron858cbc82019-12-05 16:53:13 +0100160 };
161
162 // Set check marker
Akronbf713fc2020-10-13 10:44:35 +0200163 const check = b.addE('span');
Akron858cbc82019-12-05 16:53:13 +0100164 check.classList.add("check", "button-icon");
165 check.addE('span');
166
167 // Associate this object to state
168 // Add setState method to object
169 check.setState = function (value) {
170 if (value) {
171 this.classList.add("checked");
172 } else {
173 this.classList.remove("checked");
174 }
175 };
176 state.associate(check);
177
178 b.addE('span').addT(title);
179
180 let that = this;
181 b.addEventListener('click', function (e) {
182
183 // Do not bubble
184 e.halt();
185
186 // Toggle state
Akron237abc42020-10-07 14:14:52 +0200187 state.roll();
Akron858cbc82019-12-05 16:53:13 +0100188 });
189
190 return b;
191 },
Akron52ed22d2018-07-11 17:05:19 +0200192
193 /**
hebasta40a85cf2020-07-15 18:10:08 +0200194 * Bind an object to all callbacks of the button group.
195 * To get the button element inside the callback,
Akron52ed22d2018-07-11 17:05:19 +0200196 * use this.button
Akrondefa5e82018-07-10 12:09:46 +0200197 */
198 bind : function (obj) {
199 if (obj !== undefined) {
200 this._bind = obj;
Akronb23e2712018-07-13 18:17:37 +0200201 return this;
Akrondefa5e82018-07-10 12:09:46 +0200202 };
203 return this._bind || this;
Akrond141a362018-07-10 18:12:13 +0200204 },
205
206
207 /**
208 * Remove all defined buttons
209 */
210 clear : function () {
Akron24aa0052020-11-10 11:00:34 +0100211 _removeChildren(this._el);
Akrond141a362018-07-10 18:12:13 +0200212 return this;
Akrondefa5e82018-07-10 12:09:46 +0200213 }
214 }
215});