blob: e71d082a5ab0a36932b53a3dd8f2043ef2240a7a [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
Akron792b1a42020-09-14 18:56:38 +020062 if (data['icon'] !== undefined){
63 b.setAttribute('data-icon', data['icon']);
64 };
hebasta40a85cf2020-07-15 18:10:08 +020065 };
66
Akronbec4a6a2018-07-10 14:45:15 +020067 b.addE('span').addT(title);
Akrondefa5e82018-07-10 12:09:46 +020068
69 var that = this;
70 b.addEventListener('click', function (e) {
71
72 // Do not bubble
73 e.halt();
74
75 // Call callback
Akron52ed22d2018-07-11 17:05:19 +020076 var obj = that._bind || this;
77 obj.button = b;
78 cb.apply(obj, e)
Akrondefa5e82018-07-10 12:09:46 +020079 });
Akron52ed22d2018-07-11 17:05:19 +020080
81 return b;
Akrondefa5e82018-07-10 12:09:46 +020082 },
83
Akrond141a362018-07-10 18:12:13 +020084
Akrondefa5e82018-07-10 12:09:46 +020085 /**
Akron52ed22d2018-07-11 17:05:19 +020086 * Add button that spawns a list in order.
hebasta40a85cf2020-07-15 18:10:08 +020087 *
Akron52ed22d2018-07-11 17:05:19 +020088 * Returns the list object.
89 */
Akron792b1a42020-09-14 18:56:38 +020090 addList : function (title, data, itemClass = defaultItemClass) {
Akron3b253d32018-07-15 10:16:06 +020091 var list = treeMenuClass.create([], itemClass);
Akron792b1a42020-09-14 18:56:38 +020092 this.add(title, data, function (e) {
Akron52ed22d2018-07-11 17:05:19 +020093 list.show();
94 list.button(this.button);
95 list.focus();
96 });
97
98 return list;
99 },
Akron858cbc82019-12-05 16:53:13 +0100100
101 /**
102 * Add button that can toggle a state.
103 * The state has to be a state object.
104 */
Akron792b1a42020-09-14 18:56:38 +0200105 addToggle : function (title, data, state) {
Akron858cbc82019-12-05 16:53:13 +0100106 let b = this._element.addE('span');
107 b.setAttribute('title',title);
Akron792b1a42020-09-14 18:56:38 +0200108
109 if (data != undefined) {
110 if (data['cls'] !== undefined) {
111 b.classList.add.apply(b.classList, data['cls']);
112 };
Akron858cbc82019-12-05 16:53:13 +0100113 };
114
115 // Set check marker
116 let check = b.addE('span');
117 check.classList.add("check", "button-icon");
118 check.addE('span');
119
120 // Associate this object to state
121 // Add setState method to object
122 check.setState = function (value) {
123 if (value) {
124 this.classList.add("checked");
125 } else {
126 this.classList.remove("checked");
127 }
128 };
129 state.associate(check);
130
131 b.addE('span').addT(title);
132
133 let that = this;
134 b.addEventListener('click', function (e) {
135
136 // Do not bubble
137 e.halt();
138
139 // Toggle state
140 if (state.get()) {
141 state.set(false)
142 } else {
143 state.set(true);
144 }
145 });
146
147 return b;
148 },
Akron52ed22d2018-07-11 17:05:19 +0200149
150 /**
hebasta40a85cf2020-07-15 18:10:08 +0200151 * Bind an object to all callbacks of the button group.
152 * To get the button element inside the callback,
Akron52ed22d2018-07-11 17:05:19 +0200153 * use this.button
Akrondefa5e82018-07-10 12:09:46 +0200154 */
155 bind : function (obj) {
156 if (obj !== undefined) {
157 this._bind = obj;
Akronb23e2712018-07-13 18:17:37 +0200158 return this;
Akrondefa5e82018-07-10 12:09:46 +0200159 };
160 return this._bind || this;
Akrond141a362018-07-10 18:12:13 +0200161 },
162
163
164 /**
165 * Remove all defined buttons
166 */
167 clear : function () {
168 _removeChildren(this._element);
169 return this;
Akrondefa5e82018-07-10 12:09:46 +0200170 }
171 }
172});