blob: 65ea86092a3823a1bc80f83b17370ff243284a6e [file] [log] [blame]
Akron52ed22d2018-07-11 17:05:19 +02001define(['buttongroup/menu','menu/item','util'], function (treeMenuClass, defaultItemClass) {
2 "use strict";
3
Akrondefa5e82018-07-10 12:09:46 +02004 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;
Akron4d926f12018-07-16 15:30:25 +020016 if (classes) {
Akrondefa5e82018-07-10 12:09:46 +020017 cl.add.apply(cl,classes);
18 };
19 cl.add('button-group');
20 this._element = e;
21 return this;
22 },
23
Akrond141a362018-07-10 18:12:13 +020024
Akrondefa5e82018-07-10 12:09:46 +020025 /**
26 * Return main element
27 */
28 element : function () {
29 return this._element;
30 },
31
Akrond141a362018-07-10 18:12:13 +020032
33 /**
hebasta40a85cf2020-07-15 18:10:08 +020034 * Upgrade this object to another object,
Akrond141a362018-07-10 18:12:13 +020035 * while private data stays intact.
hebasta40a85cf2020-07-15 18:10:08 +020036 *
Akrond141a362018-07-10 18:12:13 +020037 * @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
Akrondefa5e82018-07-10 12:09:46 +020047 /**
48 * Add button in order
hebasta40a85cf2020-07-15 18:10:08 +020049 *
Akron52ed22d2018-07-11 17:05:19 +020050 * Returns the button element
Akrondefa5e82018-07-10 12:09:46 +020051 */
Akron792b1a42020-09-14 18:56:38 +020052 add : function (title, data, cb) {
53
Akrondefa5e82018-07-10 12:09:46 +020054 var b = this._element.addE('span');
Akrondefa5e82018-07-10 12:09:46 +020055 b.setAttribute('title',title);
Akron792b1a42020-09-14 18:56:38 +020056
57 if (data !== undefined) {
58 if (data['cls'] !== undefined) {
59 b.classList.add.apply(b.classList, data['cls']);
60 };
hebasta40a85cf2020-07-15 18:10:08 +020061
Akronba09ed22020-10-01 16:01:45 +020062 if (data['icon'] !== undefined) {
Akron792b1a42020-09-14 18:56:38 +020063 b.setAttribute('data-icon', data['icon']);
64 };
Akronba09ed22020-10-01 16:01:45 +020065
66 if (data['state'] !== undefined) {
67 b['state'] = data['state'];
68 }
hebasta40a85cf2020-07-15 18:10:08 +020069 };
70
Akronbec4a6a2018-07-10 14:45:15 +020071 b.addE('span').addT(title);
Akrondefa5e82018-07-10 12:09:46 +020072
73 var that = this;
74 b.addEventListener('click', function (e) {
75
76 // Do not bubble
77 e.halt();
78
79 // Call callback
Akron52ed22d2018-07-11 17:05:19 +020080 var obj = that._bind || this;
81 obj.button = b;
82 cb.apply(obj, e)
Akrondefa5e82018-07-10 12:09:46 +020083 });
Akron52ed22d2018-07-11 17:05:19 +020084
85 return b;
Akrondefa5e82018-07-10 12:09:46 +020086 },
87
Akrond141a362018-07-10 18:12:13 +020088
Akrondefa5e82018-07-10 12:09:46 +020089 /**
Akron52ed22d2018-07-11 17:05:19 +020090 * Add button that spawns a list in order.
hebasta40a85cf2020-07-15 18:10:08 +020091 *
Akron52ed22d2018-07-11 17:05:19 +020092 * Returns the list object.
93 */
Akron792b1a42020-09-14 18:56:38 +020094 addList : function (title, data, itemClass = defaultItemClass) {
Akron3b253d32018-07-15 10:16:06 +020095 var list = treeMenuClass.create([], itemClass);
Akron792b1a42020-09-14 18:56:38 +020096 this.add(title, data, function (e) {
Akron52ed22d2018-07-11 17:05:19 +020097 list.show();
98 list.button(this.button);
99 list.focus();
100 });
101
102 return list;
103 },
Akron858cbc82019-12-05 16:53:13 +0100104
105 /**
106 * Add button that can toggle a state.
107 * The state has to be a state object.
108 */
Akronba09ed22020-10-01 16:01:45 +0200109 /*
110 * TODO:
111 * Do not add a state object here, but embed the
112 * state in the data and "roll()" through the different
113 * state options instead.
114 */
Akron792b1a42020-09-14 18:56:38 +0200115 addToggle : function (title, data, state) {
Akron858cbc82019-12-05 16:53:13 +0100116 let b = this._element.addE('span');
117 b.setAttribute('title',title);
Akron792b1a42020-09-14 18:56:38 +0200118
119 if (data != undefined) {
120 if (data['cls'] !== undefined) {
121 b.classList.add.apply(b.classList, data['cls']);
122 };
Akron858cbc82019-12-05 16:53:13 +0100123 };
124
125 // Set check marker
126 let check = b.addE('span');
127 check.classList.add("check", "button-icon");
128 check.addE('span');
129
130 // Associate this object to state
131 // Add setState method to object
132 check.setState = function (value) {
133 if (value) {
134 this.classList.add("checked");
135 } else {
136 this.classList.remove("checked");
137 }
138 };
139 state.associate(check);
140
141 b.addE('span').addT(title);
142
143 let that = this;
144 b.addEventListener('click', function (e) {
145
146 // Do not bubble
147 e.halt();
148
149 // Toggle state
150 if (state.get()) {
151 state.set(false)
152 } else {
153 state.set(true);
154 }
155 });
156
157 return b;
158 },
Akron52ed22d2018-07-11 17:05:19 +0200159
160 /**
hebasta40a85cf2020-07-15 18:10:08 +0200161 * Bind an object to all callbacks of the button group.
162 * To get the button element inside the callback,
Akron52ed22d2018-07-11 17:05:19 +0200163 * use this.button
Akrondefa5e82018-07-10 12:09:46 +0200164 */
165 bind : function (obj) {
166 if (obj !== undefined) {
167 this._bind = obj;
Akronb23e2712018-07-13 18:17:37 +0200168 return this;
Akrondefa5e82018-07-10 12:09:46 +0200169 };
170 return this._bind || this;
Akrond141a362018-07-10 18:12:13 +0200171 },
172
173
174 /**
175 * Remove all defined buttons
176 */
177 clear : function () {
178 _removeChildren(this._element);
179 return this;
Akrondefa5e82018-07-10 12:09:46 +0200180 }
181 }
182});