blob: 29453c3f6d78e860e51c4e2fb53e01138bd428a7 [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 */
Akron792b1a42020-09-14 18:56:38 +0200109 addToggle : function (title, data, state) {
Akron858cbc82019-12-05 16:53:13 +0100110 let b = this._element.addE('span');
111 b.setAttribute('title',title);
Akron792b1a42020-09-14 18:56:38 +0200112
113 if (data != undefined) {
114 if (data['cls'] !== undefined) {
115 b.classList.add.apply(b.classList, data['cls']);
116 };
Akron858cbc82019-12-05 16:53:13 +0100117 };
118
119 // Set check marker
120 let check = b.addE('span');
121 check.classList.add("check", "button-icon");
122 check.addE('span');
123
124 // Associate this object to state
125 // Add setState method to object
126 check.setState = function (value) {
127 if (value) {
128 this.classList.add("checked");
129 } else {
130 this.classList.remove("checked");
131 }
132 };
133 state.associate(check);
134
135 b.addE('span').addT(title);
136
137 let that = this;
138 b.addEventListener('click', function (e) {
139
140 // Do not bubble
141 e.halt();
142
143 // Toggle state
Akron237abc42020-10-07 14:14:52 +0200144 state.roll();
Akron858cbc82019-12-05 16:53:13 +0100145 });
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});