blob: 31f60c83dda65932572faa33247b22f67129f1d4 [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
Akron644ad9f2021-07-26 16:12:59 +0200132 let b = this.add(title, data, function (e) {
Akron52ed22d2018-07-11 17:05:19 +0200133 list.show();
134 list.button(this.button);
135 list.focus();
136 });
Akron644ad9f2021-07-26 16:12:59 +0200137 b.list = list;
138 return b;
Akron52ed22d2018-07-11 17:05:19 +0200139 },
Akron858cbc82019-12-05 16:53:13 +0100140
141 /**
142 * Add button that can toggle a state.
143 * The state has to be a state object.
144 */
Akron37ea1192021-07-28 10:40:14 +0200145 /*
146 * addToggle() should be removed in favor of add(toggleObj)
147 * or similar, so the API of buttongroups and lists is similar
148 * for use as action plugins.
149 */
Akron792b1a42020-09-14 18:56:38 +0200150 addToggle : function (title, data, state) {
Akronf8af3b82021-07-21 20:24:00 +0200151 const b = this._insert('span');
Akron858cbc82019-12-05 16:53:13 +0100152 b.setAttribute('title',title);
Akron792b1a42020-09-14 18:56:38 +0200153
154 if (data != undefined) {
155 if (data['cls'] !== undefined) {
Akronbf713fc2020-10-13 10:44:35 +0200156 b.classList.add.apply(
157 b.classList,
158 data['cls']
159 );
Akron792b1a42020-09-14 18:56:38 +0200160 };
Akron858cbc82019-12-05 16:53:13 +0100161 };
162
163 // Set check marker
Akronbf713fc2020-10-13 10:44:35 +0200164 const check = b.addE('span');
Akron858cbc82019-12-05 16:53:13 +0100165 check.classList.add("check", "button-icon");
166 check.addE('span');
167
168 // Associate this object to state
169 // Add setState method to object
170 check.setState = function (value) {
171 if (value) {
172 this.classList.add("checked");
173 } else {
174 this.classList.remove("checked");
175 }
176 };
177 state.associate(check);
178
179 b.addE('span').addT(title);
180
181 let that = this;
182 b.addEventListener('click', function (e) {
183
184 // Do not bubble
185 e.halt();
186
187 // Toggle state
Akron237abc42020-10-07 14:14:52 +0200188 state.roll();
Akron858cbc82019-12-05 16:53:13 +0100189 });
190
191 return b;
192 },
Akron52ed22d2018-07-11 17:05:19 +0200193
194 /**
hebasta40a85cf2020-07-15 18:10:08 +0200195 * Bind an object to all callbacks of the button group.
196 * To get the button element inside the callback,
Akron52ed22d2018-07-11 17:05:19 +0200197 * use this.button
Akrondefa5e82018-07-10 12:09:46 +0200198 */
199 bind : function (obj) {
200 if (obj !== undefined) {
201 this._bind = obj;
Akronb23e2712018-07-13 18:17:37 +0200202 return this;
Akrondefa5e82018-07-10 12:09:46 +0200203 };
204 return this._bind || this;
Akrond141a362018-07-10 18:12:13 +0200205 },
206
207
208 /**
209 * Remove all defined buttons
210 */
211 clear : function () {
Akron24aa0052020-11-10 11:00:34 +0100212 _removeChildren(this._el);
Akrond141a362018-07-10 18:12:13 +0200213 return this;
Akrondefa5e82018-07-10 12:09:46 +0200214 }
215 }
216});