forked from wever-ko/wever-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
halfCircleGauge.js
414 lines (380 loc) · 11 KB
/
halfCircleGauge.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/**
* @author Yeon Ju An
* HalfCircleGauge
*/
var HalfCircleGauge = (function (global)
{
/**
* @private
* @function
* 기본 값, 옵션을 설정하기 위한 함수
*/
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
/**
* @private
* @method
* @param {ElementObject} elem 속성을 설정할 엘리먼트
* @param {Object} attrs 설정할 속성
*/
function __attrs (elem, attrs)
{
for (var a in attrs)
{
elem.setAttribute(a, attrs[a]);
}
}
/**
* @private
* @method
* Create svg emelemt
* @param {String} which 생성할 엘리먼트 종류(svg)
* @param {Object} attrs 설정할 속성
*/
function createSVGElem (which, attrs)
{
var el = document.createElementNS('http://www.w3.org/2000/svg', which);
__attrs(el, attrs);
return el;
}
/**
* @private
* @method
* @param {Number} p 퍼센티지 값
* @param {Number} r 반지름값 (radius)
* @param {Number} ox 기준값 X (offset X)
* @param {Number} oy 기준값 Y (offset Y)
*/
function arcPath (p, r, ox, oy)
{
var e = (Math.PI) * p / 100;
return [
'M',
ox,
oy,
'A',
r, r, 0, 0,
1,
ox + r - r * Math.cos(e),
oy - r * Math.sin(e)
].join(' ');
}
var defaults =
{
bgColor: '#ffffff',
lineColor: '#000000',
lineWidth: 20,
radius: 50,
value: 30,
showText: true,
textColor: '#ff0000',
textSize: 20,
emptyLineColor: '#222222',
emptyLineWidth: 20
}
/**
* @public
* @constructor
* @param {Object} opts 옵션
*/
function HalfCircleGauge (opts)
{
if (opts === void 0) { opts = {}; }
this.opts = __assign({}, defaults, opts);
}
/**
* @public
* @method
* @param {Element} target svg를 생성할 타겟
*/
HalfCircleGauge.prototype.create = function (target)
{
var sw = this._getw(),
sh = this._geth(),
o = this.opts;
// Create SVG
this.svg = createSVGElem('svg', {'xmlns': 'http://www.w3.org/2000/svg', 'viewBox' : '0 0 100 50' });
// Create bg
// this.bg = createSVGElem('rect', {'fill': o.bgColor, 'width': '100%', 'height': '100%'});
//this.svg.appendChild(this.bg);
// Create empty line
this.epath = createSVGElem('path', {
'fill': 'transparent',
'stroke': o.emptyLineColor,
'stroke-width': o.emptyLineWidth,
'd': arcPath(100, o.radius, this._getoffx(), sh)
});
this.svg.appendChild(this.epath);
// Create line
this.path = createSVGElem('path', {
'fill': 'transparent',
'stroke': o.lineColor,
'stroke-width': o.lineWidth,
'd': arcPath(o.value, o.radius, this._getoffx(), sh)
});
this.svg.appendChild(this.path);
// Create text
this._text = createSVGElem('text', {
'fill': o.textColor,
'x': 50,
'y': 50,
'text-anchor': 'middle',
'font-size': o.textSize
});
this._text.textContent = "";
this.svg.appendChild(this._text);
target.appendChild(this.svg);
return this;
}
/**
* @public
* @method
* @param {Number} v 설정할 퍼센티지 값
* @param {Boolean} anim 애니메이션 여부
* @param {Number} msec 애니메이션 수행시간
* @param {Function} cb 애니메이션 끝에 발생하는 콜백
* @return {Number} 현재 설정된 퍼센티지 값 반환
* 현재 퍼센티지값 설정
*/
HalfCircleGauge.prototype.val = function (v, anim, msec, cb)
{
if(typeof v !== "undefined")
{
var opts = this.opts,
_this = this;
v = parseFloat(v);
var dv = v;
if (anim)
{
var unit = (dv - opts.value) / msec;
var itv = setInterval( function ()
{
_this.opts.value += unit;
if( Math.abs(_this.opts.value - dv) <= (2 * Math.abs(unit)))
{
_this.opts.value = dv;
clearInterval(itv);
if( typeof cb === "function")
{
cb();
}
}
_this.path.setAttribute('d', arcPath(_this.opts.value, _this.opts.radius, _this._getoffx(), _this._geth()));
if(typeof _this.step === "function")
{
_this.step();
}
}, 1);
return this.opts.value;
}
this.opts.value = dv;
this.path.setAttribute('d', arcPath(this.opts.value, this.opts.radius, this._getoffx(), this._geth()));
if(typeof this.step === "function")
{
this.step();
}
}
return this.opts.value;
}
/**
* @public
* @method
* @param {String} c 설정할 배경 색상
* @return {String} 현재 설정된 배경 색상
*/
/*HalfCircleGauge.prototype.bgColor = function (c)
{
if(typeof c !== "undefined")
{
this.opts.bgColor = c;
__attrs(this.bg, {'fill': c});
}
return this.opts.bgColor;
}*/
/**
* @public
* @method
* @param {String} c 설정할 내부 텍스트 색상
* @return {String} 현재 설정된 내부 텍스트 색상
*/
HalfCircleGauge.prototype.textColor = function (c)
{
if(typeof c !== "undefined")
{
this.opts.textColor = c;
__attrs(this._text, {'fill': c});
}
return this.opts.textColor;
}
/**
* @public
* @method
* @param {Number} s 설정할 내부 텍스트 크기
* @param {Number} 현재 설정된 내부 텍스트 크기
*/
HalfCircleGauge.prototype.textSize = function (s)
{
if(typeof s !== "undefined")
{
this.opts.textSize = s;
__attrs(this._text, {'font-size': s});
}
return this.opts.textSize;
}
/**
* @public
* @method
* @param {String} t 설정할 내부 텍스트값
* @param {String} 현재 설정된 내부 텍스트값
*/
HalfCircleGauge.prototype.text = function (t)
{
if(typeof t !== "undefined")
{
this._text.textContent = t;
}
return this._text.textContent;
}
/**
* @public
* @method
* @param {Number} r 설정할 반지름 크기
* @return {Number} 현재 설정된 반지름 크기
*/
HalfCircleGauge.prototype.radius = function (r)
{
if(typeof r !== "undefined")
{
this.opts.radius = parseFloat(r);
this._resize();
}
return this.opts.radius;
}
/**
* @public
* @method
* @param {Number} w 설정할 퍼센티지 굵기
* @return {Number} 현재 설정된 퍼센티지 굵기
*/
HalfCircleGauge.prototype.lineWidth = function (w)
{
if(typeof w !== "undefined")
{
this.opts.lineWidth = parseFloat(w);
this._resize();
this.path.setAttribute('stroke-width', w);
}
return this.opts.width;
}
/**
* @public
* @method
* @param {String} c 설정할 퍼센티지 색상
* @return {String} 현재 설정된 퍼센티지 색상
*/
HalfCircleGauge.prototype.lineColor = function (c)
{
if(typeof c !== "undefined")
{
this.opts.lineColor = c;
__attrs(this.path, {'stroke': c});
}
return this.opts.lineColor;
}
/**
* @public
* @method
* @param {Number} w 설정할 빈공간 굵기
* @return {Number} 현재 설정된 빈공간 굵기
*/
HalfCircleGauge.prototype.emptyLineWidth = function (w)
{
if(typeof w !== "undefined")
{
this.opts.emptyLineWidth = parseFloat(w);
this._resize();
this.epath.setAttribute('stroke-width', w);
}
return this.opts.emptyLineWidth;
}
/**
* @public
* @method
* @param {String} c 설정할 빈공간 색상 값
* @return {String} 현재 설정된 색상 값
*/
HalfCircleGauge.prototype.emptyLineColor = function (c)
{
if(typeof c !== "undefined")
{
this.opts.emptyLineColor = c;
__attrs(this.epath, {'stroke': c});
}
return this.opts.emptyLineColor;
}
/**
* @public
* @method
* @return {Number} 옵션에 맞는 width
*/
HalfCircleGauge.prototype._getw = function ()
{
var o = this.opts;
return (o.radius * 2 + (o.lineWidth > o.emptyLineWidth ? o.lineWidth : o.emptyLineWidth));
}
/**
* @public
* @method
* @return {Number} 옵션에 맞는 height
*/
HalfCircleGauge.prototype._geth = function ()
{
var o = this.opts;
return 50;
//return (50+ (o.lineWidth > o.emptyLineWidth ? o.lineWidth : o.emptyLineWidth) / 2);
}
/**
* @public
* @method
* @return {Number} 옵션에 맞는 offset X
*/
HalfCircleGauge.prototype._getoffx = function ()
{
var o = this.opts;
return 50 - o.radius ;//- ((o.lineWidth > o.emptyLineWidth ? o.lineWidth : o.emptyLineWidth)) / 2;
}
/**
* @public
* @method
* 옵션에 맞게 크기 재 조정
*/
HalfCircleGauge.prototype._resize = function ()
{
var sw = this._getw(),
sh = this._geth(),
o = this.opts;
// __attrs(this.svg, {'width': sw, 'height': sh});
//__attrs(this._text, {'x' : sw / 2, 'y': sh});
this.epath.setAttribute('d', arcPath(100, o.radius, this._getoffx(), sh));
this.path.setAttribute('d', arcPath(o.value, o.radius, this._getoffx(), sh));
}
if (typeof module != 'undefined' && module.exports) {
module.exports = HalfCircleGauge;
} else if (typeof define === 'function' && define.amd) {
define([], function(){
return HalfCircleGauge;
});
} else {
global.HalfCircleGauge = HalfCircleGauge;
}
return HalfCircleGauge;
}(this.window || global));