Browse Source

Merge branch 'es6' of ssh://code.fineres.com:7999/~treecat/fineui into es6

es6
Treecat 2 years ago
parent
commit
0aee12d56b
  1. 4
      src/case/calendar/calendar.js
  2. 69
      src/case/colorchooser/colorchooser.custom.js
  3. 146
      src/case/colorchooser/colorchooser.js
  4. 271
      src/case/colorchooser/colorchooser.popup.hex.js
  5. 61
      src/case/colorchooser/colorchooser.popup.hex.simple.js
  6. 209
      src/case/colorchooser/colorchooser.popup.js
  7. 61
      src/case/colorchooser/colorchooser.popup.simple.js
  8. 65
      src/case/colorchooser/colorchooser.simple.js
  9. 58
      src/case/colorchooser/colorchooser.trigger.js
  10. 73
      src/case/colorchooser/colorchooser.trigger.long.js
  11. 76
      src/case/colorchooser/colorpicker/button/button.colorpicker.js
  12. 46
      src/case/colorchooser/colorpicker/button/button.colorshow.js
  13. 2
      src/case/colorchooser/colorpicker/button/index.js
  14. 165
      src/case/colorchooser/colorpicker/colorpicker.hex.js
  15. 195
      src/case/colorchooser/colorpicker/colorpicker.js
  16. 242
      src/case/colorchooser/colorpicker/editor.colorpicker.hex.js
  17. 168
      src/case/colorchooser/colorpicker/editor.colorpicker.hex.simple.js
  18. 166
      src/case/colorchooser/colorpicker/editor.colorpicker.js
  19. 111
      src/case/colorchooser/colorpicker/editor.colorpicker.simple.js
  20. 7
      src/case/colorchooser/colorpicker/index.js
  21. 202
      src/case/colorchooser/farbtastic/farbtastic.js
  22. 11
      src/case/colorchooser/index.js
  23. 3
      src/case/index.js
  24. 4
      src/case/layer/panel.js
  25. 10
      src/case/list/list.select.js
  26. 443
      src/core/1.lodash.js
  27. 2
      src/core/structure/queue.js
  28. 1
      src/core/wrapper/layout/flex/flex.vertical.js
  29. 268
      src/widget/downlist/combo.downlist.js
  30. 113
      src/widget/downlist/group.downlist.js
  31. 5
      src/widget/downlist/index.js
  32. 227
      src/widget/downlist/item.downlist.js
  33. 259
      src/widget/downlist/item.downlistgroup.js
  34. 587
      src/widget/downlist/popup.downlist.js
  35. 18
      src/widget/index.js
  36. 2
      src/widget/intervalslider/index.js
  37. 726
      src/widget/intervalslider/intervalslider.js
  38. 271
      src/widget/intervalslider/model.accuratecalculation.js
  39. 265
      src/widget/singleslider/button/editor.sign.text.js
  40. 28
      src/widget/singleslider/button/iconbutton.slider.js
  41. 5
      src/widget/singleslider/index.js
  42. 526
      src/widget/singleslider/singleslider.js
  43. 464
      src/widget/singleslider/singleslider.label.js
  44. 430
      src/widget/singleslider/singleslider.normal.js

4
src/case/calendar/calendar.js

@ -139,8 +139,8 @@ export class Calendar extends Widget {
rowSize: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT + 8, rowSize: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT + 8,
}))], }))],
}); });
this.days.on(Controller.EVENT_CHANGE, () => { this.days.on(Controller.EVENT_CHANGE, (...args) => {
this.fireEvent(Controller.EVENT_CHANGE, arguments); this.fireEvent(Controller.EVENT_CHANGE, ...args);
}); });
createWidget(extend({ createWidget(extend({
element: this, element: this,

69
src/case/colorchooser/colorchooser.custom.js

@ -1,39 +1,47 @@
import { shortcut, Widget, extend, createWidget } from "@/core";
import { ColorPickerEditor } from "./colorpicker";
import { Farbtastic } from "./farbtastic/farbtastic";
/** /**
* 自定义选色 * 自定义选色
* *
* Created by GUY on 2015/11/17. * Created by GUY on 2015/11/17.
* @class BI.CustomColorChooser * @class CustomColorChooser
* @extends BI.Widget * @extends Widget
*/ */
BI.CustomColorChooser = BI.inherit(BI.Widget, { @shortcut()
export class CustomColorChooser extends Widget {
static xtype = "bi.custom_color_chooser";
static EVENT_CHANGE = "EVENT_CHANGE";
_defaultConfig: function () { _defaultConfig() {
return BI.extend(BI.CustomColorChooser.superclass._defaultConfig.apply(this, arguments), { return extend(super._defaultConfig(...arguments), {
baseCls: "bi-custom-color-chooser", baseCls: "bi-custom-color-chooser",
width: 292, width: 292,
height: 265 height: 265,
}); });
}, }
_init: function () { _init() {
BI.CustomColorChooser.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options; const o = this.options;
this.editor = BI.createWidget(o.editor, { this.editor = createWidget(o.editor, {
type: "bi.simple_hex_color_picker_editor", type: "bi.simple_hex_color_picker_editor",
value: o.value value: o.value,
}); });
this.editor.on(BI.ColorPickerEditor.EVENT_CHANGE, function () { this.editor.on(ColorPickerEditor.EVENT_CHANGE, () => {
self.setValue(this.getValue()); this.setValue(this.editor.getValue());
}); });
this.farbtastic = BI.createWidget({ this.farbtastic = createWidget({
type: "bi.farbtastic", type: "bi.farbtastic",
value: o.value value: o.value,
}); });
this.farbtastic.on(BI.Farbtastic.EVENT_CHANGE, function () { this.farbtastic.on(Farbtastic.EVENT_CHANGE, () => {
self.setValue(this.getValue()); this.setValue(this.farbtastic.getValue());
}); });
BI.createWidget({ createWidget({
type: "bi.vtape", type: "bi.vtape",
element: this, element: this,
items: [{ items: [{
@ -42,30 +50,29 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
el: this.editor, el: this.editor,
left: 10, left: 10,
top: 0, top: 0,
right: 10 right: 10,
}], }],
height: 50 height: 50,
}, { }, {
type: "bi.absolute", type: "bi.absolute",
items: [{ items: [{
el: this.farbtastic, el: this.farbtastic,
left: 46, left: 46,
right: 46, right: 46,
top: 7 top: 7,
}], }],
height: 215 height: 215,
}] }],
}); });
}, }
setValue: function (color) { setValue(color) {
this.editor.setValue(color); this.editor.setValue(color);
this.farbtastic.setValue(color); this.farbtastic.setValue(color);
}, }
getValue: function () { getValue() {
return this.editor.getValue(); return this.editor.getValue();
} }
}); }
BI.CustomColorChooser.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.custom_color_chooser", BI.CustomColorChooser);

146
src/case/colorchooser/colorchooser.js

@ -1,27 +1,41 @@
import { shortcut, Widget, extend, createWidget, toPix, isNotEmptyString } from "@/core";
import { Combo } from "@/base";
import { ColorChooserPopup } from "./colorchooser.popup";
/** /**
* 选色控件 * 选色控件
* *
* Created by GUY on 2015/11/17. * Created by GUY on 2015/11/17.
* @class BI.ColorChooser * @class ColorChooser
* @extends BI.Widget * @extends Widget
*/ */
BI.ColorChooser = BI.inherit(BI.Widget, { @shortcut()
export class ColorChooser extends Widget {
static xtype = "bi.color_chooser";
static EVENT_CHANGE = "EVENT_CHANGE";
static EVENT_AFTER_POPUPVIEW = "EVENT_AFTER_POPUPVIEW";
_defaultConfig: function () { _defaultConfig() {
return BI.extend(BI.ColorChooser.superclass._defaultConfig.apply(this, arguments), { return extend(super._defaultConfig(...arguments), {
baseCls: "bi-color-chooser", baseCls: "bi-color-chooser",
value: "", value: "",
height: 24, height: 24,
el: {}, el: {},
simple: false simple: false,
}); });
}, }
_init: function () { _init() {
var self = this, o = this.options; const o = this.options;
BI.ColorChooser.superclass._init.apply(this, arguments); const fn = () => {
const color = this.colorPicker.getValue();
this.setValue(color);
};
super._init(...arguments);
o.value = (o.value || "").toLowerCase(); o.value = (o.value || "").toLowerCase();
this.combo = BI.createWidget({ this.combo = createWidget({
type: "bi.combo", type: "bi.combo",
element: this, element: this,
container: o.container, container: o.container,
@ -29,83 +43,77 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
destroyWhenHide: o.destroyWhenHide, destroyWhenHide: o.destroyWhenHide,
isNeedAdjustWidth: false, isNeedAdjustWidth: false,
isNeedAdjustHeight: false, isNeedAdjustHeight: false,
el: BI.extend({ el: extend({
type: o.width <= 24 ? "bi.color_chooser_trigger" : "bi.long_color_chooser_trigger", type: o.width <= 24 ? "bi.color_chooser_trigger" : "bi.long_color_chooser_trigger",
simple: o.simple, simple: o.simple,
ref: function (_ref) { ref: _ref => {
self.trigger = _ref; this.trigger = _ref;
}, },
value: o.value, value: o.value,
width: o.el.type ? o.width : BI.toPix(o.width, 2), width: o.el.type ? o.width : toPix(o.width, 2),
height: o.el.type ? o.height : BI.toPix(o.height, 2) height: o.el.type ? o.height : toPix(o.height, 2),
}, o.el), }, o.el),
popup: () => ({ popup: () => {
el: BI.extend({ return {
type: "bi.hex_color_chooser_popup", el: extend({
recommendColorsGetter: o.recommendColorsGetter, type: "bi.hex_color_chooser_popup",
ref: function (_ref) { recommendColorsGetter: o.recommendColorsGetter,
self.colorPicker = _ref; ref: _ref => {
}, this.colorPicker = _ref;
listeners: [{ },
eventName: BI.ColorChooserPopup.EVENT_VALUE_CHANGE, listeners: [{
action: function () { eventName: ColorChooserPopup.EVENT_VALUE_CHANGE,
fn(); action: () => {
if (!self._isRGBColor(self.colorPicker.getValue())) { fn();
self.combo.hideView(); if (!this._isRGBColor(this.colorPicker.getValue())) {
} this.combo.hideView();
} }
}, { },
eventName: BI.ColorChooserPopup.EVENT_CHANGE, }, {
action: function () { eventName: ColorChooserPopup.EVENT_CHANGE,
fn(); action: () => {
self.combo.hideView(); fn();
} this.combo.hideView();
}] },
}, o.popup), }],
value: o.value, }, o.popup),
width: 300 value: o.value,
}), width: 300,
value: o.value };
},
value: o.value,
}); });
var fn = function () { this.combo.on(Combo.EVENT_BEFORE_HIDEVIEW, (...args) => {
var color = self.colorPicker.getValue(); this.fireEvent(ColorChooser.EVENT_CHANGE, ...args);
self.setValue(color);
};
this.combo.on(BI.Combo.EVENT_BEFORE_HIDEVIEW, function () {
self.fireEvent(BI.ColorChooser.EVENT_CHANGE, arguments);
}); });
this.combo.on(BI.Combo.EVENT_AFTER_POPUPVIEW, function () { this.combo.on(Combo.EVENT_AFTER_POPUPVIEW, (...args) => {
self.fireEvent(BI.ColorChooser.EVENT_AFTER_POPUPVIEW, arguments); this.fireEvent(ColorChooser.EVENT_AFTER_POPUPVIEW, ...args);
}); });
}, }
_isRGBColor: function (color) { _isRGBColor(color) {
return BI.isNotEmptyString(color) && color !== "transparent"; return isNotEmptyString(color) && color !== "transparent";
}, }
isViewVisible: function () { isViewVisible() {
return this.combo.isViewVisible(); return this.combo.isViewVisible();
}, }
hideView: function () { hideView() {
this.combo.hideView(); this.combo.hideView();
}, }
showView: function () { showView() {
this.combo.showView(); this.combo.showView();
}, }
setValue: function (color) { setValue(color) {
this.options.value = (color || "").toLowerCase(); this.options.value = (color || "").toLowerCase();
this.combo.setValue(this.options.value); this.combo.setValue(this.options.value);
}, }
getValue: function () { getValue() {
return this.combo.getValue(); return this.combo.getValue();
} }
}); }
BI.ColorChooser.EVENT_CHANGE = "EVENT_CHANGE";
BI.ColorChooser.EVENT_AFTER_POPUPVIEW = "EVENT_AFTER_POPUPVIEW";
BI.shortcut("bi.color_chooser", BI.ColorChooser);

271
src/case/colorchooser/colorchooser.popup.hex.js

@ -1,41 +1,52 @@
import { shortcut, Widget, isNotNull, extend, isNotEmptyString, array2String, map, count, string2Array, filter, isArray, Cache, Queue } from "@/core";
import { Combo } from "@/base";
import { ColorChooserPopup } from "./colorchooser.popup";
import { ColorPickerEditor, ColorPicker } from "./colorpicker";
/** /**
* @author windy * @author windy
* @version 2.0 * @version 2.0
* Created by windy on 2020/11/10 * Created by windy on 2020/11/10
*/ */
BI.HexColorChooserPopup = BI.inherit(BI.Widget, { @shortcut()
export class HexColorChooserPopup extends Widget {
static xtype = "bi.hex_color_chooser_popup";
static EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE";
static EVENT_CHANGE = "EVENT_CHANGE";
props: { props = {
baseCls: "bi-color-chooser-popup", baseCls: "bi-color-chooser-popup",
width: 300, width: 300,
recommendColorsGetter: BI.emptyFn, // 推荐色获取接口 recommendColorsGetter: BI.emptyFn, // 推荐色获取接口
simple: false // 简单模式, popup中没有自动和透明 simple: false, // 简单模式, popup中没有自动和透明
}, }
render: function () { render() {
var self = this, o = this.options; const o = this.options;
var hasRecommendColors = BI.isNotNull(o.recommendColorsGetter()); const hasRecommendColors = isNotNull(o.recommendColorsGetter());
return [{ return [{
type: "bi.vertical", type: "bi.vertical",
items: [{ items: [{
el: { el: {
type: "bi.vertical", type: "bi.vertical",
hgap: 15, hgap: 15,
items: [BI.extend({ items: [extend({
type: o.simple ? "bi.simple_hex_color_picker_editor" : "bi.hex_color_picker_editor", type: o.simple ? "bi.simple_hex_color_picker_editor" : "bi.hex_color_picker_editor",
value: o.value, value: o.value,
height: o.simple ? 36 : 70, height: o.simple ? 36 : 70,
listeners: [{ listeners: [{
eventName: BI.ColorPickerEditor.EVENT_CHANGE, eventName: ColorPickerEditor.EVENT_CHANGE,
action: function () { action: (...args) => {
self.setValue(this.getValue()); this.setValue(this.colorEditor.getValue());
self._dealStoreColors(); this._dealStoreColors();
self.fireEvent(BI.ColorChooserPopup.EVENT_VALUE_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_VALUE_CHANGE, ...args);
} },
}], }],
ref: function (_ref) { ref: _ref => {
self.colorEditor = _ref; this.colorEditor = _ref;
} },
}, o.editor), { }, o.editor), {
el: { el: {
type: "bi.hex_color_picker", type: "bi.hex_color_picker",
@ -44,19 +55,19 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
height: 22, height: 22,
value: o.value, value: o.value,
listeners: [{ listeners: [{
eventName: BI.ColorPicker.EVENT_CHANGE, eventName: ColorPicker.EVENT_CHANGE,
action: function () { action: (...args) => {
self.setValue(this.getValue()[0]); this.setValue(this.storeColors.getValue()[0]);
self._dealStoreColors(); this._dealStoreColors();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_CHANGE, ...args);
} },
}], }],
ref: function (_ref) { ref: _ref => {
self.storeColors = _ref; this.storeColors = _ref;
} },
}, },
tgap: 10, tgap: 10,
height: 22 height: 22,
}, { }, {
el: hasRecommendColors ? { el: hasRecommendColors ? {
type: "bi.vertical", type: "bi.vertical",
@ -64,7 +75,7 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
type: "bi.label", type: "bi.label",
text: BI.i18nText("BI-Basic_Recommend_Color"), text: BI.i18nText("BI-Basic_Recommend_Color"),
textAlign: "left", textAlign: "left",
height: 24 height: 24,
}, { }, {
type: "bi.hex_color_picker", type: "bi.hex_color_picker",
cls: "bi-border-bottom bi-border-right", cls: "bi-border-bottom bi-border-right",
@ -72,27 +83,27 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
height: 22, height: 22,
value: o.value, value: o.value,
listeners: [{ listeners: [{
eventName: BI.ColorPicker.EVENT_CHANGE, eventName: ColorPicker.EVENT_CHANGE,
action: function () { action: (...args) => {
self.setValue(this.getValue()[0]); this.setValue(this.recommendColors.getValue()[0]);
self._dealStoreColors(); this._dealStoreColors();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_CHANGE, ...args);
} },
}], }],
ref: function (_ref) { ref: _ref => {
self.recommendColors = _ref; this.recommendColors = _ref;
} },
}] }],
} : {type: "bi.layout"}, } : { type: "bi.layout" },
tgap: hasRecommendColors ? 10 : 0, tgap: hasRecommendColors ? 10 : 0,
height: hasRecommendColors ? 47 : 0 height: hasRecommendColors ? 47 : 0,
}, { }, {
el: { el: {
type: "bi.layout", type: "bi.layout",
cls: "bi-border-top" cls: "bi-border-top",
}, },
vgap: 10, vgap: 10,
height: 1 height: 1,
}, { }, {
type: "bi.absolute", type: "bi.absolute",
items: [{ items: [{
@ -101,25 +112,25 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
space: true, space: true,
value: o.value, value: o.value,
listeners: [{ listeners: [{
eventName: BI.ColorPicker.EVENT_CHANGE, eventName: ColorPicker.EVENT_CHANGE,
action: function () { action: (...args) => {
self.setValue(this.getValue()[0]); this.setValue(this.colorPicker.getValue()[0]);
self._dealStoreColors(); this._dealStoreColors();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_CHANGE, ...args);
} },
}], }],
ref: function (_ref) { ref: _ref => {
self.colorPicker = _ref; this.colorPicker = _ref;
} },
}, },
top: 0, top: 0,
left: 0, left: 0,
right: 0, right: 0,
bottom: 1 bottom: 1,
}], }],
height: 80 height: 80,
}] }],
} },
}, { }, {
el: { el: {
type: "bi.combo", type: "bi.combo",
@ -133,7 +144,7 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
textAlign: "center", textAlign: "center",
height: 24, height: 24,
textLgap: 10, textLgap: 10,
text: BI.i18nText("BI-Basic_More") + "..." text: `${BI.i18nText("BI-Basic_More")}...`,
}, },
popup: { popup: {
type: "bi.popup_panel", type: "bi.popup_panel",
@ -143,9 +154,9 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
type: "bi.custom_color_chooser", type: "bi.custom_color_chooser",
value: o.value, value: o.value,
editor: o.editor, editor: o.editor,
ref: function (_ref) { ref: _ref => {
self.customColorChooser = _ref; this.customColorChooser = _ref;
} },
}, },
stopPropagation: false, stopPropagation: false,
bgap: -1, bgap: -1,
@ -154,38 +165,41 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
minWidth: 227, minWidth: 227,
listeners: [{ listeners: [{
eventName: BI.PopupPanel.EVENT_CLICK_TOOLBAR_BUTTON, eventName: BI.PopupPanel.EVENT_CLICK_TOOLBAR_BUTTON,
action: function (index) { action: (index, ...args) => {
switch (index) { switch (index) {
case 0: case 0:
self.more.hideView(); this.more.hideView();
break; break;
case 1: case 1: {
var color = self.customColorChooser.getValue(); const color = this.customColorChooser.getValue();
// farbtastic选择器没有透明和自动选项,点击保存不应该设置透明 // farbtastic选择器没有透明和自动选项,点击保存不应该设置透明
if (BI.isNotEmptyString(color)) { if (isNotEmptyString(color)) {
self.setValue(color); this.setValue(color);
self._dealStoreColors(); this._dealStoreColors();
} }
self.more.hideView(); this.more.hideView();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_CHANGE, index, ...args);
break; break;
} }
} default:
}] break;
}
},
}],
}, },
listeners: [{ listeners: [{
eventName: BI.Combo.EVENT_AFTER_POPUPVIEW, eventName: Combo.EVENT_AFTER_POPUPVIEW,
action: function () { action: () => {
self.customColorChooser.setValue(self.getValue()); this.customColorChooser.setValue(this.getValue());
} },
}], }],
ref: function (_ref) { ref: _ref => {
self.more = _ref; this.more = _ref;
} },
}, },
tgap: 10, tgap: 10,
height: 24 height: 24,
}] }],
}, { }, {
type: "bi.absolute", type: "bi.absolute",
items: [{ items: [{
@ -193,89 +207,86 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
type: "bi.layout", type: "bi.layout",
cls: "disable-mask", cls: "disable-mask",
invisible: !o.disabled, invisible: !o.disabled,
ref: function () { ref: () => {
self.mask = this; this.mask = this;
} },
}, },
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
bottom: 0 bottom: 0,
}] }],
}]; }];
}, }
// 这里就实现的不好了,setValue里面有个editor,editor的setValue会检测错误然后出bubble提示 // 这里就实现的不好了,setValue里面有个editor,editor的setValue会检测错误然后出bubble提示
mounted: function () { mounted() {
var o = this.options; const o = this.options;
if (BI.isNotNull(o.value)) { if (isNotNull(o.value)) {
this.setValue(o.value); this.setValue(o.value);
} }
}, }
_setEnable: function (enable) { _setEnable(enable) {
BI.ColorChooserPopup.superclass._setEnable.apply(this, arguments); super._setEnable(...arguments);
this.mask.setVisible(!enable); this.mask.setVisible(!enable);
}, }
_dealStoreColors: function () { _dealStoreColors() {
var color = this.getValue(); const color = this.getValue();
var colors = this._getStoreColors(); const colors = this._getStoreColors();
var que = new BI.Queue(12); const que = new Queue(12);
que.fromArray(colors); que.fromArray(colors);
que.remove(color); que.remove(color);
que.unshift(color); que.unshift(color);
var array = que.toArray(); const array = que.toArray();
BI.Cache.setItem("colors", BI.array2String(array)); Cache.setItem("colors", array2String(array));
this.setStoreColors(array); this.setStoreColors(array);
}, }
_digestStoreColors: function (colors) { _digestStoreColors(colors) {
var items = BI.map(colors.slice(0, 12), function (i, color) { const items = map(colors.slice(0, 12), (i, color) => {
return { return {
value: color value: color,
}; };
}); });
BI.count(colors.length, 12, function (i) { count(colors.length, 12, i => {
items.push({ items.push({
value: "empty", value: "empty",
disabled: true disabled: true,
}); });
}); });
return items; return items;
}, }
_getStoreColors: function () { _getStoreColors() {
var self = this, o = this.options; const o = this.options;
var colorsArray = BI.string2Array(BI.Cache.getItem("colors") || ""); const colorsArray = string2Array(Cache.getItem("colors") || "");
return BI.filter(colorsArray, function (idx, color) {
return o.simple ? self._isRGBColor(color) : true; return filter(colorsArray, (idx, color) => o.simple ? this._isRGBColor(color) : true);
}); }
},
_isRGBColor: function (color) { _isRGBColor(color) {
return BI.isNotEmptyString(color) && color !== "transparent"; return isNotEmptyString(color) && color !== "transparent";
}, }
setStoreColors: function (colors) { setStoreColors(colors) {
if (BI.isArray(colors)) { if (isArray(colors)) {
this.storeColors.populate([this._digestStoreColors(colors)]); this.storeColors.populate([this._digestStoreColors(colors)]);
// BI-66973 选中颜色的同时选中历史 // BI-66973 选中颜色的同时选中历史
this.storeColors.setValue(this.getValue()); this.storeColors.setValue(this.getValue());
} }
}, }
setValue: function (color) { setValue(color) {
this.colorEditor.setValue(color); this.colorEditor.setValue(color);
this.colorPicker.setValue(color); this.colorPicker.setValue(color);
this.storeColors.setValue(color); this.storeColors.setValue(color);
this.recommendColors && this.recommendColors.setValue(color); this.recommendColors && this.recommendColors.setValue(color);
}, }
getValue: function () { getValue() {
return this.colorEditor.getValue(); return this.colorEditor.getValue();
} }
}); }
BI.HexColorChooserPopup.EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE";
BI.HexColorChooserPopup.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.hex_color_chooser_popup", BI.HexColorChooserPopup);

61
src/case/colorchooser/colorchooser.popup.hex.simple.js

@ -1,50 +1,57 @@
import { shortcut, Widget } from "@/core";
import { ColorChooserPopup } from "./colorchooser.popup";
import { SimpleColorChooserPopup } from "./colorchooser.popup.simple";
/** /**
* @author windy * @author windy
* @version 2.0 * @version 2.0
* Created by windy on 2020/11/10 * Created by windy on 2020/11/10
*/ */
BI.SimpleHexColorChooserPopup = BI.inherit(BI.Widget, { @shortcut()
export class SimpleHexColorChooserPopup extends Widget {
static xtype = "bi.simple_hex_color_chooser_popup";
static EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE";
static EVENT_CHANGE = "EVENT_CHANGE";
props: { props = {
baseCls: "bi-color-chooser-popup", baseCls: "bi-color-chooser-popup",
}, }
render() {
const o = this.options;
render: function () {
var self = this, o = this.options;
return { return {
type: "bi.hex_color_chooser_popup", type: "bi.hex_color_chooser_popup",
recommendColorsGetter: o.recommendColorsGetter, recommendColorsGetter: o.recommendColorsGetter,
value: o.value, value: o.value,
simple: true, // 是否有自动 simple: true, // 是否有自动
listeners: [{ listeners: [{
eventName: BI.ColorChooserPopup.EVENT_CHANGE, eventName: ColorChooserPopup.EVENT_CHANGE,
action: function () { action: (...args) => {
self.fireEvent(BI.SimpleColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(SimpleColorChooserPopup.EVENT_CHANGE, ...args);
} },
}, { }, {
eventName: BI.ColorChooserPopup.EVENT_VALUE_CHANGE, eventName: ColorChooserPopup.EVENT_VALUE_CHANGE,
action: function () { action: (...args) => {
self.fireEvent(BI.SimpleColorChooserPopup.EVENT_VALUE_CHANGE, arguments); this.fireEvent(SimpleColorChooserPopup.EVENT_VALUE_CHANGE, ...args);
} },
}], }],
ref: function (_ref) { ref: _ref => {
self.popup = _ref; this.popup = _ref;
} },
} };
}, }
setStoreColors: function (colors) { setStoreColors(colors) {
this.popup.setStoreColors(colors); this.popup.setStoreColors(colors);
}, }
setValue: function (color) { setValue(color) {
this.popup.setValue(color); this.popup.setValue(color);
}, }
getValue: function () { getValue() {
return this.popup.getValue(); return this.popup.getValue();
} }
}); }
BI.SimpleHexColorChooserPopup.EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE";
BI.SimpleHexColorChooserPopup.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.simple_hex_color_chooser_popup", BI.SimpleHexColorChooserPopup);

209
src/case/colorchooser/colorchooser.popup.js

@ -1,67 +1,76 @@
import { shortcut, Widget, createWidget, Cache, string2Array, isNotNull, Queue, array2String, map, count, filter, isNotEmptyString, isArray } from "@/core";
import { Combo } from "@/base";
import { ColorPickerEditor, ColorPicker } from "./colorpicker";
/** /**
* 选色控件 * 选色控件
* *
* Created by GUY on 2015/11/17. * Created by GUY on 2015/11/17.
* @class BI.ColorChooserPopup * @class ColorChooserPopup
* @extends BI.Widget * @extends Widget
*/ */
BI.ColorChooserPopup = BI.inherit(BI.Widget, { @shortcut()
export class ColorChooserPopup extends Widget {
static xtype = "bi.color_chooser_popup";
static EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE";
static EVENT_CHANGE = "EVENT_CHANGE";
props: { props = {
baseCls: "bi-color-chooser-popup", baseCls: "bi-color-chooser-popup",
width: 230, width: 230,
height: 145, height: 145,
simple: false // 简单模式, popup中没有自动和透明 simple: false, // 简单模式, popup中没有自动和透明
}, }
render: function () { render () {
var self = this, o = this.options; const o = this.options;
this.colorEditor = BI.createWidget(o.editor, { this.colorEditor = createWidget(o.editor, {
type: o.simple ? "bi.simple_color_picker_editor" : "bi.color_picker_editor", type: o.simple ? "bi.simple_color_picker_editor" : "bi.color_picker_editor",
value: o.value, value: o.value,
cls: "bi-header-background bi-border-bottom", cls: "bi-header-background bi-border-bottom",
height: 30 height: 30,
}); });
this.colorEditor.on(BI.ColorPickerEditor.EVENT_CHANGE, function () { this.colorEditor.on(ColorPickerEditor.EVENT_CHANGE, (...args) => {
self.setValue(this.getValue()); this.setValue(this.colorEditor.getValue());
self._dealStoreColors(); this._dealStoreColors();
self.fireEvent(BI.ColorChooserPopup.EVENT_VALUE_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_VALUE_CHANGE, ...args);
}); });
this.storeColors = BI.createWidget({ this.storeColors = createWidget({
type: "bi.color_picker", type: "bi.color_picker",
cls: "bi-border-bottom bi-border-right", cls: "bi-border-bottom bi-border-right",
items: [this._digestStoreColors(this._getStoreColors())], items: [this._digestStoreColors(this._getStoreColors())],
width: 210, width: 210,
height: 24, height: 24,
value: o.value value: o.value,
}); });
this.storeColors.on(BI.ColorPicker.EVENT_CHANGE, function () { this.storeColors.on(ColorPicker.EVENT_CHANGE, (...args) => {
self.setValue(this.getValue()[0]); this.setValue(this.storeColors.getValue()[0]);
self._dealStoreColors(); this._dealStoreColors();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_CHANGE, ...args);
}); });
this.colorPicker = BI.createWidget({ this.colorPicker = createWidget({
type: "bi.color_picker", type: "bi.color_picker",
width: 210, width: 210,
height: 50, height: 50,
value: o.value value: o.value,
}); });
this.colorPicker.on(BI.ColorPicker.EVENT_CHANGE, function () { this.colorPicker.on(ColorPicker.EVENT_CHANGE, (...args) => {
self.setValue(this.getValue()[0]); this.setValue(this.colorPicker.getValue()[0]);
self._dealStoreColors(); this._dealStoreColors();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_CHANGE, ...args);
}); });
this.customColorChooser = BI.createWidget({ this.customColorChooser = createWidget({
type: "bi.custom_color_chooser", type: "bi.custom_color_chooser",
editor: o.editor editor: o.editor,
}); });
var panel = BI.createWidget({ const panel = createWidget({
type: "bi.popup_panel", type: "bi.popup_panel",
buttons: [BI.i18nText("BI-Basic_Cancel"), BI.i18nText("BI-Basic_Save")], buttons: [BI.i18nText("BI-Basic_Cancel"), BI.i18nText("BI-Basic_Save")],
title: BI.i18nText("BI-Custom_Color"), title: BI.i18nText("BI-Custom_Color"),
@ -70,10 +79,10 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, {
bgap: -1, bgap: -1,
rgap: 1, rgap: 1,
lgap: 1, lgap: 1,
minWidth: 227 minWidth: 227,
}); });
this.more = BI.createWidget({ this.more = createWidget({
type: "bi.combo", type: "bi.combo",
cls: "bi-border-top", cls: "bi-border-top",
container: null, container: null,
@ -85,25 +94,27 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, {
textAlign: "center", textAlign: "center",
height: 24, height: 24,
textLgap: 10, textLgap: 10,
text: BI.i18nText("BI-Basic_More") + "..." text: `${BI.i18nText("BI-Basic_More")}...`,
}, },
popup: panel popup: panel,
}); });
this.more.on(BI.Combo.EVENT_AFTER_POPUPVIEW, function () { this.more.on(Combo.EVENT_AFTER_POPUPVIEW, () => {
self.customColorChooser.setValue(self.getValue()); this.customColorChooser.setValue(this.getValue());
}); });
panel.on(BI.PopupPanel.EVENT_CLICK_TOOLBAR_BUTTON, function (index) { panel.on(BI.PopupPanel.EVENT_CLICK_TOOLBAR_BUTTON, (index, ...args) => {
switch (index) { switch (index) {
case 0: case 0:
self.more.hideView(); this.more.hideView();
break; break;
case 1: case 1:
self.setValue(self.customColorChooser.getValue()); this.setValue(this.customColorChooser.getValue());
self._dealStoreColors(); this._dealStoreColors();
self.more.hideView(); this.more.hideView();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(ColorChooserPopup.EVENT_CHANGE, index, ...args);
break; break;
default:
break;
} }
}); });
@ -119,10 +130,10 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, {
el: this.storeColors, el: this.storeColors,
left: 10, left: 10,
right: 10, right: 10,
top: 5 top: 5,
}] }],
}, },
height: 29 height: 29,
}, { }, {
el: { el: {
type: "bi.absolute", type: "bi.absolute",
@ -131,107 +142,103 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, {
left: 10, left: 10,
right: 10, right: 10,
top: 5, top: 5,
bottom: 5 bottom: 5,
}] }],
}, },
height: 60 height: 60,
}, { }, {
el: this.more, el: this.more,
height: 24 height: 24,
}] }],
}, },
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
bottom: 0 bottom: 0,
}, { }, {
el: { el: {
type: "bi.layout", type: "bi.layout",
cls: "disable-mask", cls: "disable-mask",
invisible: !o.disabled, invisible: !o.disabled,
ref: function () { ref: () => {
self.mask = this; this.mask = this;
} },
}, },
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
bottom: 0 bottom: 0,
}] }],
}; };
}, }
// 这里就实现的不好了,setValue里面有个editor,editor的setValue会检测错误然后出bubble提示 // 这里就实现的不好了,setValue里面有个editor,editor的setValue会检测错误然后出bubble提示
mounted: function () { mounted () {
var self = this; const o = this.options;
var o = this.options; if (isNotNull(o.value)) {
if (BI.isNotNull(o.value)) {
this.setValue(o.value); this.setValue(o.value);
} }
}, }
_setEnable: function (enable) { _setEnable (enable) {
BI.ColorChooserPopup.superclass._setEnable.apply(this, arguments); super._setEnable(...arguments);
this.mask.setVisible(!enable); this.mask.setVisible(!enable);
}, }
_dealStoreColors: function () { _dealStoreColors () {
var color = this.getValue(); const color = this.getValue();
var colors = this._getStoreColors(); const colors = this._getStoreColors();
var que = new BI.Queue(8); const que = new Queue(8);
que.fromArray(colors); que.fromArray(colors);
que.remove(color); que.remove(color);
que.unshift(color); que.unshift(color);
var array = que.toArray(); const array = que.toArray();
BI.Cache.setItem("colors", BI.array2String(array)); Cache.setItem("colors", array2String(array));
this.setStoreColors(array); this.setStoreColors(array);
}, }
_digestStoreColors: function (colors) { _digestStoreColors (colors) {
var items = BI.map(colors, function (i, color) { const items = map(colors, (i, color) => {
return { return {
value: color value: color,
}; };
}); });
BI.count(colors.length, 8, function (i) { count(colors.length, 8, i => {
items.push({ items.push({
value: "", value: "",
disabled: true disabled: true,
}); });
}); });
return items; return items;
}, }
_getStoreColors: function() { _getStoreColors() {
var self = this, o = this.options; const o = this.options;
var colorsArray = BI.string2Array(BI.Cache.getItem("colors") || ""); const colorsArray = string2Array(Cache.getItem("colors") || "");
return BI.filter(colorsArray, function (idx, color) {
return o.simple ? self._isRGBColor(color) : true; return filter(colorsArray, (idx, color) => o.simple ? this._isRGBColor(color) : true);
}); }
},
_isRGBColor: function (color) { _isRGBColor (color) {
return BI.isNotEmptyString(color) && color !== "transparent"; return isNotEmptyString(color) && color !== "transparent";
}, }
setStoreColors: function (colors) { setStoreColors (colors) {
if (BI.isArray(colors)) { if (isArray(colors)) {
this.storeColors.populate([this._digestStoreColors(colors)]); this.storeColors.populate([this._digestStoreColors(colors)]);
// BI-66973 选中颜色的同时选中历史 // BI-66973 选中颜色的同时选中历史
this.storeColors.setValue(this.getValue()); this.storeColors.setValue(this.getValue());
} }
}, }
setValue: function (color) { setValue (color) {
this.colorEditor.setValue(color); this.colorEditor.setValue(color);
this.colorPicker.setValue(color); this.colorPicker.setValue(color);
this.storeColors.setValue(color); this.storeColors.setValue(color);
}, }
getValue: function () { getValue () {
return this.colorEditor.getValue(); return this.colorEditor.getValue();
} }
}); }
BI.ColorChooserPopup.EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE";
BI.ColorChooserPopup.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.color_chooser_popup", BI.ColorChooserPopup);

61
src/case/colorchooser/colorchooser.popup.simple.js

@ -1,47 +1,52 @@
import { shortcut, Widget, extend, createWidget } from "@/core";
import { ColorChooserPopup } from "./colorchooser.popup";
/** /**
* 选色控件 * 选色控件
* *
* Created by GUY on 2015/11/17. * Created by GUY on 2015/11/17.
* @class BI.SimpleColorChooserPopup * @class SimpleColorChooserPopup
* @extends BI.Widget * @extends Widget
*/ */
BI.SimpleColorChooserPopup = BI.inherit(BI.Widget, { @shortcut()
export class SimpleColorChooserPopup extends Widget {
static xtype = "bi.simple_color_chooser_popup";
static EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE";
static EVENT_CHANGE = "EVENT_CHANGE";
_defaultConfig: function () { _defaultConfig() {
return BI.extend(BI.SimpleColorChooserPopup.superclass._defaultConfig.apply(this, arguments), { return extend(super._defaultConfig(...arguments), {
baseCls: "bi-color-chooser-popup" baseCls: "bi-color-chooser-popup",
}); });
}, }
_init: function () { _init() {
BI.SimpleColorChooserPopup.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options; const { hex, value } = this.options;
this.popup = BI.createWidget({ this.popup = createWidget({
type: o.hex ? "bi.hex_color_chooser_popup" : "bi.color_chooser_popup", type: hex ? "bi.hex_color_chooser_popup" : "bi.color_chooser_popup",
value: o.value, value,
element: this, element: this,
simple: true // 是否有自动 simple: true, // 是否有自动
}); });
this.popup.on(BI.ColorChooserPopup.EVENT_CHANGE, function () { this.popup.on(ColorChooserPopup.EVENT_CHANGE, (...args) => {
self.fireEvent(BI.SimpleColorChooserPopup.EVENT_CHANGE, arguments); this.fireEvent(SimpleColorChooserPopup.EVENT_CHANGE, ...args);
}); });
this.popup.on(BI.ColorChooserPopup.EVENT_VALUE_CHANGE, function () { this.popup.on(ColorChooserPopup.EVENT_VALUE_CHANGE, (...args) => {
self.fireEvent(BI.SimpleColorChooserPopup.EVENT_VALUE_CHANGE, arguments); this.fireEvent(SimpleColorChooserPopup.EVENT_VALUE_CHANGE, ...args);
}); });
}, }
setStoreColors: function (colors) { setStoreColors(colors) {
this.popup.setStoreColors(colors); this.popup.setStoreColors(colors);
}, }
setValue: function (color) { setValue(color) {
this.popup.setValue(color); this.popup.setValue(color);
}, }
getValue: function () { getValue() {
return this.popup.getValue(); return this.popup.getValue();
} }
}); }
BI.SimpleColorChooserPopup.EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE";
BI.SimpleColorChooserPopup.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.simple_color_chooser_popup", BI.SimpleColorChooserPopup);

65
src/case/colorchooser/colorchooser.simple.js

@ -1,24 +1,32 @@
import { shortcut, Widget, extend, createWidget } from "@/core";
import { ColorChooser } from "./colorchooser";
/** /**
* 简单选色控件没有自动和透明 * 简单选色控件没有自动和透明
* *
* Created by GUY on 2015/11/17. * Created by GUY on 2015/11/17.
* @class BI.SimpleColorChooser * @class SimpleColorChooser
* @extends BI.Widget * @extends Widget
*/ */
BI.SimpleColorChooser = BI.inherit(BI.Widget, { @shortcut()
export class SimpleColorChooser extends Widget {
static xtype = "bi.simple_color_chooser";
static EVENT_CHANGE = "EVENT_CHANGE";
static EVENT_AFTER_POPUPVIEW = "EVENT_AFTER_POPUPVIEW";
_defaultConfig: function () { _defaultConfig() {
return BI.extend(BI.SimpleColorChooser.superclass._defaultConfig.apply(this, arguments), { return extend(super._defaultConfig(...arguments), {
baseCls: "bi-simple-color-chooser", baseCls: "bi-simple-color-chooser",
value: "#ffffff" value: "#ffffff",
}); });
}, }
_init: function () { _init() {
BI.SimpleColorChooser.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options; const o = this.options;
this.combo = BI.createWidget({ this.combo = createWidget({
type: "bi.color_chooser", type: "bi.color_chooser",
simple: o.simple, simple: o.simple,
element: this, element: this,
@ -30,36 +38,33 @@ BI.SimpleColorChooser = BI.inherit(BI.Widget, {
popup: { popup: {
type: "bi.simple_hex_color_chooser_popup", type: "bi.simple_hex_color_chooser_popup",
recommendColorsGetter: o.recommendColorsGetter, recommendColorsGetter: o.recommendColorsGetter,
} },
}); });
this.combo.on(BI.ColorChooser.EVENT_CHANGE, function () { this.combo.on(ColorChooser.EVENT_CHANGE, (...args) => {
self.fireEvent(BI.SimpleColorChooser.EVENT_CHANGE, arguments); this.fireEvent(SimpleColorChooser.EVENT_CHANGE, ...args);
}); });
this.combo.on(BI.ColorChooser.EVENT_AFTER_POPUPVIEW, function () { this.combo.on(ColorChooser.EVENT_AFTER_POPUPVIEW, (...args) => {
self.fireEvent(BI.SimpleColorChooser.EVENT_AFTER_POPUPVIEW, arguments); this.fireEvent(SimpleColorChooser.EVENT_AFTER_POPUPVIEW, ...args);
}); });
}, }
isViewVisible: function () { isViewVisible() {
return this.combo.isViewVisible(); return this.combo.isViewVisible();
}, }
hideView: function () { hideView() {
this.combo.hideView(); this.combo.hideView();
}, }
showView: function () { showView() {
this.combo.showView(); this.combo.showView();
}, }
setValue: function (color) { setValue(color) {
this.combo.setValue(color); this.combo.setValue(color);
}, }
getValue: function () { getValue() {
return this.combo.getValue(); return this.combo.getValue();
} }
}); }
BI.SimpleColorChooser.EVENT_CHANGE = "EVENT_CHANGE";
BI.SimpleColorChooser.EVENT_AFTER_POPUPVIEW = "EVENT_AFTER_POPUPVIEW";
BI.shortcut("bi.simple_color_chooser", BI.SimpleColorChooser);

58
src/case/colorchooser/colorchooser.trigger.js

@ -1,36 +1,44 @@
import { shortcut, extend, createWidget, isNotNull } from "@/core";
import { Trigger } from "@/base";
/** /**
* 选色控件 * 选色控件
* *
* Created by GUY on 2015/11/17. * Created by GUY on 2015/11/17.
* @class BI.ColorChooserTrigger * @class ColorChooserTrigger
* @extends BI.Trigger * @extends Trigger
*/ */
BI.ColorChooserTrigger = BI.inherit(BI.Trigger, { @shortcut()
export class ColorChooserTrigger extends Trigger {
static xtype = "bi.color_chooser_trigger";
static EVENT_CHANGE = "EVENT_CHANGE";
_defaultConfig: function (config) { _defaultConfig (config) {
var conf = BI.ColorChooserTrigger.superclass._defaultConfig.apply(this, arguments); const conf = super._defaultConfig(...arguments);
return BI.extend(conf, {
baseCls: (conf.baseCls || "") + " bi-color-chooser-trigger bi-focus-shadow " + (config.simple ? "bi-border-bottom" : "bi-border bi-border-radius"), return extend(conf, {
height: 22 baseCls: `${conf.baseCls || ""} bi-color-chooser-trigger bi-focus-shadow ${config.simple ? "bi-border-bottom" : "bi-border bi-border-radius"}`,
height: 22,
}); });
}, }
_init: function () { _init () {
BI.ColorChooserTrigger.superclass._init.apply(this, arguments); super._init(...arguments);
this.colorContainer = BI.createWidget({ this.colorContainer = createWidget({
type: "bi.layout", type: "bi.layout",
cls: "color-chooser-trigger-content" + (BI.isIE9Below && BI.isIE9Below() ? " hack" : "") cls: "color-chooser-trigger-content" + (BI.isIE9Below && BI.isIE9Below() ? " hack" : "")
}); });
var down = BI.createWidget({ const down = createWidget({
type: "bi.icon_button", type: "bi.icon_button",
disableSelected: true, disableSelected: true,
cls: "icon-combo-down-icon trigger-triangle-font icon-size-12", cls: "icon-combo-down-icon trigger-triangle-font icon-size-12",
width: 12, width: 12,
height: 8 height: 8,
}); });
BI.createWidget({ createWidget({
type: "bi.absolute", type: "bi.absolute",
element: this, element: this,
items: [{ items: [{
@ -38,28 +46,26 @@ BI.ColorChooserTrigger = BI.inherit(BI.Trigger, {
left: 2, left: 2,
right: 2, right: 2,
top: 2, top: 2,
bottom: 2 bottom: 2,
}, { }, {
el: down, el: down,
right: -1, right: -1,
bottom: 1 bottom: 1,
}] }],
}); });
if (BI.isNotNull(this.options.value)) { if (isNotNull(this.options.value)) {
this.setValue(this.options.value); this.setValue(this.options.value);
} }
}, }
setValue: function (color) { setValue (color) {
BI.ColorChooserTrigger.superclass.setValue.apply(this, arguments); super.setValue(...arguments);
if (color === "") { if (color === "") {
this.colorContainer.element.css("background-color", "").removeClass("trans-color-background").addClass("auto-color-background"); this.colorContainer.element.css("background-color", "").removeClass("trans-color-background").addClass("auto-color-background");
} else if (color === "transparent") { } else if (color === "transparent") {
this.colorContainer.element.css("background-color", "").removeClass("auto-color-background").addClass("trans-color-background"); this.colorContainer.element.css("background-color", "").removeClass("auto-color-background").addClass("trans-color-background");
} else { } else {
this.colorContainer.element.css({"background-color": color}).removeClass("auto-color-background").removeClass("trans-color-background"); this.colorContainer.element.css({ "background-color": color }).removeClass("auto-color-background").removeClass("trans-color-background");
} }
} }
}); }
BI.ColorChooserTrigger.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.color_chooser_trigger", BI.ColorChooserTrigger);

73
src/case/colorchooser/colorchooser.trigger.long.js

@ -1,59 +1,66 @@
import { shortcut, extend, createWidget } from "@/core";
import { Trigger } from "@/base";
/** /**
* 选色控件 * 选色控件
* *
* Created by GUY on 2015/11/17. * Created by GUY on 2015/11/17.
* @class BI.LongColorChooserTrigger * @class LongColorChooserTrigger
* @extends BI.Trigger * @extends Trigger
*/ */
BI.LongColorChooserTrigger = BI.inherit(BI.Trigger, { @shortcut()
export class LongColorChooserTrigger extends Trigger {
static xtype = "bi.long_color_chooser_trigger";
static EVENT_CHANGE = "EVENT_CHANGE";
_defaultConfig: function (config) { _defaultConfig (config) {
var conf = BI.LongColorChooserTrigger.superclass._defaultConfig.apply(this, arguments); const conf = super._defaultConfig(...arguments);
return BI.extend(conf, {
baseCls: (conf.baseCls || "") + " bi-color-chooser-trigger bi-focus-shadow " + (config.simple ? "bi-border-bottom" : "bi-border bi-border-radius"), return extend(conf, {
height: 24 baseCls: `${conf.baseCls || ""} bi-color-chooser-trigger bi-focus-shadow ${config.simple ? "bi-border-bottom" : "bi-border bi-border-radius"}`,
height: 24,
}); });
}, }
_init: function () { _init () {
BI.LongColorChooserTrigger.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options; this.colorContainer = createWidget({
this.colorContainer = BI.createWidget({
type: "bi.htape", type: "bi.htape",
cls: "color-chooser-trigger-content", cls: "color-chooser-trigger-content",
items: [{ items: [{
type: "bi.icon_change_button", type: "bi.icon_change_button",
ref: function (_ref) { ref: _ref => {
self.changeIcon = _ref; this.changeIcon = _ref;
}, },
disableSelected: true, disableSelected: true,
iconCls: "auto-color-icon", iconCls: "auto-color-icon",
width: 24, width: 24,
iconWidth: 16, iconWidth: 16,
iconHeight: 16 iconHeight: 16,
}, { }, {
el: { el: {
type: "bi.label", type: "bi.label",
ref: function (_ref) { ref: _ref => {
self.label = _ref; this.label = _ref;
}, },
textAlign: "left", textAlign: "left",
hgap: 5, hgap: 5,
height: 18, height: 18,
text: BI.i18nText("BI-Basic_Auto") text: BI.i18nText("BI-Basic_Auto"),
} },
}] }],
}); });
var down = BI.createWidget({ const down = createWidget({
type: "bi.icon_button", type: "bi.icon_button",
disableSelected: true, disableSelected: true,
cls: "icon-combo-down-icon trigger-triangle-font icon-size-12", cls: "icon-combo-down-icon trigger-triangle-font icon-size-12",
width: 12, width: 12,
height: 8 height: 8,
}); });
BI.createWidget({ createWidget({
type: "bi.absolute", type: "bi.absolute",
element: this, element: this,
items: [{ items: [{
@ -61,20 +68,20 @@ BI.LongColorChooserTrigger = BI.inherit(BI.Trigger, {
left: 2, left: 2,
right: 2, right: 2,
top: 2, top: 2,
bottom: 2 bottom: 2,
}, { }, {
el: down, el: down,
right: 3, right: 3,
bottom: 3 bottom: 3,
}] }],
}); });
if (this.options.value) { if (this.options.value) {
this.setValue(this.options.value); this.setValue(this.options.value);
} }
}, }
setValue: function (color) { setValue (color) {
BI.LongColorChooserTrigger.superclass.setValue.apply(this, arguments); super.setValue(...arguments);
if (color === "") { if (color === "") {
this.colorContainer.element.css("background-color", ""); this.colorContainer.element.css("background-color", "");
this.changeIcon.setVisible(true); this.changeIcon.setVisible(true);
@ -88,11 +95,9 @@ BI.LongColorChooserTrigger = BI.inherit(BI.Trigger, {
this.changeIcon.setIcon("trans-color-icon"); this.changeIcon.setIcon("trans-color-icon");
this.label.setText(BI.i18nText("BI-Transparent_Color")); this.label.setText(BI.i18nText("BI-Transparent_Color"));
} else { } else {
this.colorContainer.element.css({"background-color": color}); this.colorContainer.element.css({ "background-color": color });
this.changeIcon.setVisible(false); this.changeIcon.setVisible(false);
this.label.setVisible(false); this.label.setVisible(false);
} }
} }
}); }
BI.LongColorChooserTrigger.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.long_color_chooser_trigger", BI.LongColorChooserTrigger);

76
src/case/colorchooser/colorpicker/button/button.colorpicker.js

@ -1,66 +1,72 @@
import { shortcut, isNotNull, extend } from "@/core";
import { BasicButton, Maskers } from "@/base";
/** /**
* 简单选色控件按钮 * 简单选色控件按钮
* *
* Created by GUY on 2015/11/16. * Created by GUY on 2015/11/16.
* @class BI.ColorPickerButton * @class ColorPickerButton
* @extends BI.BasicButton * @extends BasicButton
*/ */
BI.ColorPickerButton = BI.inherit(BI.BasicButton, { @shortcut()
export class ColorPickerButton extends BasicButton {
static xtype = "bi.color_picker_button";
static EVENT_CHANGE = "EVENT_CHANGE";
_defaultConfig: function () { _defaultConfig() {
var conf = BI.ColorPickerButton.superclass._defaultConfig.apply(this, arguments); const conf = super._defaultConfig(...arguments);
return BI.extend(conf, {
baseCls: (conf.baseCls || "") + " bi-color-picker-button bi-background bi-border-top bi-border-left" return extend(conf, {
baseCls: `${conf.baseCls || ""} bi-color-picker-button bi-background bi-border-top bi-border-left`,
}); });
}, }
_init: function () { _init() {
BI.ColorPickerButton.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options; const o = this.options;
if (BI.isNotNull(o.value)) { if (isNotNull(o.value)) {
if (o.value === '') { if (o.value === "") {
this.element.addClass("auto-color-no-square-normal-background"); this.element.addClass("auto-color-no-square-normal-background");
} else if (o.value === "transparent") { } else if (o.value === "transparent") {
this.element.addClass("trans-color-background"); this.element.addClass("trans-color-background");
} else { } else {
this.element.css("background-color", o.value); this.element.css("background-color", o.value);
} }
var name = this.getName(); const name = this.getName();
this.element.hover(function () { this.element.hover(() => {
self._createMask(); this._createMask();
if (self.isEnabled()) { if (this.isEnabled()) {
BI.Maskers.show(name); Maskers.show(name);
} }
}, function () { }, () => {
if (!self.isSelected()) { if (!this.isSelected()) {
BI.Maskers.hide(name); Maskers.hide(name);
} }
}); });
} }
}, }
_createMask: function () { _createMask() {
var o = this.options, name = this.getName(); const o = this.options, name = this.getName();
if (this.isEnabled() && !BI.Maskers.has(name)) { if (this.isEnabled() && !Maskers.has(name)) {
var w = BI.Maskers.make(name, this, { const w = Maskers.make(name, this, {
offset: { offset: {
left: -1, left: -1,
top: -1, top: -1,
right: -1, right: -1,
bottom: -1 bottom: -1,
} },
}); });
w.element.addClass("color-picker-button-mask").css("background-color", o.value); w.element.addClass("color-picker-button-mask").css("background-color", o.value);
} }
}, }
setSelected: function (b) { setSelected(b) {
BI.ColorPickerButton.superclass.setSelected.apply(this, arguments); super.setSelected(...arguments);
if (b) { if (b) {
this._createMask(); this._createMask();
} }
BI.Maskers[b ? "show" : "hide"](this.getName()); Maskers[b ? "show" : "hide"](this.getName());
} }
}); }
BI.ColorPickerButton.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.color_picker_button", BI.ColorPickerButton);

46
src/case/colorchooser/colorpicker/button/button.colorshow.js

@ -1,24 +1,32 @@
import { shortcut } from "@/core";
import { BasicButton } from "@/base";
/** /**
* @author windy * @author windy
* @version 2.0 * @version 2.0
* Created by windy on 2021/7/28 * Created by windy on 2021/7/28
*/ */
BI.ColorChooserShowButton = BI.inherit(BI.BasicButton, { @shortcut()
export class ColorChooserShowButton extends BasicButton {
static xtype = "bi.color_picker_show_button";
static EVENT_CHANGE = "EVENT_CHANGE";
props: { props = {
baseCls: 'bi-color-chooser-show-button bi-border bi-list-item-effect bi-border-radius', baseCls: "bi-color-chooser-show-button bi-border bi-list-item-effect bi-border-radius",
}, }
render: function () { render() {
var self = this, o = this.options; const o = this.options;
return { return {
type: 'bi.htape', type: "bi.htape",
items: [ items: [
{ {
el: { el: {
type: "bi.icon_label", type: "bi.icon_label",
ref: function (_ref) { ref: _ref => {
self.icon = _ref; this.icon = _ref;
}, },
iconWidth: 16, iconWidth: 16,
iconHeight: 16, iconHeight: 16,
@ -26,20 +34,18 @@ BI.ColorChooserShowButton = BI.inherit(BI.BasicButton, {
hgap: 20, hgap: 20,
width: 16, width: 16,
}, { }, {
type: 'bi.label', type: "bi.label",
textAlign: 'left', textAlign: "left",
text: o.text, text: o.text,
} }
] ],
}; };
}, }
doClick: function () { doClick() {
BI.ColorChooserShowButton.superclass.doClick.apply(this, arguments); super.doClick(...arguments);
if (this.isValid()) { if (this.isValid()) {
this.fireEvent(BI.ColorChooserShowButton.EVENT_CHANGE, this); this.fireEvent(ColorChooserShowButton.EVENT_CHANGE, this);
} }
}, }
}); }
BI.ColorChooserShowButton.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.color_picker_show_button", BI.ColorChooserShowButton);

2
src/case/colorchooser/colorpicker/button/index.js

@ -0,0 +1,2 @@
export { ColorPickerButton } from "./button.colorpicker";
export { ColorChooserShowButton } from "./button.colorshow";

165
src/case/colorchooser/colorpicker/colorpicker.hex.js

@ -1,166 +1,173 @@
import { shortcut, Widget, extend, each } from "@/core";
import { ButtonGroup } from "@/base";
/** /**
* @author windy * @author windy
* @version 2.0 * @version 2.0
* Created by windy on 2021/7/28 * Created by windy on 2021/7/28
*/ */
BI.HexColorPicker = BI.inherit(BI.Widget, { @shortcut()
export class HexColorPicker extends Widget {
static xtype = "bi.hex_color_picker";
static EVENT_CHANGE = "EVENT_CHANGE";
props: { props = {
baseCls: "bi-hex-color-picker", baseCls: "bi-hex-color-picker",
items: null, items: null,
}, }
_items: [ _items = [
[ [
{ {
"value": "#999999" value: "#999999",
}, },
{ {
"value": "#FFFFFF" value: "#FFFFFF",
}, },
{ {
"value": "#FFE5E5" value: "#FFE5E5",
}, },
{ {
"value": "#FFF1E5" value: "#FFF1E5",
}, },
{ {
"value": "#FFF9E5" value: "#FFF9E5",
}, },
{ {
"value": "#E9F5E9" value: "#E9F5E9",
}, },
{ {
"value": "#EAEEFF" value: "#EAEEFF",
}, },
{ {
"value": "#EFEBF7" value: "#EFEBF7",
}, },
{ {
"value": "#FCE8EF" value: "#FCE8EF",
} }
], ],
[ [
{ {
"value": "#737373" value: "#737373",
}, },
{ {
"value": "#F2F2F2" value: "#F2F2F2",
}, },
{ {
"value": "#FFA6A6" value: "#FFA6A6",
}, },
{ {
"value": "#FFD0A6" value: "#FFD0A6",
}, },
{ {
"value": "#FFEDA6" value: "#FFEDA6",
}, },
{ {
"value": "#B3DCB2" value: "#B3DCB2",
}, },
{ {
"value": "#B9C6FF" value: "#B9C6FF",
}, },
{ {
"value": "#CABAE6" value: "#CABAE6",
}, },
{ {
"value": "#F8B1C9" value: "#F8B1C9",
} }
], ],
[ [
{ {
"value": "#4C4C4C" value: "#4C4C4C",
}, },
{ {
"value": "#D9D9D9" value: "#D9D9D9",
}, },
{ {
"value": "#FF5959" value: "#FF5959",
}, },
{ {
"value": "#FFA759" value: "#FFA759",
}, },
{ {
"value": "#FFDD59" value: "#FFDD59",
}, },
{ {
"value": "#7EBE70" value: "#7EBE70",
}, },
{ {
"value": "#7B95FF" value: "#7B95FF",
}, },
{ {
"value": "#9C7FD0" value: "#9C7FD0",
}, },
{ {
"value": "#F06D99" value: "#F06D99",
} }
], ],
[ [
{ {
"value": "#262626" value: "#262626",
}, },
{ {
"value": "#BFBFBF" value: "#BFBFBF",
}, },
{ {
"value": "#FF0000" value: "#FF0000",
}, },
{ {
"value": "#FF7800" value: "#FF7800",
}, },
{ {
"value": "#FFCB00" value: "#FFCB00",
}, },
{ {
"value": "#259B23" value: "#259B23",
}, },
{ {
"value": "#355CFF" value: "#355CFF",
}, },
{ {
"value": "#673AB7" value: "#673AB7",
}, },
{ {
"value": "#E91E63" value: "#E91E63",
} }
], ],
[ [
{ {
"value": "#000000" value: "#000000",
}, },
{ {
"value": "#A6A6A6" value: "#A6A6A6",
}, },
{ {
"value": "#A80000" value: "#A80000",
}, },
{ {
"value": "#B65600" value: "#B65600",
}, },
{ {
"value": "#CEB000" value: "#CEB000",
}, },
{ {
"value": "#0E550C" value: "#0E550C",
}, },
{ {
"value": "#09269C" value: "#09269C",
}, },
{ {
"value": "#3A1A73" value: "#3A1A73",
}, },
{ {
"value": "#B30072" value: "#B30072",
} }
] ]
], ]
render() {
const o = this.options;
render: function () {
var self = this, o = this.options;
return { return {
type: "bi.button_group", type: "bi.button_group",
items: this._digest(o.items || this._items), items: this._digest(o.items || this._items),
@ -172,52 +179,50 @@ BI.HexColorPicker = BI.inherit(BI.Widget, {
value: o.value, value: o.value,
listeners: [ listeners: [
{ {
eventName: BI.ButtonGroup.EVENT_CHANGE, eventName: ButtonGroup.EVENT_CHANGE,
action: function () { action: (...args) => {
self.fireEvent(BI.HexColorPicker.EVENT_CHANGE, arguments); this.fireEvent(HexColorPicker.EVENT_CHANGE, ...args);
} },
} }
], ],
ref: function (_ref) { ref: _ref => {
self.colors = _ref; this.colors = _ref;
} },
}; };
}, }
_digest: function (items) { _digest(items) {
var o = this.options; const o = this.options;
var blocks = []; const blocks = [];
BI.each(items, function (idx, row) { each(items, (idx, row) => {
var bRow = []; const bRow = [];
BI.each(row, function (idx, item) { each(row, (idx, item) => {
bRow.push(BI.extend({ bRow.push(extend({
type: "bi.color_picker_button", type: "bi.color_picker_button",
once: false, once: false,
cls: o.space ? 'bi-border-right' : '', cls: o.space ? "bi-border-right" : "",
}, item)); }, item));
if (o.space && idx < row.length - 1) { if (o.space && idx < row.length - 1) {
bRow.push({ type: 'bi.layout' }); bRow.push({ type: "bi.layout" });
} }
}); });
blocks.push(bRow); blocks.push(bRow);
}); });
return blocks; return blocks;
}, }
populate: function (items) { populate(items) {
var args = [].slice.call(arguments); const args = [].slice.call(arguments);
args[0] = this._digest(items); args[0] = this._digest(items);
this.colors.populate.apply(this.colors, args); this.colors.populate.apply(this.colors, args);
}, }
setValue: function (color) { setValue(color) {
this.colors.setValue(color); this.colors.setValue(color);
}, }
getValue: function () { getValue() {
return this.colors.getValue(); return this.colors.getValue();
} }
}); }
BI.HexColorPicker.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.hex_color_picker", BI.HexColorPicker);

195
src/case/colorchooser/colorpicker/colorpicker.js

@ -1,190 +1,195 @@
import { shortcut, Widget, extend, createItems, createWidget } from "@/core";
import { ButtonGroup } from "@/base";
/** /**
* 简单选色控件 * 简单选色控件
* *
* Created by GUY on 2015/11/16. * Created by GUY on 2015/11/16.
* @class BI.ColorPicker * @class ColorPicker
* @extends BI.Widget * @extends Widget
*/ */
BI.ColorPicker = BI.inherit(BI.Widget, { @shortcut()
export class ColorPicker extends Widget {
static xtype = "bi.color_picker";
static EVENT_CHANGE = "EVENT_CHANGE";
_defaultConfig: function () { _defaultConfig() {
return BI.extend(BI.ColorPicker.superclass._defaultConfig.apply(this, arguments), { return extend(super._defaultConfig(...arguments), {
baseCls: "bi-color-picker", baseCls: "bi-color-picker",
items: null items: null,
}); });
}, }
_items: [ _items = [
[{ [{
value: "#ffffff" value: "#ffffff",
}, { }, {
value: "#f2f2f2" value: "#f2f2f2",
}, { }, {
value: "#e5e5e5" value: "#e5e5e5",
}, { }, {
value: "#d9d9d9" value: "#d9d9d9",
}, { }, {
value: "#cccccc" value: "#cccccc",
}, { }, {
value: "#bfbfbf" value: "#bfbfbf",
}, { }, {
value: "#b2b2b2" value: "#b2b2b2",
}, { }, {
value: "#a6a6a6" value: "#a6a6a6",
}, { }, {
value: "#999999" value: "#999999",
}, { }, {
value: "#8c8c8c" value: "#8c8c8c",
}, { }, {
value: "#808080" value: "#808080",
}, { }, {
value: "#737373" value: "#737373",
}, { }, {
value: "#666666" value: "#666666",
}, { }, {
value: "#4d4d4d" value: "#4d4d4d",
}, { }, {
value: "#333333" value: "#333333",
}, { }, {
value: "#000000" value: "#000000",
}], }],
[{ [{
value: "#d8b5a6" value: "#d8b5a6",
}, { }, {
value: "#ff9e9a" value: "#ff9e9a",
}, { }, {
value: "#ffc17d" value: "#ffc17d",
}, { }, {
value: "#f5e56b" value: "#f5e56b",
}, { }, {
value: "#d8e698" value: "#d8e698",
}, { }, {
value: "#e0ebaf" value: "#e0ebaf",
}, { }, {
value: "#c3d825" value: "#c3d825",
}, { }, {
value: "#bbe2e7" value: "#bbe2e7",
}, { }, {
value: "#85d3cd" value: "#85d3cd",
}, { }, {
value: "#bde1e6" value: "#bde1e6",
}, { }, {
value: "#a0d8ef" value: "#a0d8ef",
}, { }, {
value: "#89c3eb" value: "#89c3eb",
}, { }, {
value: "#bbc8e6" value: "#bbc8e6",
}, { }, {
value: "#bbbcde" value: "#bbbcde",
}, { }, {
value: "#d6b4cc" value: "#d6b4cc",
}, { }, {
value: "#fbc0d3" value: "#fbc0d3",
}], }],
[{ [{
value: "#bb9581" value: "#bb9581",
}, { }, {
value: "#f37d79" value: "#f37d79",
}, { }, {
value: "#fba74f" value: "#fba74f",
}, { }, {
value: "#ffdb4f" value: "#ffdb4f",
}, { }, {
value: "#c7dc68" value: "#c7dc68",
}, { }, {
value: "#b0ca71" value: "#b0ca71",
}, { }, {
value: "#99ab4e" value: "#99ab4e",
}, { }, {
value: "#84b9cb" value: "#84b9cb",
}, { }, {
value: "#00a3af" value: "#00a3af",
}, { }, {
value: "#2ca9e1" value: "#2ca9e1",
}, { }, {
value: "#0095d9" value: "#0095d9",
}, { }, {
value: "#4c6cb3" value: "#4c6cb3",
}, { }, {
value: "#8491c3" value: "#8491c3",
}, { }, {
value: "#a59aca" value: "#a59aca",
}, { }, {
value: "#cc7eb1" value: "#cc7eb1",
}, { }, {
value: "#e89bb4" value: "#e89bb4",
}], }],
[{ [{
value: "#9d775f" value: "#9d775f",
}, { }, {
value: "#dd4b4b" value: "#dd4b4b",
}, { }, {
value: "#ef8b07" value: "#ef8b07",
}, { }, {
value: "#fcc800" value: "#fcc800",
}, { }, {
value: "#aacf53" value: "#aacf53",
}, { }, {
value: "#82ae46" value: "#82ae46",
}, { }, {
value: "#69821b" value: "#69821b",
}, { }, {
value: "#59b9c6" value: "#59b9c6",
}, { }, {
value: "#2a83a2" value: "#2a83a2",
}, { }, {
value: "#007bbb" value: "#007bbb",
}, { }, {
value: "#19448e" value: "#19448e",
}, { }, {
value: "#274a78" value: "#274a78",
}, { }, {
value: "#4a488e" value: "#4a488e",
}, { }, {
value: "#7058a3" value: "#7058a3",
}, { }, {
value: "#884898" value: "#884898",
}, { }, {
value: "#d47596" value: "#d47596",
}] }]
], ]
_init: function () { _init() {
BI.ColorPicker.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options; const o = this.options;
this.colors = BI.createWidget({ this.colors = createWidget({
type: "bi.button_group", type: "bi.button_group",
element: this, element: this,
items: BI.createItems(o.items || this._items, { items: createItems(o.items || this._items, {
type: "bi.color_picker_button", type: "bi.color_picker_button",
once: false once: false,
}), }),
layouts: [{ layouts: [{
type: "bi.grid" type: "bi.grid",
}], }],
value: o.value value: o.value,
}); });
this.colors.on(BI.ButtonGroup.EVENT_CHANGE, function () { this.colors.on(ButtonGroup.EVENT_CHANGE, (...args) => {
self.fireEvent(BI.ColorPicker.EVENT_CHANGE, arguments); this.fireEvent(ColorPicker.EVENT_CHANGE, ...args);
}); });
}, }
populate: function (items) { populate(items) {
var args = [].slice.call(arguments); const args = [].slice.call(arguments);
args[0] = BI.createItems(items, { args[0] = createItems(items, {
type: "bi.color_picker_button", type: "bi.color_picker_button",
once: false once: false,
}); });
this.colors.populate.apply(this.colors, args); this.colors.populate.apply(this.colors, args);
}, }
setValue: function (color) { setValue(color) {
this.colors.setValue(color); this.colors.setValue(color);
}, }
getValue: function () { getValue() {
return this.colors.getValue(); return this.colors.getValue();
} }
}); }
BI.ColorPicker.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.color_picker", BI.ColorPicker);

242
src/case/colorchooser/colorpicker/editor.colorpicker.hex.js

@ -1,36 +1,37 @@
import { shortcut, Widget, createItems, map, isNumeric, range, extend, isEmptyString, isNull, DOM } from "@/core";
import { ColorPickerEditor } from "./editor.colorpicker";
import { ColorChooserShowButton } from "./button";
const RGB_WIDTH = 32, HEX_WIDTH = 70, HEX_PREFIX_POSITION = 1;
/** /**
* 简单选色控件 * 简单选色控件
* *
* Created by GUY on 2015/11/16. * Created by GUY on 2015/11/16.
* @class BI.ColorPickerEditor * @class HexColorPickerEditor
* @extends BI.Widget * @extends Widget
*/ */
BI.HexColorPickerEditor = BI.inherit(BI.Widget, { @shortcut()
export class HexColorPickerEditor extends Widget {
constants: { static xtype = "bi.hex_color_picker_editor";
RGB_WIDTH: 32,
HEX_WIDTH: 70, static EVENT_CHANGE = "EVENT_CHANGE";
HEX_PREFIX_POSITION: 1
}, props = {
props: {
baseCls: "bi-color-picker-editor", baseCls: "bi-color-picker-editor",
height: 30 height: 30,
}, }
render: function () { render() {
var self = this, o = this.options, c = this.constants;
this.storeValue = {}; this.storeValue = {};
var RGB = BI.createItems([{ text: "R" }, { text: "G" }, { text: "B" }], { const RGB = createItems([{ text: "R" }, { text: "G" }, { text: "B" }], {
type: "bi.label", type: "bi.label",
cls: "color-picker-editor-label", cls: "color-picker-editor-label",
height: 20 height: 20,
}); });
var checker = function (v) { const checker = v => isNumeric(v) && (v | 0) >= 0 && (v | 0) <= 255;
return BI.isNumeric(v) && (v | 0) >= 0 && (v | 0) <= 255; const Ws = map(range(0, 3), () => {
};
var Ws = BI.map(BI.range(0, 3), function () {
return { return {
type: "bi.small_text_editor", type: "bi.small_text_editor",
cls: "color-picker-editor-input bi-border-radius", cls: "color-picker-editor-input bi-border-radius",
@ -38,20 +39,20 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
errorText: BI.i18nText("BI-Color_Picker_Error_Text"), errorText: BI.i18nText("BI-Color_Picker_Error_Text"),
allowBlank: true, allowBlank: true,
value: 255, value: 255,
width: c.RGB_WIDTH, width: RGB_WIDTH,
height: 24, height: 24,
listeners: [ listeners: [
{ {
eventName: BI.TextEditor.EVENT_CHANGE, eventName: BI.TextEditor.EVENT_CHANGE,
action: function () { action: () => {
self._checkEditors(); this._checkEditors();
if (checker(self.storeValue.r) && checker(self.storeValue.g) && checker(self.storeValue.b)) { if (checker(this.storeValue.r) && checker(this.storeValue.g) && checker(this.storeValue.b)) {
self.colorShow.element.css("background-color", self.getValue()); this.colorShow.element.css("background-color", this.getValue());
self.fireEvent(BI.ColorPickerEditor.EVENT_CHANGE); this.fireEvent(ColorPickerEditor.EVENT_CHANGE);
} }
} },
} }
] ],
}; };
}); });
@ -64,8 +65,8 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
tgap: 10, tgap: 10,
items: [ items: [
{ {
type: 'bi.vertical_adapt', type: "bi.vertical_adapt",
columnSize: ["fill", 'fill'], columnSize: ["fill", "fill"],
height: 24, height: 24,
items: [ items: [
{ {
@ -76,16 +77,16 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
text: BI.i18nText("BI-Transparent_Color"), text: BI.i18nText("BI-Transparent_Color"),
listeners: [ listeners: [
{ {
eventName: BI.ColorChooserShowButton.EVENT_CHANGE, eventName: ColorChooserShowButton.EVENT_CHANGE,
action: function () { action: () => {
self.setValue("transparent"); this.setValue("transparent");
self.fireEvent(BI.ColorPickerEditor.EVENT_CHANGE); this.fireEvent(ColorPickerEditor.EVENT_CHANGE);
} },
} }
], ],
ref: function (_ref) { ref: _ref => {
self.transparent = _ref; this.transparent = _ref;
} },
}, { }, {
el: { el: {
type: "bi.color_picker_show_button", type: "bi.color_picker_show_button",
@ -95,24 +96,24 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
text: BI.i18nText("BI-Basic_Auto"), text: BI.i18nText("BI-Basic_Auto"),
listeners: [ listeners: [
{ {
eventName: BI.ColorChooserShowButton.EVENT_CHANGE, eventName: ColorChooserShowButton.EVENT_CHANGE,
action: function () { action: () => {
self.setValue(""); this.setValue("");
self.fireEvent(BI.ColorPickerEditor.EVENT_CHANGE); this.fireEvent(ColorPickerEditor.EVENT_CHANGE);
} },
} }
], ],
ref: function (_ref) { ref: _ref => {
self.none = _ref; this.none = _ref;
} },
}, },
lgap: 10, lgap: 10,
} }
] ],
}, { }, {
el: { el: {
type: "bi.vertical_adapt", type: "bi.vertical_adapt",
columnSize: [22, 10, 'fill', 12, c.RGB_WIDTH, 12, c.RGB_WIDTH, 12, c.RGB_WIDTH], columnSize: [22, 10, "fill", 12, RGB_WIDTH, 12, RGB_WIDTH, 12, RGB_WIDTH],
rgap: 5, rgap: 5,
items: [ items: [
@ -122,107 +123,106 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
cls: "color-picker-editor-display bi-card bi-border", cls: "color-picker-editor-display bi-card bi-border",
height: 22, height: 22,
width: 22, width: 22,
ref: function (_ref) { ref: _ref => {
self.colorShow = _ref; this.colorShow = _ref;
} },
}, },
width: 18 width: 18,
}, { }, {
type: "bi.label", type: "bi.label",
text: "#", text: "#",
width: 10 width: 10,
}, { }, {
type: "bi.small_text_editor", type: "bi.small_text_editor",
ref: function (_ref) { ref: _ref => {
self.hexEditor = _ref; this.hexEditor = _ref;
}, },
cls: "color-picker-editor-input bi-border-radius", cls: "color-picker-editor-input bi-border-radius",
validationChecker: this._hexChecker, validationChecker: this._hexChecker,
allowBlank: true, allowBlank: true,
errorText: BI.i18nText("BI-Color_Picker_Error_Text_Hex"), errorText: BI.i18nText("BI-Color_Picker_Error_Text_Hex"),
width: c.HEX_WIDTH, width: HEX_WIDTH,
height: 24, height: 24,
listeners: [ listeners: [
{ {
eventName: "EVENT_CHANGE", eventName: "EVENT_CHANGE",
action: function () { action: () => {
self._checkHexEditor(); this._checkHexEditor();
if (checker(self.storeValue.r) && checker(self.storeValue.g) && checker(self.storeValue.b)) { if (checker(this.storeValue.r) && checker(this.storeValue.g) && checker(this.storeValue.b)) {
self.colorShow.element.css("background-color", self.getValue()); this.colorShow.element.css("background-color", this.getValue());
self.fireEvent(BI.ColorPickerEditor.EVENT_CHANGE); this.fireEvent(ColorPickerEditor.EVENT_CHANGE);
} }
},
}
} }
] ],
}, RGB[0], { }, RGB[0], {
el: BI.extend(Ws[0], { el: extend(Ws[0], {
ref: function (_ref) { ref: _ref => {
self.R = _ref; this.R = _ref;
} },
}), }),
width: c.RGB_WIDTH width: RGB_WIDTH,
}, RGB[1], { }, RGB[1], {
el: BI.extend(Ws[1], { el: extend(Ws[1], {
ref: function (_ref) { ref: _ref => {
self.G = _ref; this.G = _ref;
} },
}), }),
width: c.RGB_WIDTH width: RGB_WIDTH,
}, RGB[2], { }, RGB[2], {
el: BI.extend(Ws[2], { el: extend(Ws[2], {
ref: function (_ref) { ref: _ref => {
self.B = _ref; this.B = _ref;
} },
}), }),
rgap: -5, rgap: -5,
width: c.RGB_WIDTH width: RGB_WIDTH,
} }
] ],
} },
} }
] ],
}, },
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
bottom: 0 bottom: 0,
} }
] ],
}; };
}, }
_hexChecker: function (v) { _hexChecker(v) {
return /^[0-9a-fA-F]{6}$/.test(v); return /^[0-9a-fA-F]{6}$/.test(v);
}, }
_checkEditors: function () { _checkEditors() {
if (BI.isEmptyString(this.R.getValue())) { if (isEmptyString(this.R.getValue())) {
this.R.setValue(0); this.R.setValue(0);
} }
if (BI.isEmptyString(this.G.getValue())) { if (isEmptyString(this.G.getValue())) {
this.G.setValue(0); this.G.setValue(0);
} }
if (BI.isEmptyString(this.B.getValue())) { if (isEmptyString(this.B.getValue())) {
this.B.setValue(0); this.B.setValue(0);
} }
this.storeValue = { this.storeValue = {
r: this.R.getValue() || 0, r: this.R.getValue() || 0,
g: this.G.getValue() || 0, g: this.G.getValue() || 0,
b: this.B.getValue() || 0 b: this.B.getValue() || 0,
}; };
this.hexEditor.setValue(this.getValue().slice(this.constants.HEX_PREFIX_POSITION)); this.hexEditor.setValue(this.getValue().slice(HEX_PREFIX_POSITION));
}, }
_isEmptyRGB: function () { _isEmptyRGB() {
return BI.isEmptyString(this.storeValue.r) && BI.isEmptyString(this.storeValue.g) && BI.isEmptyString(this.storeValue.b); return isEmptyString(this.storeValue.r) && isEmptyString(this.storeValue.g) && isEmptyString(this.storeValue.b);
}, }
_checkHexEditor: function () { _checkHexEditor() {
if (BI.isEmptyString(this.hexEditor.getValue())) { if (isEmptyString(this.hexEditor.getValue())) {
this.hexEditor.setValue("000000"); this.hexEditor.setValue("000000");
} }
var json = BI.DOM.rgb2json(BI.DOM.hex2rgb("#" + this.hexEditor.getValue())); const json = DOM.rgb2json(DOM.hex2rgb(`#${this.hexEditor.getValue()}`));
this.storeValue = { this.storeValue = {
r: json.r || 0, r: json.r || 0,
g: json.g || 0, g: json.g || 0,
@ -231,9 +231,9 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
this.R.setValue(this.storeValue.r); this.R.setValue(this.storeValue.r);
this.G.setValue(this.storeValue.g); this.G.setValue(this.storeValue.g);
this.B.setValue(this.storeValue.b); this.B.setValue(this.storeValue.b);
}, }
_showPreColor: function (color) { _showPreColor(color) {
if (color === "") { if (color === "") {
this.colorShow.element.css("background-color", "").removeClass("trans-color-background").addClass("auto-color-square-normal-background"); this.colorShow.element.css("background-color", "").removeClass("trans-color-background").addClass("auto-color-square-normal-background");
} else if (color === "transparent") { } else if (color === "transparent") {
@ -241,18 +241,18 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
} else { } else {
this.colorShow.element.css({ "background-color": color }).removeClass("auto-color-square-normal-background").removeClass("trans-color-background"); this.colorShow.element.css({ "background-color": color }).removeClass("auto-color-square-normal-background").removeClass("trans-color-background");
} }
}, }
_setEnable: function (enable) { _setEnable(enable) {
BI.ColorPickerEditor.superclass._setEnable.apply(this, arguments); super._setEnable(...arguments);
if (enable === true) { if (enable === true) {
this.element.removeClass("base-disabled disabled"); this.element.removeClass("base-disabled disabled");
} else if (enable === false) { } else if (enable === false) {
this.element.addClass("base-disabled disabled"); this.element.addClass("base-disabled disabled");
} }
}, }
setValue: function (color) { setValue(color) {
if (color === "transparent") { if (color === "transparent") {
this.transparent.setSelected(true); this.transparent.setSelected(true);
this.none.setSelected(false); this.none.setSelected(false);
@ -264,8 +264,9 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
this.storeValue = { this.storeValue = {
r: "", r: "",
g: "", g: "",
b: "" b: "",
}; };
return; return;
} }
if (!color) { if (!color) {
@ -276,28 +277,27 @@ BI.HexColorPickerEditor = BI.inherit(BI.Widget, {
} }
this.transparent.setSelected(false); this.transparent.setSelected(false);
this._showPreColor(color); this._showPreColor(color);
var json = BI.DOM.rgb2json(BI.DOM.hex2rgb(color)); const json = DOM.rgb2json(DOM.hex2rgb(color));
this.storeValue = { this.storeValue = {
r: BI.isNull(json.r) ? "" : json.r, r: isNull(json.r) ? "" : json.r,
g: BI.isNull(json.g) ? "" : json.g, g: isNull(json.g) ? "" : json.g,
b: BI.isNull(json.b) ? "" : json.b b: isNull(json.b) ? "" : json.b,
}; };
this.R.setValue(this.storeValue.r); this.R.setValue(this.storeValue.r);
this.G.setValue(this.storeValue.g); this.G.setValue(this.storeValue.g);
this.B.setValue(this.storeValue.b); this.B.setValue(this.storeValue.b);
this.hexEditor.setValue(color.slice(this.constants.HEX_PREFIX_POSITION)); this.hexEditor.setValue(color.slice(HEX_PREFIX_POSITION));
}, }
getValue: function () { getValue() {
if (this._isEmptyRGB() && this.transparent.isSelected()) { if (this._isEmptyRGB() && this.transparent.isSelected()) {
return "transparent"; return "transparent";
} }
return BI.DOM.rgb2hex(BI.DOM.json2rgb({
return DOM.rgb2hex(DOM.json2rgb({
r: this.storeValue.r, r: this.storeValue.r,
g: this.storeValue.g, g: this.storeValue.g,
b: this.storeValue.b b: this.storeValue.b,
})); }));
} }
}); }
BI.HexColorPickerEditor.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.hex_color_picker_editor", BI.HexColorPickerEditor);

168
src/case/colorchooser/colorpicker/editor.colorpicker.hex.simple.js

@ -1,34 +1,34 @@
import { shortcut, Widget, extend, isEmptyObject, createItems, isNull, isNumeric, map, isEmptyString, range, DOM } from "@/core";
import { SimpleColorPickerEditor } from "./editor.colorpicker.simple";
import { ColorPickerEditor } from "./editor.colorpicker";
const RGB_WIDTH = 32, HEX_WIDTH = 70, HEX_PREFIX_POSITION = 1;
/** /**
* @author windy * @author windy
* @version 2.0 * @version 2.0
* Created by windy on 2020/11/10 * Created by windy on 2020/11/10
*/ */
BI.SimpleHexColorPickerEditor = BI.inherit(BI.Widget, { @shortcut()
export class SimpleHexColorPickerEditor extends Widget {
static xtype = "bi.simple_hex_color_picker_editor";
constants: { static EVENT_CHANGE = "EVENT_CHANGE";
RGB_WIDTH: 32,
HEX_WIDTH: 70,
HEX_PREFIX_POSITION: 1
},
props: { props = {
baseCls: "bi-color-picker-editor", baseCls: "bi-color-picker-editor",
height: 36 height: 36,
}, }
render: function () {
var self = this, o = this.options, c = this.constants;
var RGB = BI.createItems([{ text: "R" }, { text: "G" }, { text: "B" }], { render () {
const RGB = createItems([{ text: "R" }, { text: "G" }, { text: "B" }], {
type: "bi.label", type: "bi.label",
cls: "color-picker-editor-label", cls: "color-picker-editor-label",
height: 20 height: 20,
}); });
var checker = function (v) { const checker = v => isNumeric(v) && (v | 0) >= 0 && (v | 0) <= 255;
return BI.isNumeric(v) && (v | 0) >= 0 && (v | 0) <= 255; const Ws = map(range(0, 3), () => {
};
var Ws = BI.map(BI.range(0, 3), function () {
return { return {
type: "bi.small_text_editor", type: "bi.small_text_editor",
cls: "color-picker-editor-input bi-border-radius", cls: "color-picker-editor-input bi-border-radius",
@ -36,20 +36,20 @@ BI.SimpleHexColorPickerEditor = BI.inherit(BI.Widget, {
errorText: BI.i18nText("BI-Color_Picker_Error_Text"), errorText: BI.i18nText("BI-Color_Picker_Error_Text"),
allowBlank: true, allowBlank: true,
value: 255, value: 255,
width: c.RGB_WIDTH, width: RGB_WIDTH,
height: 24, height: 24,
listeners: [ listeners: [
{ {
eventName: BI.TextEditor.EVENT_CHANGE, eventName: BI.TextEditor.EVENT_CHANGE,
action: function () { action: () => {
self._checkEditors(); this._checkEditors();
if (self.R.isValid() && self.G.isValid() && self.B.isValid()) { if (this.R.isValid() && this.G.isValid() && this.B.isValid()) {
self.colorShow.element.css("background-color", self.getValue()); this.colorShow.element.css("background-color", this.getValue());
self.fireEvent(BI.SimpleColorPickerEditor.EVENT_CHANGE); this.fireEvent(SimpleColorPickerEditor.EVENT_CHANGE);
} }
} },
} }
] ],
}; };
}); });
@ -61,7 +61,7 @@ BI.SimpleHexColorPickerEditor = BI.inherit(BI.Widget, {
el: { el: {
type: "bi.vertical_adapt", type: "bi.vertical_adapt",
rgap: 5, rgap: 5,
columnSize: [22, 10, 'fill', 12, c.RGB_WIDTH, 12, c.RGB_WIDTH, 12, c.RGB_WIDTH], columnSize: [22, 10, "fill", 12, RGB_WIDTH, 12, RGB_WIDTH, 12, RGB_WIDTH],
items: [ items: [
{ {
el: { el: {
@ -69,91 +69,91 @@ BI.SimpleHexColorPickerEditor = BI.inherit(BI.Widget, {
cls: "color-picker-editor-display bi-card bi-border", cls: "color-picker-editor-display bi-card bi-border",
height: 22, height: 22,
width: 22, width: 22,
ref: function (_ref) { ref: _ref => {
self.colorShow = _ref; this.colorShow = _ref;
} },
}, },
width: 18, width: 18,
}, { }, {
type: "bi.label", type: "bi.label",
text: "#", text: "#",
width: 10 width: 10,
}, { }, {
type: "bi.small_text_editor", type: "bi.small_text_editor",
ref: function (_ref) { ref: _ref => {
self.hexEditor = _ref; this.hexEditor = _ref;
}, },
cls: "color-picker-editor-input bi-border-radius", cls: "color-picker-editor-input bi-border-radius",
validationChecker: this._hexChecker, validationChecker: this._hexChecker,
allowBlank: true, allowBlank: true,
errorText: BI.i18nText("BI-Color_Picker_Error_Text_Hex"), errorText: BI.i18nText("BI-Color_Picker_Error_Text_Hex"),
width: c.HEX_WIDTH, width: HEX_WIDTH,
height: 24, height: 24,
listeners: [ listeners: [
{ {
eventName: "EVENT_CHANGE", eventName: "EVENT_CHANGE",
action: function () { action: () => {
self._checkHexEditor(); this._checkHexEditor();
if (checker(self.storeValue.r) && checker(self.storeValue.g) && checker(self.storeValue.b)) { if (checker(this.storeValue.r) && checker(this.storeValue.g) && checker(this.storeValue.b)) {
self.colorShow.element.css("background-color", self.getValue()); this.colorShow.element.css("background-color", this.getValue());
self.fireEvent(BI.ColorPickerEditor.EVENT_CHANGE); this.fireEvent(ColorPickerEditor.EVENT_CHANGE);
} }
} },
} }
] ],
}, RGB[0], { }, RGB[0], {
el: BI.extend(Ws[0], { el: extend(Ws[0], {
ref: function (_ref) { ref: _ref => {
self.R = _ref; this.R = _ref;
} },
}), }),
width: c.RGB_WIDTH width: RGB_WIDTH,
}, RGB[1], { }, RGB[1], {
el: BI.extend(Ws[1], { el: extend(Ws[1], {
ref: function (_ref) { ref: _ref => {
self.G = _ref; this.G = _ref;
} },
}), }),
width: c.RGB_WIDTH width: RGB_WIDTH,
}, RGB[2], { }, RGB[2], {
el: BI.extend(Ws[2], { el: extend(Ws[2], {
ref: function (_ref) { ref: _ref => {
self.B = _ref; this.B = _ref;
} },
}), }),
rgap: -5, rgap: -5,
width: c.RGB_WIDTH width: RGB_WIDTH,
} }
] ],
} },
} }
] ],
}; };
}, }
_hexChecker: function (v) { _hexChecker (v) {
return /^[0-9a-fA-F]{6}$/.test(v); return /^[0-9a-fA-F]{6}$/.test(v);
}, }
_checkEditors: function () { _checkEditors () {
if (BI.isEmptyString(this.R.getValue())) { if (isEmptyString(this.R.getValue())) {
this.R.setValue(0); this.R.setValue(0);
} }
if (BI.isEmptyString(this.G.getValue())) { if (isEmptyString(this.G.getValue())) {
this.G.setValue(0); this.G.setValue(0);
} }
if (BI.isEmptyString(this.B.getValue())) { if (isEmptyString(this.B.getValue())) {
this.B.setValue(0); this.B.setValue(0);
} }
this.hexEditor.setValue(this.getValue().slice(this.constants.HEX_PREFIX_POSITION)); this.hexEditor.setValue(this.getValue().slice(HEX_PREFIX_POSITION));
}, }
_checkHexEditor: function () { _checkHexEditor () {
if (BI.isEmptyString(this.hexEditor.getValue())) { if (isEmptyString(this.hexEditor.getValue())) {
this.hexEditor.setValue("000000"); this.hexEditor.setValue("000000");
} }
var json = BI.DOM.rgb2json(BI.DOM.hex2rgb("#" + this.hexEditor.getValue())); const json = DOM.rgb2json(DOM.hex2rgb(`#${this.hexEditor.getValue()}`));
this.storeValue = { this.storeValue = {
r: json.r || 0, r: json.r || 0,
g: json.g || 0, g: json.g || 0,
@ -162,24 +162,22 @@ BI.SimpleHexColorPickerEditor = BI.inherit(BI.Widget, {
this.R.setValue(this.storeValue.r); this.R.setValue(this.storeValue.r);
this.G.setValue(this.storeValue.g); this.G.setValue(this.storeValue.g);
this.B.setValue(this.storeValue.b); this.B.setValue(this.storeValue.b);
}, }
setValue: function (color) { setValue (color) {
this.colorShow.element.css({ "background-color": color }); this.colorShow.element.css({ "background-color": color });
var json = BI.DOM.rgb2json(BI.DOM.hex2rgb(color)); const json = DOM.rgb2json(DOM.hex2rgb(color));
this.R.setValue(BI.isNull(json.r) ? "" : json.r); this.R.setValue(isNull(json.r) ? "" : json.r);
this.G.setValue(BI.isNull(json.g) ? "" : json.g); this.G.setValue(isNull(json.g) ? "" : json.g);
this.B.setValue(BI.isNull(json.b) ? "" : json.b); this.B.setValue(isNull(json.b) ? "" : json.b);
this.hexEditor.setValue(BI.isEmptyObject(json) ? "" : color.slice(this.constants.HEX_PREFIX_POSITION)); this.hexEditor.setValue(isEmptyObject(json) ? "" : color.slice(HEX_PREFIX_POSITION));
}, }
getValue: function () { getValue () {
return BI.DOM.rgb2hex(BI.DOM.json2rgb({ return DOM.rgb2hex(DOM.json2rgb({
r: this.R.getValue(), r: this.R.getValue(),
g: this.G.getValue(), g: this.G.getValue(),
b: this.B.getValue() b: this.B.getValue(),
})); }));
} }
}); }
BI.SimpleHexColorPickerEditor.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.simple_hex_color_picker_editor", BI.SimpleHexColorPickerEditor);

166
src/case/colorchooser/colorpicker/editor.colorpicker.js

@ -1,60 +1,62 @@
import { shortcut, Widget, extend, createWidgets, createItems, createWidget, each, isEmptyString, isNumeric, isNull, DOM } from "@/core";
import { IconButton } from "@/base";
const RGB_WIDTH = 32;
/** /**
* 简单选色控件 * 简单选色控件
* *
* Created by GUY on 2015/11/16. * Created by GUY on 2015/11/16.
* @class BI.ColorPickerEditor * @class ColorPickerEditor
* @extends BI.Widget * @extends Widget
*/ */
BI.ColorPickerEditor = BI.inherit(BI.Widget, { @shortcut()
export class ColorPickerEditor extends Widget {
static xtype = "bi.color_picker_editor";
constants: { static EVENT_CHANGE = "EVENT_CHANGE";
RGB_WIDTH: 32
},
_defaultConfig: function () { _defaultConfig () {
return BI.extend(BI.ColorPickerEditor.superclass._defaultConfig.apply(this, arguments), { return extend(super._defaultConfig(...arguments), {
baseCls: "bi-color-picker-editor", baseCls: "bi-color-picker-editor",
// width: 200, // width: 200,
height: 30 height: 30,
}); });
}, }
_init: function () { _init () {
BI.ColorPickerEditor.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options, c = this.constants;
this.storeValue = {}; this.storeValue = {};
this.colorShow = BI.createWidget({ this.colorShow = createWidget({
type: "bi.layout", type: "bi.layout",
cls: "color-picker-editor-display bi-card bi-border", cls: "color-picker-editor-display bi-card bi-border",
height: 16, height: 16,
width: 16 width: 16,
}); });
var RGB = BI.createWidgets(BI.createItems([{ text: "R" }, { text: "G" }, { text: "B" }], { const RGB = createWidgets(createItems([{ text: "R" }, { text: "G" }, { text: "B" }], {
type: "bi.label", type: "bi.label",
cls: "color-picker-editor-label", cls: "color-picker-editor-label",
width: 20, width: 20,
height: 20 height: 20,
})); }));
var checker = function (v) { const checker = v => isNumeric(v) && (v | 0) >= 0 && (v | 0) <= 255;
return BI.isNumeric(v) && (v | 0) >= 0 && (v | 0) <= 255; const Ws = createWidgets([{}, {}, {}], {
};
var Ws = BI.createWidgets([{}, {}, {}], {
type: "bi.small_text_editor", type: "bi.small_text_editor",
cls: "color-picker-editor-input bi-border-radius", cls: "color-picker-editor-input bi-border-radius",
validationChecker: checker, validationChecker: checker,
errorText: BI.i18nText("BI-Color_Picker_Error_Text"), errorText: BI.i18nText("BI-Color_Picker_Error_Text"),
allowBlank: true, allowBlank: true,
value: 255, value: 255,
width: c.RGB_WIDTH, width: RGB_WIDTH,
height: 20 height: 20,
}); });
BI.each(Ws, function (i, w) { each(Ws, (i, w) => {
w.on(BI.TextEditor.EVENT_CHANGE, function () { w.on(BI.TextEditor.EVENT_CHANGE, () => {
self._checkEditors(); this._checkEditors();
if (checker(self.storeValue.r) && checker(self.storeValue.g) && checker(self.storeValue.b)) { if (checker(this.storeValue.r) && checker(this.storeValue.g) && checker(this.storeValue.b)) {
self.colorShow.element.css("background-color", self.getValue()); this.colorShow.element.css("background-color", this.getValue());
self.fireEvent(BI.ColorPickerEditor.EVENT_CHANGE); this.fireEvent(ColorPickerEditor.EVENT_CHANGE);
} }
}); });
}); });
@ -62,37 +64,37 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
this.G = Ws[1]; this.G = Ws[1];
this.B = Ws[2]; this.B = Ws[2];
this.none = BI.createWidget({ this.none = createWidget({
type: "bi.icon_button", type: "bi.icon_button",
cls: "auto-color-icon", cls: "auto-color-icon",
width: 16, width: 16,
height: 16, height: 16,
iconWidth: 16, iconWidth: 16,
iconHeight: 16, iconHeight: 16,
title: BI.i18nText("BI-Basic_Auto") title: BI.i18nText("BI-Basic_Auto"),
}); });
this.none.on(BI.IconButton.EVENT_CHANGE, function () { this.none.on(IconButton.EVENT_CHANGE, () => {
var value = self.getValue(); const value = this.getValue();
self.setValue(""); this.setValue("");
(value !== "") && self.fireEvent(BI.ColorPickerEditor.EVENT_CHANGE); (value !== "") && this.fireEvent(ColorPickerEditor.EVENT_CHANGE);
}); });
this.transparent = BI.createWidget({ this.transparent = createWidget({
type: "bi.icon_button", type: "bi.icon_button",
cls: "trans-color-icon", cls: "trans-color-icon",
width: 16, width: 16,
height: 16, height: 16,
iconWidth: 16, iconWidth: 16,
iconHeight: 16, iconHeight: 16,
title: BI.i18nText("BI-Transparent_Color") title: BI.i18nText("BI-Transparent_Color"),
}); });
this.transparent.on(BI.IconButton.EVENT_CHANGE, function () { this.transparent.on(IconButton.EVENT_CHANGE, () => {
var value = self.getValue(); const value = this.getValue();
self.setValue("transparent"); this.setValue("transparent");
(value !== "transparent") && self.fireEvent(BI.ColorPickerEditor.EVENT_CHANGE); (value !== "transparent") && this.fireEvent(ColorPickerEditor.EVENT_CHANGE);
}); });
BI.createWidget({ createWidget({
type: "bi.absolute", type: "bi.absolute",
element: this, element: this,
items: [ items: [
@ -102,67 +104,67 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
items: [ items: [
{ {
el: this.colorShow, el: this.colorShow,
width: 16 width: 16,
}, { }, {
el: RGB[0], el: RGB[0],
width: 20 width: 20,
}, { }, {
el: this.R, el: this.R,
width: c.RGB_WIDTH width: RGB_WIDTH,
}, { }, {
el: RGB[1], el: RGB[1],
width: 20 width: 20,
}, { }, {
el: this.G, el: this.G,
width: c.RGB_WIDTH width: RGB_WIDTH,
}, { }, {
el: RGB[2], el: RGB[2],
width: 20 width: 20,
}, { }, {
el: this.B, el: this.B,
width: c.RGB_WIDTH width: RGB_WIDTH,
}, { }, {
el: this.transparent, el: this.transparent,
width: 16, width: 16,
lgap: 5 lgap: 5,
}, { }, {
el: this.none, el: this.none,
width: 16, width: 16,
lgap: 5 lgap: 5,
} }
] ],
}, },
left: 10, left: 10,
right: 10, right: 10,
top: 0, top: 0,
bottom: 0 bottom: 0,
} }
] ],
}); });
}, }
_checkEditors: function () { _checkEditors () {
if (BI.isEmptyString(this.R.getValue())) { if (isEmptyString(this.R.getValue())) {
this.R.setValue(0); this.R.setValue(0);
} }
if (BI.isEmptyString(this.G.getValue())) { if (isEmptyString(this.G.getValue())) {
this.G.setValue(0); this.G.setValue(0);
} }
if (BI.isEmptyString(this.B.getValue())) { if (isEmptyString(this.B.getValue())) {
this.B.setValue(0); this.B.setValue(0);
} }
this.storeValue = { this.storeValue = {
r: this.R.getValue() || 0, r: this.R.getValue() || 0,
g: this.G.getValue() || 0, g: this.G.getValue() || 0,
b: this.B.getValue() || 0 b: this.B.getValue() || 0,
}; };
}, }
_isEmptyRGB: function () { _isEmptyRGB () {
return BI.isEmptyString(this.storeValue.r) && BI.isEmptyString(this.storeValue.g) && BI.isEmptyString(this.storeValue.b); return isEmptyString(this.storeValue.r) && isEmptyString(this.storeValue.g) && isEmptyString(this.storeValue.b);
}, }
_showPreColor: function (color) { _showPreColor (color) {
if (color === "") { if (color === "") {
this.colorShow.element.css("background-color", "").removeClass("trans-color-background").addClass("auto-color-normal-background"); this.colorShow.element.css("background-color", "").removeClass("trans-color-background").addClass("auto-color-normal-background");
} else if (color === "transparent") { } else if (color === "transparent") {
@ -170,18 +172,18 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
} else { } else {
this.colorShow.element.css({ "background-color": color }).removeClass("auto-color-normal-background").removeClass("trans-color-background"); this.colorShow.element.css({ "background-color": color }).removeClass("auto-color-normal-background").removeClass("trans-color-background");
} }
}, }
_setEnable: function (enable) { _setEnable (enable) {
BI.ColorPickerEditor.superclass._setEnable.apply(this, arguments); super._setEnable(...arguments);
if (enable === true) { if (enable === true) {
this.element.removeClass("base-disabled disabled"); this.element.removeClass("base-disabled disabled");
} else if (enable === false) { } else if (enable === false) {
this.element.addClass("base-disabled disabled"); this.element.addClass("base-disabled disabled");
} }
}, }
setValue: function (color) { setValue (color) {
if (color === "transparent") { if (color === "transparent") {
this.transparent.setSelected(true); this.transparent.setSelected(true);
this.none.setSelected(false); this.none.setSelected(false);
@ -192,8 +194,9 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
this.storeValue = { this.storeValue = {
r: "", r: "",
g: "", g: "",
b: "" b: "",
}; };
return; return;
} }
if (!color) { if (!color) {
@ -204,27 +207,26 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
} }
this.transparent.setSelected(false); this.transparent.setSelected(false);
this._showPreColor(color); this._showPreColor(color);
var json = BI.DOM.rgb2json(BI.DOM.hex2rgb(color)); const json = DOM.rgb2json(DOM.hex2rgb(color));
this.storeValue = { this.storeValue = {
r: BI.isNull(json.r) ? "" : json.r, r: isNull(json.r) ? "" : json.r,
g: BI.isNull(json.g) ? "" : json.g, g: isNull(json.g) ? "" : json.g,
b: BI.isNull(json.b) ? "" : json.b b: isNull(json.b) ? "" : json.b,
}; };
this.R.setValue(this.storeValue.r); this.R.setValue(this.storeValue.r);
this.G.setValue(this.storeValue.g); this.G.setValue(this.storeValue.g);
this.B.setValue(this.storeValue.b); this.B.setValue(this.storeValue.b);
}, }
getValue: function () { getValue() {
if (this._isEmptyRGB() && this.transparent.isSelected()) { if (this._isEmptyRGB() && this.transparent.isSelected()) {
return "transparent"; return "transparent";
} }
return BI.DOM.rgb2hex(BI.DOM.json2rgb({
return DOM.rgb2hex(DOM.json2rgb({
r: this.storeValue.r, r: this.storeValue.r,
g: this.storeValue.g, g: this.storeValue.g,
b: this.storeValue.b b: this.storeValue.b,
})); }));
} }
}); }
BI.ColorPickerEditor.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.color_picker_editor", BI.ColorPickerEditor);

111
src/case/colorchooser/colorpicker/editor.colorpicker.simple.js

@ -1,59 +1,60 @@
import { shortcut, Widget, extend, isNull, createWidget, isNumeric, createItems, createWidgets, each, isEmptyString, DOM } from "@/core";
const RGB_WIDTH = 32;
/** /**
* 简单选色控件 * 简单选色控件
* *
* Created by GUY on 2015/11/16. * Created by GUY on 2015/11/16.
* @class BI.SimpleColorPickerEditor * @class SimpleColorPickerEditor
* @extends BI.Widget * @extends Widget
*/ */
BI.SimpleColorPickerEditor = BI.inherit(BI.Widget, { @shortcut()
export class SimpleColorPickerEditor extends Widget {
static xtype = "bi.simple_color_picker_editor";
constants: { static EVENT_CHANGE = "EVENT_CHANGE";
RGB_WIDTH: 32
},
_defaultConfig: function () { _defaultConfig() {
return BI.extend(BI.SimpleColorPickerEditor.superclass._defaultConfig.apply(this, arguments), { return extend(super._defaultConfig(...arguments), {
baseCls: "bi-color-picker-editor", baseCls: "bi-color-picker-editor",
// width: 200, // width: 200,
height: 30 height: 30,
}); });
}, }
_init: function () { _init() {
BI.SimpleColorPickerEditor.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options, c = this.constants; this.colorShow = createWidget({
this.colorShow = BI.createWidget({
type: "bi.layout", type: "bi.layout",
cls: "color-picker-editor-display bi-card bi-border", cls: "color-picker-editor-display bi-card bi-border",
height: 16, height: 16,
width: 16 width: 16,
}); });
var RGB = BI.createWidgets(BI.createItems([{ text: "R" }, { text: "G" }, { text: "B" }], { const RGB = createWidgets(createItems([{ text: "R" }, { text: "G" }, { text: "B" }], {
type: "bi.label", type: "bi.label",
cls: "color-picker-editor-label", cls: "color-picker-editor-label",
width: 20, width: 20,
height: 20 height: 20,
})); }));
var checker = function (v) { const checker = v => isNumeric(v) && (v | 0) >= 0 && (v | 0) <= 255;
return BI.isNumeric(v) && (v | 0) >= 0 && (v | 0) <= 255; const Ws = createWidgets([{}, {}, {}], {
};
var Ws = BI.createWidgets([{}, {}, {}], {
type: "bi.small_text_editor", type: "bi.small_text_editor",
cls: "color-picker-editor-input bi-border-radius", cls: "color-picker-editor-input bi-border-radius",
validationChecker: checker, validationChecker: checker,
errorText: BI.i18nText("BI-Color_Picker_Error_Text"), errorText: BI.i18nText("BI-Color_Picker_Error_Text"),
allowBlank: true, allowBlank: true,
value: 255, value: 255,
width: c.RGB_WIDTH, width: RGB_WIDTH,
height: 20 height: 20,
}); });
BI.each(Ws, function (i, w) { each(Ws, (i, w) => {
w.on(BI.TextEditor.EVENT_CHANGE, function () { w.on(BI.TextEditor.EVENT_CHANGE, () => {
self._checkEditors(); this._checkEditors();
if (self.R.isValid() && self.G.isValid() && self.B.isValid()) { if (this.R.isValid() && this.G.isValid() && this.B.isValid()) {
self.colorShow.element.css("background-color", self.getValue()); this.colorShow.element.css("background-color", this.getValue());
self.fireEvent(BI.SimpleColorPickerEditor.EVENT_CHANGE); this.fireEvent(SimpleColorPickerEditor.EVENT_CHANGE);
} }
}); });
}); });
@ -61,7 +62,7 @@ BI.SimpleColorPickerEditor = BI.inherit(BI.Widget, {
this.G = Ws[1]; this.G = Ws[1];
this.B = Ws[2]; this.B = Ws[2];
BI.createWidget({ createWidget({
type: "bi.vertical_adapt", type: "bi.vertical_adapt",
element: this, element: this,
items: [ items: [
@ -69,57 +70,55 @@ BI.SimpleColorPickerEditor = BI.inherit(BI.Widget, {
el: this.colorShow, el: this.colorShow,
width: 16, width: 16,
lgap: 20, lgap: 20,
rgap: 15 rgap: 15,
}, { }, {
el: RGB[0], el: RGB[0],
width: 20 width: 20,
}, { }, {
el: this.R, el: this.R,
width: c.RGB_WIDTH width: RGB_WIDTH,
}, { }, {
el: RGB[1], el: RGB[1],
width: 20 width: 20,
}, { }, {
el: this.G, el: this.G,
width: c.RGB_WIDTH width: RGB_WIDTH,
}, { }, {
el: RGB[2], el: RGB[2],
width: 20 width: 20,
}, { }, {
el: this.B, el: this.B,
width: c.RGB_WIDTH width: RGB_WIDTH,
} }
] ],
}); });
}, }
_checkEditors: function () { _checkEditors() {
if (BI.isEmptyString(this.R.getValue())) { if (isEmptyString(this.R.getValue())) {
this.R.setValue(0); this.R.setValue(0);
} }
if (BI.isEmptyString(this.G.getValue())) { if (isEmptyString(this.G.getValue())) {
this.G.setValue(0); this.G.setValue(0);
} }
if (BI.isEmptyString(this.B.getValue())) { if (isEmptyString(this.B.getValue())) {
this.B.setValue(0); this.B.setValue(0);
} }
}, }
setValue: function (color) { setValue(color) {
this.colorShow.element.css({ "background-color": color }); this.colorShow.element.css({ "background-color": color });
var json = BI.DOM.rgb2json(BI.DOM.hex2rgb(color)); const json = DOM.rgb2json(DOM.hex2rgb(color));
this.R.setValue(BI.isNull(json.r) ? "" : json.r); this.R.setValue(isNull(json.r) ? "" : json.r);
this.G.setValue(BI.isNull(json.g) ? "" : json.g); this.G.setValue(isNull(json.g) ? "" : json.g);
this.B.setValue(BI.isNull(json.b) ? "" : json.b); this.B.setValue(isNull(json.b) ? "" : json.b);
}, }
getValue: function () { getValue() {
return BI.DOM.rgb2hex(BI.DOM.json2rgb({ return DOM.rgb2hex(DOM.json2rgb({
r: this.R.getValue(), r: this.R.getValue(),
g: this.G.getValue(), g: this.G.getValue(),
b: this.B.getValue() b: this.B.getValue(),
})); }));
} }
}); }
BI.SimpleColorPickerEditor.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.simple_color_picker_editor", BI.SimpleColorPickerEditor);

7
src/case/colorchooser/colorpicker/index.js

@ -0,0 +1,7 @@
export { ColorPicker } from "./colorpicker";
export { HexColorPicker } from "./colorpicker.hex";
export { ColorPickerEditor } from "./editor.colorpicker";
export { HexColorPickerEditor } from "./editor.colorpicker.hex";
export { SimpleHexColorPickerEditor } from "./editor.colorpicker.hex.simple";
export { SimpleColorPickerEditor } from "./editor.colorpicker.simple";
export * from "./button";

202
src/case/colorchooser/farbtastic/farbtastic.js

@ -1,98 +1,101 @@
BI.Farbtastic = BI.inherit(BI.BasicButton, { import { shortcut, isKey, DOM } from "@/core";
import { BasicButton } from "@/base";
constants: { const RADIUS = 84, SQUARE = 100, WIDTH = 194;
RADIUS: 84,
SQUARE: 100,
WIDTH: 194
},
props: { @shortcut()
export class Farbtastic extends BasicButton {
static xtype = "bi.farbtastic";
static EVENT_CHANGE = "EVENT_CHANGE";
props = {
baseCls: "bi-farbtastic", baseCls: "bi-farbtastic",
width: 195, width: 195,
height: 195, height: 195,
stopPropagation: true, stopPropagation: true,
value: "#000000" value: "#000000",
}, }
render: function () { render() {
var self = this;
this._defaultState(); this._defaultState();
return { return {
type: "bi.absolute", type: "bi.absolute",
items: [{ items: [{
el: { el: {
type: "bi.layout", type: "bi.layout",
cls: "", cls: "",
ref: function (_ref) { ref: _ref => {
self.colorWrapper = _ref; this.colorWrapper = _ref;
} },
}, },
top: 47, top: 47,
left: 47, left: 47,
width: 101, width: 101,
height: 101 height: 101,
}, { }, {
el: { el: {
type: "bi.layout", type: "bi.layout",
cls: "wheel", cls: "wheel",
ref: function (_ref) { ref: _ref => {
self.wheel = _ref; this.wheel = _ref;
} },
}, },
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
bottom: 0 bottom: 0,
}, { }, {
el: { el: {
type: "bi.layout", type: "bi.layout",
cls: "overlay", cls: "overlay",
ref: function (_ref) { ref: _ref => {
self.overlay = _ref; this.overlay = _ref;
} },
}, },
top: 47, top: 47,
left: 47, left: 47,
width: 101, width: 101,
height: 101 height: 101,
}, { }, {
el: { el: {
type: "bi.layout", type: "bi.layout",
cls: "marker", cls: "marker",
ref: function (_ref) { ref: _ref => {
self.hMarker = _ref; this.hMarker = _ref;
}, },
scrollable: false, scrollable: false,
width: 17, width: 17,
height: 17 height: 17,
} },
}, { }, {
el: { el: {
type: "bi.layout", type: "bi.layout",
cls: "marker", cls: "marker",
ref: function (_ref) { ref: _ref => {
self.slMarker = _ref; this.slMarker = _ref;
}, },
scrollable: false, scrollable: false,
width: 17, width: 17,
height: 17 height: 17,
} },
}] }],
}; };
}, }
created: function () { created() {
var o = this.options; const o = this.options;
if (BI.isKey(o.value)) { if (isKey(o.value)) {
this.setValue(o.value); this.setValue(o.value);
} }
}, }
_defaultState: function () { _defaultState() {
this.hsl = [0, 0, 0]; this.hsl = [0, 0, 0];
}, }
_unpack: function (color) { _unpack(color) {
if (color.length === 7) { if (color.length === 7) {
return [parseInt("0x" + color.substring(1, 3)) / 255, return [parseInt("0x" + color.substring(1, 3)) / 255,
parseInt("0x" + color.substring(3, 5)) / 255, parseInt("0x" + color.substring(3, 5)) / 255,
@ -102,81 +105,84 @@ BI.Farbtastic = BI.inherit(BI.BasicButton, {
parseInt("0x" + color.substring(2, 3)) / 15, parseInt("0x" + color.substring(2, 3)) / 15,
parseInt("0x" + color.substring(3, 4)) / 15]; parseInt("0x" + color.substring(3, 4)) / 15];
} }
}, }
_pack: function (rgb) { _pack(rgb) {
var r = Math.round(rgb[0] * 255); const r = Math.round(rgb[0] * 255);
var g = Math.round(rgb[1] * 255); const g = Math.round(rgb[1] * 255);
var b = Math.round(rgb[2] * 255); const b = Math.round(rgb[2] * 255);
return "#" + (r < 16 ? "0" : "") + r.toString(16) + return "#" + (r < 16 ? "0" : "") + r.toString(16) +
(g < 16 ? "0" : "") + g.toString(16) + (g < 16 ? "0" : "") + g.toString(16) +
(b < 16 ? "0" : "") + b.toString(16); (b < 16 ? "0" : "") + b.toString(16);
}, }
_setColor: function (color) { _setColor(color) {
var unpack = this._unpack(color); const unpack = this._unpack(color);
if (this.value !== color && unpack) { if (this.value !== color && unpack) {
this.value = color; this.value = color;
this.rgb = unpack; this.rgb = unpack;
this.hsl = this._RGBToHSL(this.rgb); this.hsl = this._RGBToHSL(this.rgb);
this._updateDisplay(); this._updateDisplay();
} }
}, }
_setHSL: function (hsl) { _setHSL(hsl) {
this.hsl = hsl; this.hsl = hsl;
this.rgb = this._HSLToRGB(hsl); this.rgb = this._HSLToRGB(hsl);
this.value = this._pack(this.rgb); this.value = this._pack(this.rgb);
this._updateDisplay(); this._updateDisplay();
return this; return this;
}, }
_HSLToRGB: function (hsl) { _HSLToRGB(hsl) {
return BI.DOM.hsl2rgb(hsl); return DOM.hsl2rgb(hsl);
}, }
_RGBToHSL: function (rgb) { _RGBToHSL(rgb) {
return BI.DOM.rgb2hsl(rgb); return DOM.rgb2hsl(rgb);
}, }
_updateDisplay: function () { _updateDisplay() {
var angle = this.hsl[0] * 6.28; const angle = this.hsl[0] * 6.28;
this.hMarker.element.css({ this.hMarker.element.css({
left: Math.round(Math.sin(angle) * this.constants.RADIUS + this.constants.WIDTH / 2) + "px", left: `${Math.round(Math.sin(angle) * RADIUS + WIDTH / 2)}px`,
top: Math.round(-Math.cos(angle) * this.constants.RADIUS + this.constants.WIDTH / 2) + "px" top: `${Math.round(-Math.cos(angle) * RADIUS + WIDTH / 2)}px`,
}); });
this.slMarker.element.css({ this.slMarker.element.css({
left: Math.round(this.constants.SQUARE * (.5 - this.hsl[1]) + this.constants.WIDTH / 2) + "px", left: `${Math.round(SQUARE * (.5 - this.hsl[1]) + WIDTH / 2)}px`,
top: Math.round(this.constants.SQUARE * (.5 - this.hsl[2]) + this.constants.WIDTH / 2) + "px" top: `${Math.round(SQUARE * (.5 - this.hsl[2]) + WIDTH / 2)}px`,
}); });
// Saturation/Luminance gradient // Saturation/Luminance gradient
this.colorWrapper.element.css("backgroundColor", this._pack(this._HSLToRGB([this.hsl[0], 1, 0.5]))); this.colorWrapper.element.css("backgroundColor", this._pack(this._HSLToRGB([this.hsl[0], 1, 0.5])));
}, }
_absolutePosition: function (el) { _absolutePosition(el) {
var r = {x: el.offsetLeft, y: el.offsetTop}; const r = { x: el.offsetLeft, y: el.offsetTop };
// Resolve relative to offsetParent // Resolve relative to offsetParent
if (el.offsetParent) { if (el.offsetParent) {
var tmp = this._absolutePosition(el.offsetParent); const tmp = this._absolutePosition(el.offsetParent);
r.x += tmp.x; r.x += tmp.x;
r.y += tmp.y; r.y += tmp.y;
} }
return r; return r;
}, }
_widgetCoords: function (event) { _widgetCoords(event) {
var x, y; let x, y;
var el = event.target || event.srcElement; const el = event.target || event.srcElement;
var reference = this.wheel.element[0]; const reference = this.wheel.element[0];
if (typeof event.offsetX !== "undefined") { if (typeof event.offsetX !== "undefined") {
// Use offset coordinates and find common offsetParent // Use offset coordinates and find common offsetParent
var pos = {x: event.offsetX, y: event.offsetY}; const pos = { x: event.offsetX, y: event.offsetY };
// Send the coordinates upwards through the offsetParent chain. // Send the coordinates upwards through the offsetParent chain.
var e = el; let e = el;
while (e) { while (e) {
e.mouseX = pos.x; e.mouseX = pos.x;
e.mouseY = pos.y; e.mouseY = pos.y;
@ -186,8 +192,8 @@ BI.Farbtastic = BI.inherit(BI.BasicButton, {
} }
// Look for the coordinates starting from the wheel widget. // Look for the coordinates starting from the wheel widget.
var e = reference; e = reference;
var offset = {x: 0, y: 0}; const offset = { x: 0, y: 0 };
while (e) { while (e) {
if (typeof e.mouseX !== "undefined") { if (typeof e.mouseX !== "undefined") {
x = e.mouseX - offset.x; x = e.mouseX - offset.x;
@ -208,46 +214,46 @@ BI.Farbtastic = BI.inherit(BI.BasicButton, {
} }
} else { } else {
// Use absolute coordinates // Use absolute coordinates
var pos = this._absolutePosition(reference); const pos = this._absolutePosition(reference);
x = (event.pageX || 0) - pos.x; x = (event.pageX || 0) - pos.x;
y = (event.pageY || 0) - pos.y; y = (event.pageY || 0) - pos.y;
} }
// Subtract distance to middle // Subtract distance to middle
return {x: x - this.constants.WIDTH / 2, y: y - this.constants.WIDTH / 2}; return { x: x - WIDTH / 2, y: y - WIDTH / 2 };
}, }
_doMouseMove: function (event) { _doMouseMove(event) {
var pos = this._widgetCoords(event); const pos = this._widgetCoords(event);
// Set new HSL parameters // Set new HSL parameters
if (this.circleDrag) { if (this.circleDrag) {
var hue = Math.atan2(pos.x, -pos.y) / 6.28; let hue = Math.atan2(pos.x, -pos.y) / 6.28;
if (hue < 0) hue += 1; if (hue < 0) hue += 1;
this._setHSL([hue, this.hsl[1], this.hsl[2]]); this._setHSL([hue, this.hsl[1], this.hsl[2]]);
} else { } else {
var sat = Math.max(0, Math.min(1, -(pos.x / this.constants.SQUARE) + .5)); const sat = Math.max(0, Math.min(1, -(pos.x / SQUARE) + .5));
var lum = Math.max(0, Math.min(1, -(pos.y / this.constants.SQUARE) + .5)); const lum = Math.max(0, Math.min(1, -(pos.y / SQUARE) + .5));
this._setHSL([this.hsl[0], sat, lum]); this._setHSL([this.hsl[0], sat, lum]);
} }
this.fireEvent(BI.Farbtastic.EVENT_CHANGE, this.getValue(), this); this.fireEvent(Farbtastic.EVENT_CHANGE, this.getValue(), this);
}, }
doClick: function (event) { doClick(event) {
var pos = this._widgetCoords(event); const pos = this._widgetCoords(event);
this.circleDrag = Math.max(Math.abs(pos.x), Math.abs(pos.y)) * 2 > this.constants.SQUARE; this.circleDrag = Math.max(Math.abs(pos.x), Math.abs(pos.y)) * 2 > SQUARE;
// Process // Process
this._doMouseMove(event); this._doMouseMove(event);
return false; return false;
}, }
setValue: function (color) { setValue(color) {
this._setColor(color); this._setColor(color);
}, }
getValue: function () { getValue() {
return this.value; return this.value;
} }
}); }
BI.Farbtastic.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.farbtastic", BI.Farbtastic);

11
src/case/colorchooser/index.js

@ -0,0 +1,11 @@
export { ColorChooser } from "./colorchooser";
export { CustomColorChooser } from "./colorchooser.custom";
export { ColorChooserPopup } from "./colorchooser.popup";
export { HexColorChooserPopup } from "./colorchooser.popup.hex";
export { SimpleHexColorChooserPopup } from "./colorchooser.popup.hex.simple";
export { SimpleColorChooserPopup } from "./colorchooser.popup.simple";
export { SimpleColorChooser } from "./colorchooser.simple";
export { ColorChooserTrigger } from "./colorchooser.trigger";
export { LongColorChooserTrigger } from "./colorchooser.trigger.long";
export { Farbtastic } from "./farbtastic/farbtastic";
export * from "./colorpicker";

3
src/case/index.js

@ -10,6 +10,7 @@ import * as segment from "./segment";
import { MultiSelectBar } from "./toolbar/toolbar.multiselect"; import { MultiSelectBar } from "./toolbar/toolbar.multiselect";
import * as layer from "./layer"; import * as layer from "./layer";
import * as linearSegment from "./linearsegment"; import * as linearSegment from "./linearsegment";
import * as colorchooser from "./colorchooser";
import { SelectList } from "./list/list.select"; import { SelectList } from "./list/list.select";
import * as combo from "./combo"; import * as combo from "./combo";
@ -27,6 +28,7 @@ Object.assign(BI, {
MultiSelectBar, MultiSelectBar,
...layer, ...layer,
...linearSegment, ...linearSegment,
...colorchooser,
SelectList, SelectList,
}); });
@ -44,6 +46,7 @@ export * from "./segment";
export * from "./layer"; export * from "./layer";
export * from "./linearsegment"; export * from "./linearsegment";
export * from "./checkbox"; export * from "./checkbox";
export * from "./colorchooser";
export { export {
MultiSelectBar, MultiSelectBar,
SelectList SelectList

4
src/case/layer/panel.js

@ -50,8 +50,8 @@ export class Panel extends Widget {
}], }],
}); });
this.button_group.on(Controller.EVENT_CHANGE, () => { this.button_group.on(Controller.EVENT_CHANGE, (...args) => {
this.fireEvent(Controller.EVENT_CHANGE, ...arguments); this.fireEvent(Controller.EVENT_CHANGE, ...args);
}); });
this.button_group.on(ButtonGroup.EVENT_CHANGE, (value, obj) => { this.button_group.on(ButtonGroup.EVENT_CHANGE, (value, obj) => {

10
src/case/list/list.select.js

@ -55,13 +55,14 @@ export class SelectList extends Widget {
// 全选 // 全选
this.toolbar = createWidget(o.toolbar); this.toolbar = createWidget(o.toolbar);
this.allSelected = false; this.allSelected = false;
this.toolbar.on(Controller.EVENT_CHANGE, (type, value, obj) => { this.toolbar.on(Controller.EVENT_CHANGE, (...args) => {
const [type, value, obj] = args;
this.allSelected = this.toolbar.isSelected(); this.allSelected = this.toolbar.isSelected();
if (type === Events.CLICK) { if (type === Events.CLICK) {
this.setAllSelected(this.allSelected); this.setAllSelected(this.allSelected);
this.fireEvent(SelectList.EVENT_CHANGE, value, obj); this.fireEvent(SelectList.EVENT_CHANGE, value, obj);
} }
this.fireEvent(Controller.EVENT_CHANGE, arguments); this.fireEvent(Controller.EVENT_CHANGE, ...args);
}); });
this.list = createWidget(o.el, { this.list = createWidget(o.el, {
@ -84,12 +85,13 @@ export class SelectList extends Widget {
hasNext: o.hasNext, hasNext: o.hasNext,
}); });
this.list.on(Controller.EVENT_CHANGE, (type, value, obj) => { this.list.on(Controller.EVENT_CHANGE, (...args) => {
const [type, value, obj] = args;
if (type === Events.CLICK) { if (type === Events.CLICK) {
this._checkAllSelected(); this._checkAllSelected();
this.fireEvent(SelectList.EVENT_CHANGE, value, obj); this.fireEvent(SelectList.EVENT_CHANGE, value, obj);
} }
this.fireEvent(Controller.EVENT_CHANGE, arguments); this.fireEvent(Controller.EVENT_CHANGE, ...args);
}); });
createWidget(extend({ createWidget(extend({

443
src/core/1.lodash.js

File diff suppressed because it is too large Load Diff

2
src/core/structure/queue.js

@ -75,7 +75,7 @@ export class Queue {
} }
fromArray(array) { fromArray(array) {
array.each(v => this.push(v)); array.forEach(v => this.push(v));
} }
clear() { clear() {

1
src/core/wrapper/layout/flex/flex.vertical.js

@ -12,7 +12,6 @@ import { Layout } from "../../layout";
@shortcut() @shortcut()
export class FlexVerticalLayout extends Layout { export class FlexVerticalLayout extends Layout {
static xtype = "bi.flex_vertical"; static xtype = "bi.flex_vertical";
props() { props() {
return extend(super.props(...arguments), { return extend(super.props(...arguments), {
baseCls: "bi-f-v", baseCls: "bi-f-v",

268
src/widget/downlist/combo.downlist.js

@ -1,143 +1,155 @@
(function() { import { shortcut, Widget, extend, createWidget, cloneDeep, some, isArray, each } from "@/core";
function transformItems(items) { import { DownListPopup } from "./popup.downlist";
if (!items) return items; import { Combo } from "@/base";
var result = BI.cloneDeep(items); import { IconTrigger } from "@/case";
var isComplexItmes = BI.some(items, function (_, item) {
return BI.isArray(item);
function transformItems(items) {
if (!items) return items;
let result = cloneDeep(items);
const isComplexItmes = some(items, (_, item) => isArray(item));
// 传一维数组,帮转二维
if (!isComplexItmes) {
result = [result];
}
// 帮转 el
each(result, (_, arr) => {
each(arr, (_, item) => {
if (item.children && !item.el) {
item.el = {
text: item.text,
icon: item.icon,
cls: item.cls,
iconCls1: item.iconCls1,
value: item.value,
};
}
}); });
// 传一维数组,帮转二维 });
if (!isComplexItmes) {
result = [result]; return result;
} }
// 帮转 el
BI.each(result, function (_, arr) { @shortcut()
BI.each(arr, function (_, item) { export class DownListCombo extends Widget {
if (item.children && !item.el) { static xtype = "bi.down_list_combo";
item.el = {
text: item.text, static EVENT_CHANGE = "EVENT_CHANGE";
icon: item.icon, static EVENT_SON_VALUE_CHANGE = "EVENT_SON_VALUE_CHANGE";
cls: item.cls, static EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW";
iconCls1: item.iconCls1,
value: item.value _defaultConfig() {
}; return extend(super._defaultConfig(...arguments), {
} baseCls: "bi-down-list-combo",
}); height: 24,
items: [],
adjustLength: 0,
direction: "bottom",
trigger: "click",
container: null,
stopPropagation: false,
el: {},
popup: {},
minWidth: 140,
maxHeight: 1000,
destroyWhenHide: false,
isDefaultInit: true,
}); });
return result;
} }
/** _init() {
* Created by roy on 15/8/14. super._init(...arguments);
*/ const o = this.options;
BI.DownListCombo = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.DownListCombo.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-down-list-combo",
height: 24,
items: [],
adjustLength: 0,
direction: "bottom",
trigger: "click",
container: null,
stopPropagation: false,
el: {},
popup: {},
minWidth: 140,
maxHeight: 1000,
destroyWhenHide: false,
isDefaultInit: true,
});
},
_init: function () { this.downlistcombo = createWidget({
BI.DownListCombo.superclass._init.apply(this, arguments); element: this,
var self = this, o = this.options; type: Combo.xtype,
trigger: o.trigger,
this.downlistcombo = BI.createWidget({ isNeedAdjustWidth: false,
element: this, isDefaultInit: o.isDefaultInit,
type: "bi.combo", container: o.container,
trigger: o.trigger, adjustLength: o.adjustLength,
isNeedAdjustWidth: false, direction: o.direction,
isDefaultInit: o.isDefaultInit, belowMouse: o.belowMouse,
container: o.container, stopPropagation: o.stopPropagation,
adjustLength: o.adjustLength, destroyWhenHide: o.destroyWhenHide,
direction: o.direction, el: {
belowMouse: o.belowMouse, type: IconTrigger.xtype,
stopPropagation: o.stopPropagation, extraCls: o.iconCls,
destroyWhenHide: o.destroyWhenHide, width: o.width,
height: o.height,
...o.el,
},
popup: {
el: { el: {
type: "bi.icon_trigger", type: DownListPopup.xtype,
extraCls: o.iconCls, ref: _ref => {
width: o.width, this.popupView = _ref;
height: o.height,
...o.el
},
popup: {
el: {
type: "bi.down_list_popup",
ref: function (ref) {
self.popupView = ref;
},
items: transformItems(o.items),
chooseType: o.chooseType,
value: o.value,
listeners: [{
eventName: BI.DownListPopup.EVENT_CHANGE,
action: function (value) {
self.fireEvent(BI.DownListCombo.EVENT_CHANGE, value);
self.downlistcombo.hideView();
}
}, {
eventName: BI.DownListPopup.EVENT_SON_VALUE_CHANGE,
action: function (value, fatherValue) {
self.fireEvent(BI.DownListCombo.EVENT_SON_VALUE_CHANGE, value, fatherValue);
self.downlistcombo.hideView();
}
}]
}, },
stopPropagation: o.stopPropagation, items: transformItems(o.items),
maxHeight: o.maxHeight, chooseType: o.chooseType,
minWidth: o.minWidth, value: o.value,
...o.popup listeners: [
} {
}); eventName: DownListPopup.EVENT_CHANGE,
action: value => {
this.downlistcombo.on(BI.Combo.EVENT_BEFORE_POPUPVIEW, function () { this.fireEvent(
self.fireEvent(BI.DownListCombo.EVENT_BEFORE_POPUPVIEW); DownListCombo.EVENT_CHANGE,
}); value
}, );
this.downlistcombo.hideView();
},
},
{
eventName: DownListPopup.EVENT_SON_VALUE_CHANGE,
action: (value, fatherValue) => {
this.fireEvent(
DownListCombo.EVENT_SON_VALUE_CHANGE,
value,
fatherValue
);
this.downlistcombo.hideView();
},
}
],
},
stopPropagation: o.stopPropagation,
maxHeight: o.maxHeight,
minWidth: o.minWidth,
...o.popup,
},
});
hideView: function () { this.downlistcombo.on(Combo.EVENT_BEFORE_POPUPVIEW, () => {
this.downlistcombo.hideView(); this.fireEvent(DownListCombo.EVENT_BEFORE_POPUPVIEW);
}, });
}
showView: function (e) { hideView() {
this.downlistcombo.showView(e); this.downlistcombo.hideView();
}, }
populate: function (items) { showView(e) {
this.popupView.populate(items); this.downlistcombo.showView(e);
}, }
setValue: function (v) { populate(items) {
this.popupView.setValue(v); this.popupView.populate(items);
}, }
getValue: function () { setValue(v) {
return this.popupView.getValue(); this.popupView.setValue(v);
}, }
adjustWidth: function () { getValue() {
this.downlistcombo.adjustWidth(); return this.popupView.getValue();
}, }
adjustHeight: function () { adjustWidth() {
this.downlistcombo.adjustHeight(); this.downlistcombo.adjustWidth();
} }
});
BI.DownListCombo.EVENT_CHANGE = "EVENT_CHANGE";
BI.DownListCombo.EVENT_SON_VALUE_CHANGE = "EVENT_SON_VALUE_CHANGE";
BI.DownListCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW";
BI.shortcut("bi.down_list_combo", BI.DownListCombo); adjustHeight() {
}()); this.downlistcombo.adjustHeight();
}
}

113
src/widget/downlist/group.downlist.js

@ -1,51 +1,62 @@
/** import {
* Created by roy on 15/9/6. shortcut,
*/ Widget,
BI.DownListGroup = BI.inherit(BI.Widget, { extend,
constants: { createWidget,
iconCls: "check-mark-ha-font" Controller,
}, Events
_defaultConfig: function () { } from "@/core";
return BI.extend(BI.DownListGroup.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-down-list-group", @shortcut()
items: [ export class DownListGroup extends Widget {
{ static xtype = "bi.down_list_group";
el: {}
} constants = { iconCls: "check-mark-ha-font" };
]
}); static EVENT_CHANGE = "EVENT_CHANGE";
},
_init: function () { _defaultConfig() {
BI.DownListGroup.superclass._init.apply(this, arguments); return extend(super._defaultConfig(...arguments), {
var o = this.options, self = this; baseCls: "bi-down-list-group",
items: [
this.downlistgroup = BI.createWidget({ {
element: this, el: {},
type: "bi.button_tree", }
items: o.items, ],
chooseType: 0, // 0单选,1多选 });
layouts: [{ }
type: "bi.vertical",
hgap: 0, _init() {
vgap: 0 super._init(...arguments);
}], const o = this.options;
value: o.value
}); this.downlistgroup = createWidget({
this.downlistgroup.on(BI.Controller.EVENT_CHANGE, function (type) { element: this,
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); type: "bi.button_tree",
if(type === BI.Events.CLICK) { items: o.items,
self.fireEvent(BI.DownListGroup.EVENT_CHANGE, arguments); chooseType: 0, // 0单选,1多选
} layouts: [
}); {
}, type: "bi.vertical",
getValue: function () { hgap: 0,
return this.downlistgroup.getValue(); vgap: 0,
}, }
setValue: function (v) { ],
this.downlistgroup.setValue(v); value: o.value,
} });
this.downlistgroup.on(Controller.EVENT_CHANGE, (type, ...args) => {
this.fireEvent(Controller.EVENT_CHANGE, type, ...args);
}); if (type === Events.CLICK) {
BI.DownListGroup.EVENT_CHANGE = "EVENT_CHANGE"; this.fireEvent(DownListGroup.EVENT_CHANGE, type, ...args);
BI.shortcut("bi.down_list_group", BI.DownListGroup); }
});
}
getValue() {
return this.downlistgroup.getValue();
}
setValue(v) {
this.downlistgroup.setValue(v);
}
}

5
src/widget/downlist/index.js

@ -0,0 +1,5 @@
export { DownListGroup } from "./group.downlist";
export { DownListItem } from "./item.downlist";
export { DownListGroupItem } from "./item.downlistgroup";
export { DownListPopup } from "./popup.downlist";
export { DownListCombo } from "./combo.downlist";

227
src/widget/downlist/item.downlist.js

@ -1,102 +1,125 @@
BI.DownListItem = BI.inherit(BI.BasicButton, { import { shortcut, extend, createWidget, isPlainObject, LogicFactory, Direction } from "@/core";
_defaultConfig: function () { import { BasicButton } from "@/base";
var conf = BI.DownListItem.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, { @shortcut()
baseCls: "bi-down-list-item bi-list-item-active", export class DownListItem extends BasicButton {
cls: "", static xtype = "bi.down_list_item";
height: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT,
logic: { static EVENT_CHANGE = "EVENT_CHANGE";
dynamic: true
}, _defaultConfig() {
selected: false, const conf = super._defaultConfig(...arguments);
iconHeight: null,
iconWidth: null, return extend(conf, {
textHgap: 0, baseCls: "bi-down-list-item bi-list-item-active",
textVgap: 0, cls: "",
textLgap: 0, height: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT,
textRgap: 0 logic: {
}); dynamic: true,
}, },
_init: function () { selected: false,
BI.DownListItem.superclass._init.apply(this, arguments); iconHeight: null,
var self = this, o = this.options; iconWidth: null,
this.text = BI.createWidget({ textHgap: 0,
type: "bi.label", textVgap: 0,
cls: "list-item-text", textLgap: 0,
textAlign: "left", textRgap: 0,
hgap: o.textHgap, });
vgap: o.textVgap, }
lgap: o.textLgap,
rgap: o.textRgap, _init() {
text: o.text, super._init(...arguments);
value: o.value, const o = this.options;
keyword: o.keyword, this.text = createWidget({
height: o.height type: "bi.label",
}); cls: "list-item-text",
textAlign: "left",
hgap: o.textHgap,
var icon = BI.isPlainObject(o.icon) ? o.icon : { vgap: o.textVgap,
type: "bi.icon", lgap: o.textLgap,
width: o.iconWidth, rgap: o.textRgap,
height: o.iconHeight, text: o.text,
} value: o.value,
keyword: o.keyword,
this.icon = BI.createWidget({ height: o.height,
type: "bi.center_adapt", });
width: 36,
height: o.height, const icon = isPlainObject(o.icon)
items: [{ ? o.icon
el: icon, : {
}], type: "bi.icon",
}); width: o.iconWidth,
height: o.iconHeight,
BI.createWidget(BI.extend({ };
element: this
}, BI.LogicFactory.createLogic(BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left), BI.extend(o.logic, { this.icon = createWidget({
items: BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, this.icon, this.text) type: "bi.center_adapt",
})))); width: 36,
}, height: o.height,
items: [
setValue: function () { {
if (!this.isReadOnly()) { el: icon,
this.text.setValue.apply(this.text, arguments); }
} ],
}, });
getValue: function () { createWidget(
return this.text.getValue(); extend(
}, {
element: this,
setText: function () { },
this.text.setText.apply(this.text, arguments); LogicFactory.createLogic(
}, LogicFactory.createLogicTypeByDirection(Direction.Left),
extend(o.logic, {
getText: function () { items: LogicFactory.createLogicItemsByDirection(
return this.text.getText(); Direction.Left,
}, this.icon,
this.text
doClick: function () { ),
BI.DownListItem.superclass.doClick.apply(this, arguments); })
if (this.isValid()) { )
this.fireEvent(BI.DownListItem.EVENT_CHANGE, this.getValue(), this); )
} );
}, }
doRedMark: function () { setValue() {
this.text.doRedMark.apply(this.text, arguments); if (!this.isReadOnly()) {
}, this.text.setValue(...arguments);
}
unRedMark: function () { }
this.text.unRedMark.apply(this.text, arguments);
}, getValue() {
return this.text.getValue();
doHighLight: function () { }
this.text.doHighLight.apply(this.text, arguments);
}, setText() {
this.text.setText(...arguments);
unHighLight: function () { }
this.text.unHighLight.apply(this.text, arguments);
} getText() {
}); return this.text.getText();
BI.DownListItem.EVENT_CHANGE = "EVENT_CHANGE"; }
BI.shortcut("bi.down_list_item", BI.DownListItem);
doClick() {
super.doClick(...arguments);
if (this.isValid()) {
this.fireEvent(DownListItem.EVENT_CHANGE, this.getValue(), this);
}
}
doRedMark() {
this.text.doRedMark(...arguments);
}
unRedMark() {
this.text.unRedMark(...arguments);
}
doHighLight() {
this.text.doHighLight(...arguments);
}
unHighLight() {
this.text.unHighLight(...arguments);
}
}

259
src/widget/downlist/item.downlistgroup.js

@ -1,118 +1,141 @@
BI.DownListGroupItem = BI.inherit(BI.BasicButton, { import {
_defaultConfig: function () { shortcut,
var conf = BI.DownListGroupItem.superclass._defaultConfig.apply(this, arguments); extend,
return BI.extend(conf, { createWidget,
baseCls: (conf.baseCls || "") + " bi-down-list-group-item", isNotNull,
logic: { isArray,
dynamic: false any,
}, contains,
// invalid: true, isPlainObject,
iconCls1: "dot-e-font", first,
icon: "", BlankSplitChar
iconCls2: "pull-right-e-font" } from "@/core";
}); import { BasicButton } from "@/base";
},
render: function () { @shortcut()
var o = this.options; export class DownListGroupItem extends BasicButton {
var self = this; static xtype = "bi.down_list_group_item";
this.text = BI.createWidget({
type: "bi.label", static EVENT_CHANGE = "EVENT_CHANGE";
cls: "list-group-item-text",
textAlign: "left", _defaultConfig() {
text: o.text, const conf = super._defaultConfig(...arguments);
value: o.value,
height: o.height, return extend(conf, {
}); baseCls: `${conf.baseCls || ""} bi-down-list-group-item`,
logic: {
if (BI.isPlainObject(o.icon)) { dynamic: false,
this.icon1 = BI.createWidget({ },
width: 36, // invalid: true,
height: o.height, iconCls1: "dot-e-font",
type: "bi.center_adapt", icon: "",
items: [o.icon], iconCls2: "pull-right-e-font",
}); });
} else { }
this.icon1 = BI.createWidget({
type: "bi.icon_button", render() {
cls: o.iconCls1, const o = this.options;
width: 36, this.text = createWidget({
height: o.height, type: "bi.label",
iconHeight: o.iconHeight, cls: "list-group-item-text",
iconWidth: 36, textAlign: "left",
disableSelected: true, text: o.text,
selected: this._digest(o.value), value: o.value,
}); height: o.height,
} });
this.icon2 = BI.createWidget({ if (isPlainObject(o.icon)) {
type: "bi.icon_button", this.icon1 = createWidget({
cls: o.iconCls2, width: 36,
width: 24, height: o.height,
forceNotSelected: true type: "bi.center_adapt",
}); items: [o.icon],
});
this.element.hover(function () { } else {
if (self.isEnabled()) { this.icon1 = createWidget({
self.hover(); type: "bi.icon_button",
} cls: o.iconCls1,
}, function () { width: 36,
if (self.isEnabled()) { height: o.height,
self.dishover(); iconHeight: o.iconHeight,
} iconWidth: 36,
}); disableSelected: true,
selected: this._digest(o.value),
return { });
type: "bi.horizontal_fill", }
columnSize: [36, "fill", 24],
items: [this.icon1, this.text, this.icon2] this.icon2 = createWidget({
} type: "bi.icon_button",
}, cls: o.iconCls2,
width: 24,
_getLevel: function () { forceNotSelected: true,
var child = BI.first(this.options.childValues); });
return BI.isNotNull(child) ? (child + "").split(BI.BlankSplitChar).length : 0;
}, this.element.hover(
() => {
_digest: function (v) { if (this.isEnabled()) {
var self = this, o = this.options; this.hover();
v = BI.isArray(v) ? v : [v]; }
var level = this._getLevel(); },
return BI.any(v, function (idx, value) { () => {
return BI.contains(o.childValues, (value + "").split(BI.BlankSplitChar).slice(0, level).join(BI.BlankSplitChar)); if (this.isEnabled()) {
}); this.dishover();
}, }
}
hover: function () { );
BI.DownListGroupItem.superclass.hover.apply(this, arguments);
this.icon1.element.addClass("hover"); return {
this.icon2.element.addClass("hover"); type: "bi.horizontal_fill",
columnSize: [36, "fill", 24],
}, items: [this.icon1, this.text, this.icon2],
};
dishover: function () { }
BI.DownListGroupItem.superclass.dishover.apply(this, arguments);
this.icon1.element.removeClass("hover"); _getLevel() {
this.icon2.element.removeClass("hover"); const child = first(this.options.childValues);
},
return isNotNull(child) ? (`${child}`).split(BlankSplitChar).length : 0;
doClick: function () { }
BI.DownListGroupItem.superclass.doClick.apply(this, arguments);
if (this.isValid()) { _digest(v) {
this.fireEvent(BI.DownListGroupItem.EVENT_CHANGE, this.getValue()); const o = this.options;
} v = isArray(v) ? v : [v];
}, const level = this._getLevel();
doRedMark: function () { return any(v, (idx, value) => contains(
this.text.doRedMark.apply(this.text, arguments); o.childValues,
}, (`${value}`).split(BlankSplitChar).slice(0, level).join(BlankSplitChar)
));
unRedMark: function () { }
this.text.unRedMark.apply(this.text, arguments);
}, hover() {
super.hover(...arguments);
setValue: function (v) { this.icon1.element.addClass("hover");
this.icon1.setSelected && this.icon1.setSelected(this._digest(v)); this.icon2.element.addClass("hover");
}, }
});
BI.DownListGroupItem.EVENT_CHANGE = "EVENT_CHANGE"; dishover() {
BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem); super.dishover(...arguments);
this.icon1.element.removeClass("hover");
this.icon2.element.removeClass("hover");
}
doClick() {
super.doClick(...arguments);
if (this.isValid()) {
this.fireEvent(DownListGroupItem.EVENT_CHANGE, this.getValue());
}
}
doRedMark() {
this.text.doRedMark(...arguments);
}
unRedMark() {
this.text.unRedMark(...arguments);
}
setValue(v) {
this.icon1.setSelected && this.icon1.setSelected(this._digest(v));
}
}

587
src/widget/downlist/popup.downlist.js

@ -1,301 +1,332 @@
/** import {
* Created by roy on 15/9/8. shortcut,
* 处理popup中的item分组样式 extend,
* 一个item分组中的成员大于一时该分组设置为单选并且默认状态第一个成员设置为已选择项 createWidget,
*/ createItems,
BI.DownListPopup = BI.inherit(BI.Pane, { isNotNull,
constants: { contains,
nextIcon: "pull-right-e-font", each,
height: 24, isEmpty,
iconHeight: 12, map,
iconWidth: 12, isNotEmptyString,
hgap: 0, isNotEmptyArray,
vgap: 0, some,
border: 1 deepClone
}, } from "@/core";
_defaultConfig: function () { import { Pane, ButtonTree } from "@/base";
var conf = BI.DownListPopup.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
baseCls: "bi-down-list-popup",
items: [],
chooseType: BI.Selection.Multi
});
},
_init: function () {
BI.DownListPopup.superclass._init.apply(this, arguments);
this.singleValues = [];
this.childValueMap = {};
this.fatherValueMap = {};
this.items = [];
var self = this, o = this.options, children = this._createPopupItems(o.items);
this.popup = BI.createWidget({
type: "bi.button_tree",
items: BI.createItems(children,
{}, {
adjustLength: -2
}
),
layouts: [{
type: "bi.vertical",
hgap: this.constants.hgap,
vgap: this.constants.vgap
}],
value: this._digest(o.value),
chooseType: o.chooseType
});
this.popup.on(BI.ButtonTree.EVENT_CHANGE, function (value, object) { @shortcut()
var changedValue = value; export class DownListPopup extends Pane {
if (BI.isNotNull(self.childValueMap[value])) { static xtype = "bi.down_list_popup";
changedValue = self.childValueMap[value];
self.fireEvent(BI.DownListPopup.EVENT_SON_VALUE_CHANGE, changedValue, self.fatherValueMap[value]);
} else {
self.fireEvent(BI.DownListPopup.EVENT_CHANGE, changedValue, object);
}
constants = {
nextIcon: "pull-right-e-font",
height: 24,
iconHeight: 12,
iconWidth: 12,
hgap: 0,
vgap: 0,
border: 1,
};
if (!BI.contains(self.singleValues, changedValue)) { static EVENT_CHANGE = "EVENT_CHANGE";
var item = self.getValue(); static EVENT_SON_VALUE_CHANGE = "EVENT_SON_VALUE_CHANGE";
var result = [];
BI.each(item, function (i, valueObject) {
if (valueObject.value != changedValue) {
result.push(valueObject);
}
});
self.setValue(result);
}
}); _defaultConfig() {
const conf = super._defaultConfig(...arguments);
return extend(conf, {
baseCls: "bi-down-list-popup",
items: [],
chooseType: Selection.Multi,
});
}
BI.createWidget({ _init() {
type: "bi.vertical", super._init(...arguments);
element: this, this.singleValues = [];
items: [this.popup], this.childValueMap = {};
vgap: 5 this.fatherValueMap = {};
}); this.items = [];
const o = this.options,
children = this._createPopupItems(o.items);
this.popup = createWidget({
type: "bi.button_tree",
items: createItems(
children,
{},
{
adjustLength: -2,
}
),
layouts: [
{
type: "bi.vertical",
hgap: this.constants.hgap,
vgap: this.constants.vgap,
}
],
value: this._digest(o.value),
chooseType: o.chooseType,
});
}, this.popup.on(ButtonTree.EVENT_CHANGE, (value, object) => {
_createPopupItems: function (items) { let changedValue = value;
var self = this, result = []; if (isNotNull(this.childValueMap[value])) {
// 不能修改populate进来的item的引用 changedValue = this.childValueMap[value];
BI.each(items, function (i, it) { this.fireEvent(
var item_done = { DownListPopup.EVENT_SON_VALUE_CHANGE,
type: "bi.down_list_group", changedValue,
items: [] this.fatherValueMap[value]
}; );
} else {
this.fireEvent(DownListPopup.EVENT_CHANGE, changedValue, object);
}
var storeItem = []; if (!contains(this.singleValues, changedValue)) {
const item = this.getValue();
const result = [];
each(item, (i, valueObject) => {
if (valueObject.value !== changedValue) {
result.push(valueObject);
}
});
this.setValue(result);
}
});
BI.each(it, function (i, sourceItem) { createWidget({
var item = BI.extend({}, sourceItem); type: "bi.vertical",
if (BI.isNotEmptyArray(sourceItem.children) && !BI.isEmpty(sourceItem.el)) { element: this,
item.type = "bi.combo_group"; items: [this.popup],
// popup未初始化返回的是options中的value, 在经过buttontree的getValue concat之后,无法区分值来自options vgap: 5,
// 还是item自身, 这边控制defaultInit为true来避免这个问题 });
item.isDefaultInit = true; }
item.cls = "down-list-group";
item.trigger = "hover";
item.isNeedAdjustWidth = false;
item.el = sourceItem.el;
item.el.title = sourceItem.el.title || sourceItem.el.text;
item.el.type = "bi.down_list_group_item";
item.el.logic = {
dynamic: true
};
item.el.height = sourceItem.el.height || BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT;
item.el.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,
layouts: [{
type: "bi.vertical"
}]
}, _createPopupItems(items) {
innerVgap: 5, const result = [];
maxHeight: 378 // 不能修改populate进来的item的引用
}; each(items, (i, it) => {
self._createChildren(item, sourceItem); const item_done = {
} else { type: "bi.down_list_group",
item.type = sourceItem.type || "bi.down_list_item"; items: [],
item.title = sourceItem.title || sourceItem.text; };
item.textRgap = 10;
item.isNeedAdjustWidth = false;
item.logic = {
dynamic: true
};
}
var el_done = {};
el_done.el = item;
item_done.items.push(el_done);
storeItem.push(item);
});
if (self._isGroup(item_done.items)) {
BI.each(item_done.items, function (i, item) {
self.singleValues.push(item.el.value);
});
}
result.push(item_done); const storeItem = [];
self.items.push(storeItem);
if (self._needSpliter(i, items.length)) {
var spliter_container = BI.createWidget({
type: "bi.vertical",
items: [{
el: {
type: "bi.layout",
cls: "bi-down-list-spliter bi-split-top cursor-pointer",
height: 0
}
}], each(it, (i, sourceItem) => {
cls: "bi-down-list-spliter-container cursor-pointer", const item = extend({}, sourceItem);
vgap: 5, if (isNotEmptyArray(sourceItem.children) && !isEmpty(sourceItem.el)) {
hgap: 12 item.type = "bi.combo_group";
}); // popup未初始化返回的是options中的value, 在经过buttontree的getValue concat之后,无法区分值来自options
result.push(spliter_container); // 还是item自身, 这边控制defaultInit为true来避免这个问题
} item.isDefaultInit = true;
}); item.cls = "down-list-group";
return result; item.trigger = "hover";
}, item.isNeedAdjustWidth = false;
item.el = sourceItem.el;
item.el.title = sourceItem.el.title || sourceItem.el.text;
item.el.type = "bi.down_list_group_item";
item.el.logic = {
dynamic: true,
};
item.el.height =
sourceItem.el.height || BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT;
item.el.iconCls2 = this.constants.nextIcon;
item.popup = {
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,
layouts: [
{
type: "bi.vertical",
}
],
},
innerVgap: 5,
maxHeight: 378,
};
this._createChildren(item, sourceItem);
} else {
item.type = sourceItem.type || "bi.down_list_item";
item.title = sourceItem.title || sourceItem.text;
item.textRgap = 10;
item.isNeedAdjustWidth = false;
item.logic = {
dynamic: true,
};
}
const el_done = {};
el_done.el = item;
item_done.items.push(el_done);
storeItem.push(item);
});
if (this._isGroup(item_done.items)) {
each(item_done.items, (i, item) => {
this.singleValues.push(item.el.value);
});
}
_createChildren: function (targetItem, sourceItem) { result.push(item_done);
var self = this; this.items.push(storeItem);
targetItem.el.childValues = []; if (this._needSpliter(i, items.length)) {
targetItem.items = targetItem.children = []; const spliter_container = createWidget({
BI.each(sourceItem.children, function (i, child) { type: "bi.vertical",
var item = BI.extend({}, child); items: [
var fatherValue = BI.deepClone(targetItem.el.value); {
var childValue = BI.deepClone(item.value); el: {
self.singleValues.push(item.value); type: "bi.layout",
item.type = item.type || "bi.down_list_item"; cls: "bi-down-list-spliter bi-split-top cursor-pointer",
item.extraCls = " child-down-list-item"; height: 0,
item.title = item.title || item.text; },
item.textRgap = 10; }
item.isNeedAdjustWidth = false; ],
item.logic = { cls: "bi-down-list-spliter-container cursor-pointer",
dynamic: true vgap: 5,
}; hgap: 12,
item.father = fatherValue; });
item.childValue = item.value; result.push(spliter_container);
self.fatherValueMap[self._createChildValue(fatherValue, childValue)] = fatherValue; }
self.childValueMap[self._createChildValue(fatherValue, childValue)] = childValue; });
item.value = self._createChildValue(fatherValue, childValue);
targetItem.el.childValues.push(item.value); return result;
targetItem.items.push(item); }
});
},
_isGroup: function (i) { _createChildren(targetItem, sourceItem) {
return i.length > 1; targetItem.el.childValues = [];
}, targetItem.items = targetItem.children = [];
each(sourceItem.children, (i, child) => {
const item = extend({}, child);
const fatherValue = deepClone(targetItem.el.value);
const childValue = deepClone(item.value);
this.singleValues.push(item.value);
item.type = item.type || "bi.down_list_item";
item.extraCls = " child-down-list-item";
item.title = item.title || item.text;
item.textRgap = 10;
item.isNeedAdjustWidth = false;
item.logic = {
dynamic: true,
};
item.father = fatherValue;
item.childValue = item.value;
this.fatherValueMap[this._createChildValue(fatherValue, childValue)] =
fatherValue;
this.childValueMap[this._createChildValue(fatherValue, childValue)] =
childValue;
item.value = this._createChildValue(fatherValue, childValue);
targetItem.el.childValues.push(item.value);
targetItem.items.push(item);
});
}
_needSpliter: function (i, itemLength) { _isGroup(i) {
return i < itemLength - 1; return i.length > 1;
}, }
_createChildValue: function (fatherValue, childValue) { _needSpliter(i, itemLength) {
return fatherValue + BI.BlankSplitChar + childValue; return i < itemLength - 1;
}, }
_digest: function (valueItem) { _createChildValue(fatherValue, childValue) {
var self = this; return fatherValue + BI.BlankSplitChar + childValue;
var valueArray = []; }
BI.each(valueItem, function (i, item) {
var value;
if (BI.isNotNull(item.childValue)) {
value = self._createChildValue(item.value, item.childValue);
} else {
value = item.value;
}
valueArray.push(value);
}
);
return valueArray;
},
_checkValues: function (values) { _digest(valueItem) {
var value = []; const valueArray = [];
BI.each(this.items, function (idx, itemGroup) { each(valueItem, (i, item) => {
BI.each(itemGroup, function (id, item) { let value;
if(BI.isNotNull(item.children)) { if (isNotNull(item.childValue)) {
var childValues = BI.map(item.children, "value"); value = this._createChildValue(item.value, item.childValue);
var v = joinValue(childValues, values[idx]); } else {
if(BI.isNotEmptyString(v)) { value = item.value;
value.push(v); }
} valueArray.push(value);
}else{ });
if(item.value === values[idx][0]) {
value.push(values[idx][0]); return valueArray;
} }
}
});
});
return value;
function joinValue (sources, targets) { _checkValues(values) {
var value = ""; const value = [];
BI.some(sources, function (idx, s) { each(this.items, (idx, itemGroup) => {
return BI.some(targets, function (id, t) { each(itemGroup, (id, item) => {
if(s === t) { if (isNotNull(item.children)) {
value = s; const childValues = map(item.children, "value");
return true; const v = joinValue(childValues, values[idx]);
} if (isNotEmptyString(v)) {
}); value.push(v);
}); }
return value; } else {
} if (item.value === values[idx][0]) {
}, value.push(values[idx][0]);
}
}
});
});
return value;
populate: function (items) { function joinValue(sources, targets) {
BI.DownListPopup.superclass.populate.apply(this, arguments); let value = "";
this.items = []; some(sources, (idx, s) => some(targets, (id, t) => {
this.childValueMap = {}; if (s === t) {
this.fatherValueMap = {}; value = s;
this.singleValues = [];
var children = this._createPopupItems(items); return true;
var popupItem = BI.createItems(children, }
{}, { }));
adjustLength: -2
} return value;
); }
this.popup.populate(popupItem); }
},
setValue: function (valueItem) { populate(items) {
this.popup.setValue(this._digest(valueItem)); super.populate(...arguments);
}, this.items = [];
this.childValueMap = {};
this.fatherValueMap = {};
this.singleValues = [];
const children = this._createPopupItems(items);
const popupItem = createItems(
children,
{},
{
adjustLength: -2,
}
);
this.popup.populate(popupItem);
}
_getValue: function () { setValue(valueItem) {
var v = []; this.popup.setValue(this._digest(valueItem));
BI.each(this.popup.getAllButtons(), function (i, item) { }
i % 2 === 0 && v.push(item.getValue());
});
return v;
},
getValue: function () { _getValue() {
var self = this, result = []; const v = [];
var values = this._checkValues(this._getValue()); each(this.popup.getAllButtons(), (i, item) => {
BI.each(values, function (i, value) { i % 2 === 0 && v.push(item.getValue());
var valueItem = {}; });
if (BI.isNotNull(self.childValueMap[value])) {
var fartherValue = self.fatherValueMap[value]; return v;
valueItem.childValue = self.childValueMap[value]; }
valueItem.value = fartherValue;
} else {
valueItem.value = value;
}
result.push(valueItem);
});
return result;
}
getValue() {
}); const result = [];
const values = this._checkValues(this._getValue());
BI.DownListPopup.EVENT_CHANGE = "EVENT_CHANGE"; each(values, (i, value) => {
BI.DownListPopup.EVENT_SON_VALUE_CHANGE = "EVENT_SON_VALUE_CHANGE"; const valueItem = {};
BI.shortcut("bi.down_list_popup", BI.DownListPopup); if (isNotNull(this.childValueMap[value])) {
const fartherValue = this.fatherValueMap[value];
valueItem.childValue = this.childValueMap[value];
valueItem.value = fartherValue;
} else {
valueItem.value = value;
}
result.push(valueItem);
});
return result;
}
}

18
src/widget/index.js

@ -7,6 +7,9 @@ import * as datetimepane from "./datetimepane";
import * as dynamicdatetime from "./dynamicdatetime"; import * as dynamicdatetime from "./dynamicdatetime";
import * as time from "./time"; import * as time from "./time";
import * as editor from "./editor"; import * as editor from "./editor";
import * as downList from "./downlist";
import * as singleSliderItem from "./singleslider";
import * as intervalSliderItem from "./intervalslider";
import { SelectTreeCombo } from "./selecttree/selecttree.combo"; import { SelectTreeCombo } from "./selecttree/selecttree.combo";
import { SingleTreeCombo } from "./singletree/singletree.combo"; import { SingleTreeCombo } from "./singletree/singletree.combo";
import { MultiTreeCombo } from "./multitree/multi.tree.combo"; import { MultiTreeCombo } from "./multitree/multi.tree.combo";
@ -27,6 +30,9 @@ Object.assign(BI, {
...dynamicdatetime, ...dynamicdatetime,
...time, ...time,
...editor, ...editor,
...downList,
...singleSliderItem,
...intervalSliderItem,
SelectTreeCombo, SelectTreeCombo,
SingleTreeCombo, SingleTreeCombo,
MultiTreeCombo, MultiTreeCombo,
@ -44,16 +50,14 @@ export * from "./datepane";
export * from "./datetime"; export * from "./datetime";
export * from "./datetimepane"; export * from "./datetimepane";
export * from "./dynamicdatetime"; export * from "./dynamicdatetime";
export * from "./time export * from "./time";
export * from "./editor"; export * from "./editor";
export { SelectTreeCombo } from "./selecttree/selecttree.combo";
export { SingleTreeCombo } from "./singletree/singletree.combo";
export { MultiTreeCombo } from "./multitree/multi.tree.combo";
export { MultiTreeInsertCombo } from "./multitree/multi.tree.insert.combo";
export { MultiTreeListCombo } from "./multitree/multi.tree.list.combo";
export * from "./multiselect"; export * from "./multiselect";
export * from "./multiselectlist"; export * from "./multiselectlist";
export * from "./downlist";
export * from "./singleslider";
export * from "./intervalslider";
export { export {
Collapse, Collapse,
NumberEditor, NumberEditor,

2
src/widget/intervalslider/index.js

@ -0,0 +1,2 @@
export { AccurateCalculationModel } from "./model.accuratecalculation";
export { IntervalSlider } from "./intervalslider";

726
src/widget/intervalslider/intervalslider.js

@ -1,30 +1,50 @@
/** import {
* Created by zcf on 2016/9/26. shortcut,
*/ createWidget,
BI.IntervalSlider = BI.inherit(BI.Single, { toPix,
_constant: { parseFloat,
Layout,
AbsoluteLayout,
clamp,
VerticalLayout,
isEmptyString,
isNumeric,
isNull,
isInteger,
i18nText,
size,
parseInt,
isNotEmptyString,
MouseMoveTracker
} from "@/core";
import { Single, Editor } from "@/base";
import { AccurateCalculationModel } from "./model.accuratecalculation";
import { SignTextEditor, SliderIconButton } from "../singleslider";
@shortcut()
export class IntervalSlider extends Single {
static xtype = "bi.interval_slider";
_constant = {
EDITOR_WIDTH: 58, EDITOR_WIDTH: 58,
EDITOR_R_GAP: 60, EDITOR_R_GAP: 60,
EDITOR_HEIGHT: 20, EDITOR_HEIGHT: 20,
SLIDER_WIDTH_HALF: 15, SLIDER_WIDTH_HALF: 15,
SLIDER_WIDTH: 30, SLIDER_WIDTH: 30,
SLIDER_HEIGHT: 30, SLIDER_HEIGHT: 30,
TRACK_HEIGHT: 24 TRACK_HEIGHT: 24,
}, }
props = {
props: {
baseCls: "bi-interval-slider bi-slider-track", baseCls: "bi-interval-slider bi-slider-track",
digit: false, digit: false,
unit: "", unit: "",
min: 0, min: 0,
max: 100, max: 100,
value: { value: { min: "", max: "" },
min: "", };
max: "",
}
},
beforeMount: function () { static EVENT_CHANGE = "EVENT_CHANGE";
beforeMount() {
const { value, min, max } = this.options; const { value, min, max } = this.options;
this._setMinAndMax({ this._setMinAndMax({
min, min,
@ -32,90 +52,104 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
}); });
this.setValue(value); this.setValue(value);
this.populate(); this.populate();
}, }
render: function () {
var self = this; render() {
var c = this._constant; const c = this._constant;
this.enable = false; this.enable = false;
this.valueOne = ""; this.valueOne = "";
this.valueTwo = ""; this.valueTwo = "";
this.calculation = new BI.AccurateCalculationModel(); this.calculation = new AccurateCalculationModel();
this.grayTrack = BI.createWidget({ this.grayTrack = createWidget({
type: "bi.layout", type: Layout.xtype,
cls: "gray-track", cls: "gray-track",
height: 6 height: 6,
}); });
this.blueTrack = BI.createWidget({ this.blueTrack = createWidget({
type: "bi.layout", type: Layout.xtype,
cls: "blue-track bi-high-light-background", cls: "blue-track bi-high-light-background",
height: 6 height: 6,
}); });
this.track = this._createTrackWrapper(); this.track = this._createTrackWrapper();
this.labelOne = BI.createWidget({ this.labelOne = createWidget({
type: "bi.sign_text_editor", type: SignTextEditor.xtype,
cls: "slider-editor-button", cls: "slider-editor-button",
text: this.options.unit, text: this.options.unit,
allowBlank: false, allowBlank: false,
width: BI.toPix(c.EDITOR_WIDTH, 2), width: toPix(c.EDITOR_WIDTH, 2),
height: BI.toPix(c.EDITOR_HEIGHT, 2), height: toPix(c.EDITOR_HEIGHT, 2),
validationChecker: function (v) { validationChecker: v => this._checkValidation(v),
return self._checkValidation(v);
}
});
this.labelOne.element.hover(function () {
self.labelOne.element.removeClass("bi-border").addClass("bi-border");
}, function () {
self.labelOne.element.removeClass("bi-border");
}); });
this.labelOne.on(BI.Editor.EVENT_CONFIRM, function () { this.labelOne.element.hover(
var oldValueOne = self.valueOne; () => {
var v = BI.parseFloat(this.getValue()); this.labelOne.element
self.valueOne = v; .removeClass("bi-border")
var percent = self._getPercentByValue(v); .addClass("bi-border");
var significantPercent = BI.parseFloat(percent.toFixed(1));// 分成1000份 },
self._setSliderOnePosition(significantPercent); () => {
self._setBlueTrack(); this.labelOne.element.removeClass("bi-border");
self._checkLabelPosition(oldValueOne, self.valueTwo, self.valueOne, self.valueTwo); }
self.fireEvent(BI.IntervalSlider.EVENT_CHANGE); );
this.labelOne.on(Editor.EVENT_CONFIRM, () => {
const oldValueOne = this.valueOne;
const v = parseFloat(this.getValue());
this.valueOne = v;
const percent = this._getPercentByValue(v);
const significantPercent = parseFloat(percent.toFixed(1)); // 分成1000份
this._setSliderOnePosition(significantPercent);
this._setBlueTrack();
this._checkLabelPosition(
oldValueOne,
this.valueTwo,
this.valueOne,
this.valueTwo
);
this.fireEvent(IntervalSlider.EVENT_CHANGE);
}); });
this.labelTwo = BI.createWidget({ this.labelTwo = createWidget({
type: "bi.sign_text_editor", type: SignTextEditor.xtype,
cls: "slider-editor-button", cls: "slider-editor-button",
text: this.options.unit, text: this.options.unit,
allowBlank: false, allowBlank: false,
width: BI.toPix(c.EDITOR_WIDTH, 2), width: toPix(c.EDITOR_WIDTH, 2),
height: BI.toPix(c.EDITOR_HEIGHT, 2), height: toPix(c.EDITOR_HEIGHT, 2),
validationChecker: function (v) { validationChecker: v => this._checkValidation(v),
return self._checkValidation(v);
}
});
this.labelTwo.element.hover(function () {
self.labelTwo.element.removeClass("bi-border").addClass("bi-border");
}, function () {
self.labelTwo.element.removeClass("bi-border");
}); });
this.labelTwo.on(BI.Editor.EVENT_CONFIRM, function () { this.labelTwo.element.hover(
var oldValueTwo = self.valueTwo; () => {
var v = BI.parseFloat(this.getValue()); this.labelTwo.element
self.valueTwo = v; .removeClass("bi-border")
var percent = self._getPercentByValue(v); .addClass("bi-border");
var significantPercent = BI.parseFloat(percent.toFixed(1)); },
self._setSliderTwoPosition(significantPercent); () => {
self._setBlueTrack(); this.labelTwo.element.removeClass("bi-border");
self._checkLabelPosition(self.valueOne, oldValueTwo, self.valueOne, self.valueTwo); }
self.fireEvent(BI.IntervalSlider.EVENT_CHANGE); );
this.labelTwo.on(Editor.EVENT_CONFIRM, () => {
const oldValueTwo = this.valueTwo;
const v = parseFloat(this.getValue());
this.valueTwo = v;
const percent = this._getPercentByValue(v);
const significantPercent = parseFloat(percent.toFixed(1));
this._setSliderTwoPosition(significantPercent);
this._setBlueTrack();
this._checkLabelPosition(
this.valueOne,
oldValueTwo,
this.valueOne,
this.valueTwo
);
this.fireEvent(IntervalSlider.EVENT_CHANGE);
}); });
this.sliderOne = BI.createWidget({ this.sliderOne = createWidget({
type: "bi.single_slider_button" type: SliderIconButton.xtype,
}); });
this.sliderTwo = BI.createWidget({ this.sliderTwo = createWidget({
type: "bi.single_slider_button" type: SliderIconButton.xtype,
}); });
this._draggable(this.sliderOne, true); this._draggable(this.sliderOne, true);
this._draggable(this.sliderTwo, false); this._draggable(this.sliderTwo, false);
@ -127,7 +161,7 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
items: [ items: [
this._createLabelWrapper(), this._createLabelWrapper(),
{ {
type: "bi.absolute", type: AbsoluteLayout.xtype,
items: [ items: [
{ {
el: { el: {
@ -135,75 +169,95 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
horizontalAlign: "stretch", horizontalAlign: "stretch",
verticalAlign: "middle", verticalAlign: "middle",
columnSize: ["fill"], columnSize: ["fill"],
items: [{ items: [
el: this.track, {
}], el: this.track,
}
],
hgap: 10, hgap: 10,
}, },
inset: 0 inset: 0,
}, },
this._createSliderWrapper(), this._createSliderWrapper()
] ],
} }
] ],
}; };
}, }
_rePosBySizeAfterMove: function (size, isLeft) { _rePosBySizeAfterMove(size, isLeft) {
var o = this.options; const o = this.options;
var percent = size * 100 / (this._getGrayTrackLength()); const percent = (size * 100) / this._getGrayTrackLength();
var significantPercent = BI.parseFloat(percent.toFixed(1)); const significantPercent = parseFloat(percent.toFixed(1));
var v = this._getValueByPercent(significantPercent); let v = this._getValueByPercent(significantPercent);
v = this._assertValue(v); v = this._assertValue(v);
v = o.digit === false ? v : v.toFixed(o.digit); v = o.digit === false ? v : v.toFixed(o.digit);
var oldValueOne = this.valueOne, oldValueTwo = this.valueTwo; const oldValueOne = this.valueOne,
if(isLeft) { oldValueTwo = this.valueTwo;
if (isLeft) {
this._setSliderOnePosition(significantPercent); this._setSliderOnePosition(significantPercent);
this.labelOne.setValue(v); this.labelOne.setValue(v);
this.valueOne = v; this.valueOne = v;
this._checkLabelPosition(oldValueOne, oldValueTwo, v, this.valueTwo); this._checkLabelPosition(
}else{ oldValueOne,
oldValueTwo,
v,
this.valueTwo
);
} else {
this._setSliderTwoPosition(significantPercent); this._setSliderTwoPosition(significantPercent);
this.labelTwo.setValue(v); this.labelTwo.setValue(v);
this.valueTwo = v; this.valueTwo = v;
this._checkLabelPosition(oldValueOne, oldValueTwo, this.valueOne, v); this._checkLabelPosition(
oldValueOne,
oldValueTwo,
this.valueOne,
v
);
} }
this._setBlueTrack(); this._setBlueTrack();
}, }
_rePosBySizeAfterStop: function (size, isLeft) { _rePosBySizeAfterStop(size, isLeft) {
var percent = size * 100 / (this._getGrayTrackLength()); const percent = (size * 100) / this._getGrayTrackLength();
var significantPercent = BI.parseFloat(percent.toFixed(1)); const significantPercent = parseFloat(percent.toFixed(1));
isLeft ? this._setSliderOnePosition(significantPercent) : this._setSliderTwoPosition(significantPercent); isLeft
}, ? this._setSliderOnePosition(significantPercent)
: this._setSliderTwoPosition(significantPercent);
_draggable: function (widget, isLeft) { }
var self = this, o = this.options;
var startDrag = false; _draggable(widget, isLeft) {
var size = 0, offset = 0, defaultSize = 0; let startDrag = false;
var mouseMoveTracker = new BI.MouseMoveTracker(function (deltaX) { let size = 0,
if (mouseMoveTracker.isDragging()) { offset = 0,
startDrag = true; defaultSize = 0;
offset += deltaX; const mouseMoveTracker = new MouseMoveTracker(
size = optimizeSize(defaultSize + offset); (deltaX => {
widget.element.addClass("dragging"); if (mouseMoveTracker.isDragging()) {
self._rePosBySizeAfterMove(size, isLeft); startDrag = true;
} offset += deltaX;
}, function () { size = optimizeSize(defaultSize + offset);
if (startDrag === true) { widget.element.addClass("dragging");
size = optimizeSize(size); this._rePosBySizeAfterMove(size, isLeft);
self._rePosBySizeAfterStop(size, isLeft); }
size = 0; }),
offset = 0; (() => {
defaultSize = size; if (startDrag === true) {
startDrag = false; size = optimizeSize(size);
} this._rePosBySizeAfterStop(size, isLeft);
widget.element.removeClass("dragging"); size = 0;
mouseMoveTracker.releaseMouseMoves(); offset = 0;
self.fireEvent(BI.IntervalSlider.EVENT_CHANGE); defaultSize = size;
}, window); startDrag = false;
}
widget.element.removeClass("dragging");
mouseMoveTracker.releaseMouseMoves();
this.fireEvent(IntervalSlider.EVENT_CHANGE);
}),
window
);
widget.element.on("mousedown", function (event) { widget.element.on("mousedown", function (event) {
if(!widget.isEnabled()) { if (!widget.isEnabled()) {
return; return;
} }
defaultSize = this.offsetLeft; defaultSize = this.offsetLeft;
@ -211,42 +265,47 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
mouseMoveTracker.captureMouseMoves(event); mouseMoveTracker.captureMouseMoves(event);
}); });
function optimizeSize (s) { const optimizeSize = s => clamp(s, 0, this._getGrayTrackLength());
return BI.clamp(s, 0, self._getGrayTrackLength()); }
}
},
_createLabelWrapper: function () { _createLabelWrapper() {
var c = this._constant; const c = this._constant;
return { return {
el: { el: {
type: "bi.vertical", type: VerticalLayout.xtype,
items: [{ items: [
type: "bi.absolute", {
items: [{ type: AbsoluteLayout.xtype,
el: this.labelOne, items: [
top: 0, {
left: 0, el: this.labelOne,
}] top: 0,
}, { left: 0,
type: "bi.absolute", }
items: [{ ],
el: this.labelTwo, },
top: 0, {
right: 0, type: AbsoluteLayout.xtype,
}] items: [
}], {
el: this.labelTwo,
top: 0,
right: 0,
}
],
}
],
rgap: c.EDITOR_R_GAP, rgap: c.EDITOR_R_GAP,
height: c.SLIDER_HEIGHT height: c.SLIDER_HEIGHT,
}, },
top: 0, top: 0,
left: 0, left: 0,
width: "100%" width: "100%",
}; };
}, }
_createSliderWrapper: function () { _createSliderWrapper() {
var c = this._constant;
return { return {
el: { el: {
type: "bi.horizontal", type: "bi.horizontal",
@ -254,7 +313,7 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
verticalAlign: "middle", verticalAlign: "middle",
items: [ items: [
{ {
type: "bi.absolute", type: AbsoluteLayout.xtype,
height: 12, height: 12,
width: "fill", width: "fill",
items: [ items: [
@ -262,24 +321,25 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
el: this.sliderOne, el: this.sliderOne,
top: 0, top: 0,
bottom: 0, bottom: 0,
left: 0 left: 0,
}, { },
{
el: this.sliderTwo, el: this.sliderTwo,
top: 0, top: 0,
bottom: 0, bottom: 0,
left: "100%" left: "100%",
} }
], ],
} }
], ],
hgap: 10, hgap: 10,
}, },
inset: 0 inset: 0,
}; };
}, }
_createTrackWrapper: function () { _createTrackWrapper() {
return BI.createWidget({ return createWidget({
type: "bi.horizontal", type: "bi.horizontal",
cls: "track-wrapper", cls: "track-wrapper",
horizontalAlign: "stretch", horizontalAlign: "stretch",
@ -288,100 +348,110 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
scrollx: false, scrollx: false,
items: [ items: [
{ {
type: "bi.absolute", type: AbsoluteLayout.xtype,
height: 6, height: 6,
items: [{ items: [
el: this.grayTrack, {
top: 0, el: this.grayTrack,
left: 0, top: 0,
bottom: 0, left: 0,
width: "100%" bottom: 0,
}, { width: "100%",
el: this.blueTrack, },
top: 0, {
left: 0, el: this.blueTrack,
bottom: 0, top: 0,
width: "0%" left: 0,
}] bottom: 0,
width: "0%",
}
],
} }
], ],
}); });
}, }
_checkValidation: function (v) { _checkValidation(v) {
var o = this.options; const o = this.options;
var valid = false; let valid = false;
// 像90.这样的既不属于整数又不属于小数,是不合法的值 // 像90.这样的既不属于整数又不属于小数,是不合法的值
var dotText = (v + "").split(".")[1]; let dotText = (`${v}`).split(".")[1];
if (BI.isEmptyString(dotText)) { // eslint-disable-next-line no-empty
}else{ if (isEmptyString(dotText)) {
if (BI.isNumeric(v) && !(BI.isNull(v) || v < this.min || v > this.max)) { } else {
if (isNumeric(v) && !(isNull(v) || v < this.min || v > this.max)) {
// 虽然规定了所填写的小数位数,但是我们认为所有的整数都是满足设置的小数位数的 // 虽然规定了所填写的小数位数,但是我们认为所有的整数都是满足设置的小数位数的
// 100等价于100.0 100.00 100.000 // 100等价于100.0 100.00 100.000
if(o.digit === false || BI.isInteger(v)) { if (o.digit === false || isInteger(v)) {
valid = true; valid = true;
}else{ } else {
dotText = dotText || ""; dotText = dotText || "";
valid = (dotText.length === o.digit); valid = dotText.length === o.digit;
} }
} }
} }
return valid; return valid;
}, }
_checkOverlap: function () { _checkOverlap() {
var labelOneLeft = this.labelOne.element[0].offsetLeft; const labelOneLeft = this.labelOne.element[0].offsetLeft;
var labelTwoLeft = this.labelTwo.element[0].offsetLeft; const labelTwoLeft = this.labelTwo.element[0].offsetLeft;
if (labelOneLeft <= labelTwoLeft) { if (labelOneLeft <= labelTwoLeft) {
if ((labelTwoLeft - labelOneLeft) < 90) { if (labelTwoLeft - labelOneLeft < 90) {
this.labelTwo.element.css({top: 40}); this.labelTwo.element.css({ top: 40 });
} else { } else {
this.labelTwo.element.css({top: 0}); this.labelTwo.element.css({ top: 0 });
} }
} else { } else {
if ((labelOneLeft - labelTwoLeft) < 90) { if (labelOneLeft - labelTwoLeft < 90) {
this.labelTwo.element.css({top: 40}); this.labelTwo.element.css({ top: 40 });
} else { } else {
this.labelTwo.element.css({top: 0}); this.labelTwo.element.css({ top: 0 });
} }
} }
}, }
_checkLabelPosition: function (oldValueOne, oldValueTwo, valueOne, valueTwo, isLeft) { _checkLabelPosition(oldValueOne, oldValueTwo, valueOne, valueTwo, isLeft) {
oldValueOne = BI.parseFloat(oldValueOne); oldValueOne = parseFloat(oldValueOne);
oldValueTwo = BI.parseFloat(oldValueTwo); oldValueTwo = parseFloat(oldValueTwo);
valueOne = BI.parseFloat(valueOne); valueOne = parseFloat(valueOne);
valueTwo = BI.parseFloat(valueTwo); valueTwo = parseFloat(valueTwo);
if((oldValueOne <= oldValueTwo && valueOne > valueTwo) || (oldValueOne >= oldValueTwo && valueOne < valueTwo)) { if (
var isSliderOneLeft = BI.parseFloat(this.labelOne.getValue()) < BI.parseFloat(this.labelTwo.getValue()); (oldValueOne <= oldValueTwo && valueOne > valueTwo) ||
(oldValueOne >= oldValueTwo && valueOne < valueTwo)
) {
const isSliderOneLeft =
parseFloat(this.labelOne.getValue()) <
parseFloat(this.labelTwo.getValue());
this._resetLabelPosition(!isSliderOneLeft); this._resetLabelPosition(!isSliderOneLeft);
} }
}, }
_resetLabelPosition: function(needReverse) { _resetLabelPosition(needReverse) {
this.labelOne.element.css({left: needReverse ? "100%" : "0%"}); this.labelOne.element.css({ left: needReverse ? "100%" : "0%" });
this.labelTwo.element.css({left: needReverse ? "0%" : "100%"}); this.labelTwo.element.css({ left: needReverse ? "0%" : "100%" });
}, }
_setSliderOnePosition: function (percent) { _setSliderOnePosition(percent) {
this.sliderOne.element.css({left: percent + "%"}); this.sliderOne.element.css({ left: `${percent}%` });
}, }
_setSliderTwoPosition: function (percent) { _setSliderTwoPosition(percent) {
this.sliderTwo.element.css({left: percent + "%"}); this.sliderTwo.element.css({ left: `${percent}%` });
}, }
_setBlueTrackLeft: function (percent) { _setBlueTrackLeft(percent) {
this.blueTrack.element.css({left: percent + "%"}); this.blueTrack.element.css({ left: `${percent}%` });
}, }
_setBlueTrackWidth: function (percent) { _setBlueTrackWidth(percent) {
this.blueTrack.element.css({width: percent + "%"}); this.blueTrack.element.css({ width: `${percent}%` });
}, }
_setBlueTrack: function () { _setBlueTrack() {
var percentOne = this._getPercentByValue(this.labelOne.getValue()); const percentOne = this._getPercentByValue(this.labelOne.getValue());
var percentTwo = this._getPercentByValue(this.labelTwo.getValue()); const percentTwo = this._getPercentByValue(this.labelTwo.getValue());
if (percentOne <= percentTwo) { if (percentOne <= percentTwo) {
this._setBlueTrackLeft(percentOne); this._setBlueTrackLeft(percentOne);
this._setBlueTrackWidth(percentTwo - percentOne); this._setBlueTrackWidth(percentTwo - percentOne);
@ -389,133 +459,165 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
this._setBlueTrackLeft(percentTwo); this._setBlueTrackLeft(percentTwo);
this._setBlueTrackWidth(percentOne - percentTwo); this._setBlueTrackWidth(percentOne - percentTwo);
} }
}, }
_setAllPosition: function (one, two) { _setAllPosition(one, two) {
this._setSliderOnePosition(one); this._setSliderOnePosition(one);
this._setSliderTwoPosition(two); this._setSliderTwoPosition(two);
this._setBlueTrack(); this._setBlueTrack();
}, }
_setVisible: function (visible) { _setVisible(visible) {
this.sliderOne.setVisible(visible); this.sliderOne.setVisible(visible);
this.sliderTwo.setVisible(visible); this.sliderTwo.setVisible(visible);
this.labelOne.setVisible(visible); this.labelOne.setVisible(visible);
this.labelTwo.setVisible(visible); this.labelTwo.setVisible(visible);
}, }
_setErrorText: function () { _setErrorText() {
var errorText = BI.i18nText("BI-Basic_Please_Enter_Number_Between", this.min, this.max); const errorText = i18nText(
"BI-Basic_Please_Enter_Number_Between",
this.min,
this.max
);
this.labelOne.setErrorText(errorText); this.labelOne.setErrorText(errorText);
this.labelTwo.setErrorText(errorText); this.labelTwo.setErrorText(errorText);
}, }
_getGrayTrackLength: function () { _getGrayTrackLength() {
return this.grayTrack.element[0].scrollWidth; return this.grayTrack.element[0].scrollWidth;
}, }
// 其中取max-min后保留4为有效数字后的值的小数位数为最终value的精度 _getValueByPercent(percent) {
// 端点处的值有可能因为min,max相差量级很大(precision很大)而丢失精度,此时直接返回端点值即可 // return (((max-min)*percent)/100+min)
_getValueByPercent: function (percent) {// return (((max-min)*percent)/100+min)
if (percent === 0) { if (percent === 0) {
return this.min; return this.min;
} }
if (percent === 100) { if (percent === 100) {
return this.max; return this.max;
} }
var sub = this.calculation.accurateSubtraction(this.max, this.min); const sub = this.calculation.accurateSubtraction(this.max, this.min);
var mul = this.calculation.accurateMultiplication(sub, percent); const mul = this.calculation.accurateMultiplication(sub, percent);
var div = this.calculation.accurateDivisionTenExponent(mul, 2); const div = this.calculation.accurateDivisionTenExponent(mul, 2);
if(this.precision < 0) { if (this.precision < 0) {
var value = BI.parseFloat(this.calculation.accurateAddition(div, this.min)); const value = parseFloat(
var reduceValue = Math.round(this.calculation.accurateDivisionTenExponent(value, -this.precision)); this.calculation.accurateAddition(div, this.min)
return this.calculation.accurateMultiplication(reduceValue, Math.pow(10, -this.precision)); );
const reduceValue = Math.round(
this.calculation.accurateDivisionTenExponent(
value,
-this.precision
)
);
return this.calculation.accurateMultiplication(
reduceValue,
Math.pow(10, -this.precision)
);
} }
return BI.parseFloat(this.calculation.accurateAddition(div, this.min).toFixed(this.precision));
return parseFloat(
}, this.calculation
.accurateAddition(div, this.min)
.toFixed(this.precision)
);
}
_getPercentByValue: function (v) { _getPercentByValue(v) {
return (v - this.min) * 100 / (this.max - this.min); return ((v - this.min) * 100) / (this.max - this.min);
}, }
_getPrecision: function () { _getPrecision() {
// 计算每一份值的精度(最大值和最小值的差值保留4为有效数字后的精度) // 计算每一份值的精度(最大值和最小值的差值保留4为有效数字后的精度)
// 如果差值的整数位数大于4,toPrecision(4)得到的是科学计数法123456 => 1.235e+5 // 如果差值的整数位数大于4,toPrecision(4)得到的是科学计数法123456 => 1.235e+5
// 返回非负值: 保留的小数位数 // 返回非负值: 保留的小数位数
// 返回负值: 保留的10^n精度中的n // 返回负值: 保留的10^n精度中的n
var sub = this.calculation.accurateSubtraction(this.max, this.min); const sub = this.calculation.accurateSubtraction(this.max, this.min);
var pre = sub.toPrecision(4); const pre = sub.toPrecision(4);
// 科学计数法 // 科学计数法
var eIndex = pre.indexOf("e"); const eIndex = pre.indexOf("e");
var arr = []; let arr = [];
if(eIndex > -1) { if (eIndex > -1) {
arr = pre.split("e"); arr = pre.split("e");
var decimalPartLength = BI.size(arr[0].split(".")[1]); const decimalPartLength = size(arr[0].split(".")[1]);
var sciencePartLength = BI.parseInt(arr[1].substring(1)); const sciencePartLength = parseInt(arr[1].substring(1));
return decimalPartLength - sciencePartLength; return decimalPartLength - sciencePartLength;
} }
arr = pre.split("."); arr = pre.split(".");
return arr.length > 1 ? arr[1].length : 0; return arr.length > 1 ? arr[1].length : 0;
}
}, _assertValue(value) {
if (value <= this.min) {
_assertValue: function (value) {
if(value <= this.min) {
return this.min; return this.min;
} }
if(value >= this.max) { if (value >= this.max) {
return this.max; return this.max;
} }
return value; return value;
}, }
_setEnable: function (b) { _setEnable(b) {
BI.IntervalSlider.superclass._setEnable.apply(this, [b]); super._setEnable.apply(this, [b]);
if(b) { if (b) {
this.blueTrack.element.removeClass("disabled-blue-track").addClass("blue-track"); this.blueTrack.element
.removeClass("disabled-blue-track")
.addClass("blue-track");
} else { } else {
this.blueTrack.element.removeClass("blue-track").addClass("disabled-blue-track"); this.blueTrack.element
.removeClass("blue-track")
.addClass("disabled-blue-track");
} }
}, }
getValue: function () { getValue() {
if (this.valueOne <= this.valueTwo) { if (this.valueOne <= this.valueTwo) {
return {min: this.valueOne, max: this.valueTwo}; return { min: this.valueOne, max: this.valueTwo };
} }
return {min: this.valueTwo, max: this.valueOne};
return { min: this.valueTwo, max: this.valueOne };
}, }
_setMinAndMax: function (v) { _setMinAndMax(v) {
var minNumber = BI.parseFloat(v.min); const minNumber = parseFloat(v.min);
var maxNumber = BI.parseFloat(v.max); const maxNumber = parseFloat(v.max);
if ((!isNaN(minNumber)) && (!isNaN(maxNumber)) && (maxNumber >= minNumber)) { if (!isNaN(minNumber) && !isNaN(maxNumber) && maxNumber >= minNumber) {
this.min = minNumber; this.min = minNumber;
this.max = maxNumber; this.max = maxNumber;
this.valueOne = minNumber; this.valueOne = minNumber;
this.valueTwo = maxNumber; this.valueTwo = maxNumber;
this.precision = this._getPrecision(); this.precision = this._getPrecision();
} }
}, }
setMinAndMax: function (v) { setMinAndMax(v) {
this._setMinAndMax(v); this._setMinAndMax(v);
this.setEnable(v.min <= v.max); this.setEnable(v.min <= v.max);
}, }
setValue: function (v) { setValue(v) {
var o = this.options; const o = this.options;
var valueOne = BI.parseFloat(v.min); let valueOne = parseFloat(v.min);
var valueTwo = BI.parseFloat(v.max); let valueTwo = parseFloat(v.max);
valueOne = o.digit === false ? valueOne : BI.parseFloat(valueOne.toFixed(o.digit)); valueOne =
valueTwo = o.digit === false ? valueTwo : BI.parseFloat(valueTwo.toFixed(o.digit)); o.digit === false
? valueOne
: parseFloat(valueOne.toFixed(o.digit));
valueTwo =
o.digit === false
? valueTwo
: parseFloat(valueTwo.toFixed(o.digit));
if (!isNaN(valueOne) && !isNaN(valueTwo)) { if (!isNaN(valueOne) && !isNaN(valueTwo)) {
if (this._checkValidation(valueOne)) { if (this._checkValidation(valueOne)) {
this.valueOne = (this.valueOne <= this.valueTwo ? valueOne : valueTwo); this.valueOne =
this.valueOne <= this.valueTwo ? valueOne : valueTwo;
} }
if (this._checkValidation(valueTwo)) { if (this._checkValidation(valueTwo)) {
this.valueTwo = (this.valueOne <= this.valueTwo ? valueTwo : valueOne); this.valueTwo =
this.valueOne <= this.valueTwo ? valueTwo : valueOne;
} }
if (valueOne < this.min) { if (valueOne < this.min) {
this.valueOne = this.min; this.valueOne = this.min;
@ -524,9 +626,9 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
this.valueTwo = this.max; this.valueTwo = this.max;
} }
} }
}, }
reset: function () { reset() {
this._setVisible(false); this._setVisible(false);
this.enable = false; this.enable = false;
this.valueOne = ""; this.valueOne = "";
@ -534,18 +636,32 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
this.min = NaN; this.min = NaN;
this.max = NaN; this.max = NaN;
this._setBlueTrackWidth(0); this._setBlueTrackWidth(0);
}, }
populate: function () { populate() {
var o = this.options; const o = this.options;
if (!isNaN(this.min) && !isNaN(this.max)) { if (!isNaN(this.min) && !isNaN(this.max)) {
this.enable = true; this.enable = true;
this._setVisible(true); this._setVisible(true);
this._setErrorText(); this._setErrorText();
if ((BI.isNumeric(this.valueOne) || BI.isNotEmptyString(this.valueOne)) && (BI.isNumeric(this.valueTwo) || BI.isNotEmptyString(this.valueTwo))) { if (
this.labelOne.setValue(o.digit === false ? this.valueOne : BI.parseFloat(this.valueOne).toFixed(o.digit)); (isNumeric(this.valueOne) || isNotEmptyString(this.valueOne)) &&
this.labelTwo.setValue(o.digit === false ? this.valueTwo : BI.parseFloat(this.valueTwo).toFixed(o.digit)); (isNumeric(this.valueTwo) || isNotEmptyString(this.valueTwo))
this._setAllPosition(this._getPercentByValue(this.valueOne), this._getPercentByValue(this.valueTwo)); ) {
this.labelOne.setValue(
o.digit === false
? this.valueOne
: parseFloat(this.valueOne).toFixed(o.digit)
);
this.labelTwo.setValue(
o.digit === false
? this.valueTwo
: parseFloat(this.valueTwo).toFixed(o.digit)
);
this._setAllPosition(
this._getPercentByValue(this.valueOne),
this._getPercentByValue(this.valueTwo)
);
} else { } else {
this.labelOne.setValue(this.min); this.labelOne.setValue(this.min);
this.labelTwo.setValue(this.max); this.labelTwo.setValue(this.max);
@ -554,6 +670,4 @@ BI.IntervalSlider = BI.inherit(BI.Single, {
this._resetLabelPosition(this.valueOne > this.valueTwo); this._resetLabelPosition(this.valueOne > this.valueTwo);
} }
} }
}); }
BI.IntervalSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.interval_slider", BI.IntervalSlider);

271
src/widget/intervalslider/model.accuratecalculation.js

@ -1,172 +1,239 @@
/** import { Widget, extend, parseInt, parseFloat } from "@/core";
* Created by zcf on 2017/3/1.
* 万恶的IEEE-754 export class AccurateCalculationModel extends Widget {
* 使用字符串精确计算含小数加法减法乘法和10的指数倍除法支持负数 _defaultConfig() {
*/ return extend(super._defaultConfig(...arguments), {
BI.AccurateCalculationModel = BI.inherit(BI.Widget, { baseCls: "",
_defaultConfig: function () {
return BI.extend(BI.AccurateCalculationModel.superclass._defaultConfig.apply(this, arguments), {
baseCls: ""
}); });
}, }
_init: function () { _init() {
BI.AccurateCalculationModel.superclass._init.apply(this, arguments); super._init(...arguments);
}, }
_getMagnitude: function (n) { _getMagnitude(n) {
var magnitude = "1"; let magnitude = "1";
for (var i = 0; i < n; i++) { for (let i = 0; i < n; i++) {
magnitude += "0"; magnitude += "0";
} }
return BI.parseInt(magnitude);
}, return parseInt(magnitude);
}
_formatDecimal: function (stringNumber1, stringNumber2) { _formatDecimal(stringNumber1, stringNumber2) {
if (stringNumber1.numDecimalLength === stringNumber2.numDecimalLength) { if (stringNumber1.numDecimalLength === stringNumber2.numDecimalLength) {
return; return;
} }
var magnitudeDiff = stringNumber1.numDecimalLength - stringNumber2.numDecimalLength; let magnitudeDiff =
stringNumber1.numDecimalLength - stringNumber2.numDecimalLength;
let needAddZero;
if (magnitudeDiff > 0) { if (magnitudeDiff > 0) {
var needAddZero = stringNumber2; needAddZero = stringNumber2;
} else { } else {
var needAddZero = stringNumber1; needAddZero = stringNumber1;
magnitudeDiff = (0 - magnitudeDiff); magnitudeDiff = 0 - magnitudeDiff;
} }
for (var i = 0; i < magnitudeDiff; i++) { for (let i = 0; i < magnitudeDiff; i++) {
if (needAddZero.numDecimal === "0" && i === 0) { if (needAddZero.numDecimal === "0" && i === 0) {
continue; continue;
} }
needAddZero.numDecimal += "0"; needAddZero.numDecimal += "0";
} }
}, }
_stringNumberFactory: function (num) { _stringNumberFactory(num) {
var strNum = num.toString(); const strNum = num.toString();
var numStrArray = strNum.split("."); const numStrArray = strNum.split(".");
var numInteger = numStrArray[0]; const numInteger = numStrArray[0];
let numDecimal;
let numDecimalLength;
if (numStrArray.length === 1) { if (numStrArray.length === 1) {
var numDecimal = "0"; numDecimal = "0";
var numDecimalLength = 0; numDecimalLength = 0;
} else { } else {
var numDecimal = numStrArray[1]; numDecimal = numStrArray[1];
var numDecimalLength = numStrArray[1].length; numDecimalLength = numStrArray[1].length;
} }
return { return {
numInteger: numInteger, numInteger,
numDecimal: numDecimal, numDecimal,
numDecimalLength: numDecimalLength numDecimalLength,
}; };
}, }
_accurateSubtraction: function (num1, num2) {// num1-num2 && num1>num2 _accurateSubtraction(num1, num2) {
var stringNumber1 = this._stringNumberFactory(num1); // num1-num2 && num1>num2
var stringNumber2 = this._stringNumberFactory(num2); const stringNumber1 = this._stringNumberFactory(num1);
const stringNumber2 = this._stringNumberFactory(num2);
// 整数部分计算 // 整数部分计算
var integerResult = BI.parseInt(stringNumber1.numInteger) - BI.parseInt(stringNumber2.numInteger); let integerResult =
parseInt(stringNumber1.numInteger) -
parseInt(stringNumber2.numInteger);
// 小数部分 // 小数部分
this._formatDecimal(stringNumber1, stringNumber2); this._formatDecimal(stringNumber1, stringNumber2);
var decimalMaxLength = getDecimalMaxLength(stringNumber1, stringNumber2); const decimalMaxLength = getDecimalMaxLength(
stringNumber1,
stringNumber2
);
if (BI.parseInt(stringNumber1.numDecimal) >= BI.parseInt(stringNumber2.numDecimal)) { let decimalResultTemp;
var decimalResultTemp = (BI.parseInt(stringNumber1.numDecimal) - BI.parseInt(stringNumber2.numDecimal)).toString(); let decimalResult;
var decimalResult = addZero(decimalResultTemp, decimalMaxLength);
} else {// 否则借位 if (
parseInt(stringNumber1.numDecimal) >=
parseInt(stringNumber2.numDecimal)
) {
decimalResultTemp = (
parseInt(stringNumber1.numDecimal) -
parseInt(stringNumber2.numDecimal)
).toString();
decimalResult = addZero(decimalResultTemp, decimalMaxLength);
} else {
// 否则借位
integerResult--; integerResult--;
var borrow = this._getMagnitude(decimalMaxLength); const borrow = this._getMagnitude(decimalMaxLength);
var decimalResultTemp = (borrow + BI.parseInt(stringNumber1.numDecimal) - BI.parseInt(stringNumber2.numDecimal)).toString(); decimalResultTemp = (
var decimalResult = addZero(decimalResultTemp, decimalMaxLength); borrow +
parseInt(stringNumber1.numDecimal) -
parseInt(stringNumber2.numDecimal)
).toString();
decimalResult = addZero(decimalResultTemp, decimalMaxLength);
} }
var result = integerResult + "." + decimalResult; const result = `${integerResult}.${decimalResult}`;
return BI.parseFloat(result);
return parseFloat(result);
function getDecimalMaxLength (num1, num2) { function getDecimalMaxLength(num1, num2) {
if (num1.numDecimal.length >= num2.numDecimal.length) { if (num1.numDecimal.length >= num2.numDecimal.length) {
return num1.numDecimal.length; return num1.numDecimal.length;
} }
return num2.numDecimal.length; return num2.numDecimal.length;
} }
function addZero (resultTemp, length) { function addZero(resultTemp, length) {
var diff = length - resultTemp.length; const diff = length - resultTemp.length;
for (var i = 0; i < diff; i++) { for (let i = 0; i < diff; i++) {
resultTemp = "0" + resultTemp; resultTemp = `0${resultTemp}`;
} }
return resultTemp; return resultTemp;
} }
}, }
_accurateAddition: function (num1, num2) {// 加法结合律 _accurateAddition(num1, num2) {
var stringNumber1 = this._stringNumberFactory(num1); // 加法结合律
var stringNumber2 = this._stringNumberFactory(num2); const stringNumber1 = this._stringNumberFactory(num1);
const stringNumber2 = this._stringNumberFactory(num2);
// 整数部分计算 // 整数部分计算
var integerResult = BI.parseInt(stringNumber1.numInteger) + BI.parseInt(stringNumber2.numInteger); let integerResult =
parseInt(stringNumber1.numInteger) +
parseInt(stringNumber2.numInteger);
// 小数部分 // 小数部分
this._formatDecimal(stringNumber1, stringNumber2); this._formatDecimal(stringNumber1, stringNumber2);
var decimalResult = (BI.parseInt(stringNumber1.numDecimal) + BI.parseInt(stringNumber2.numDecimal)).toString(); let decimalResult = (
parseInt(stringNumber1.numDecimal) +
parseInt(stringNumber2.numDecimal)
).toString();
if (decimalResult !== "0") { if (decimalResult !== "0") {
if (decimalResult.length <= stringNumber1.numDecimal.length) { if (decimalResult.length <= stringNumber1.numDecimal.length) {
decimalResult = addZero(decimalResult, stringNumber1.numDecimal.length); decimalResult = addZero(
decimalResult,
stringNumber1.numDecimal.length
);
} else { } else {
integerResult++;// 进一 integerResult++; // 进一
decimalResult = decimalResult.slice(1); decimalResult = decimalResult.slice(1);
} }
} }
var result = integerResult + "." + decimalResult; const result = `${integerResult}.${decimalResult}`;
return BI.parseFloat(result);
return parseFloat(result);
function addZero (resultTemp, length) { function addZero(resultTemp, length) {
var diff = length - resultTemp.length; const diff = length - resultTemp.length;
for (var i = 0; i < diff; i++) { for (let i = 0; i < diff; i++) {
resultTemp = "0" + resultTemp; resultTemp = `0${resultTemp}`;
} }
return resultTemp; return resultTemp;
} }
}, }
_accurateMultiplication: function (num1, num2) {// 乘法分配律 _accurateMultiplication(num1, num2) {
var stringNumber1 = this._stringNumberFactory(num1); // 乘法分配律
var stringNumber2 = this._stringNumberFactory(num2); const stringNumber1 = this._stringNumberFactory(num1);
const stringNumber2 = this._stringNumberFactory(num2);
// 整数部分计算 // 整数部分计算
var integerResult = BI.parseInt(stringNumber1.numInteger) * BI.parseInt(stringNumber2.numInteger); const integerResult =
parseInt(stringNumber1.numInteger) *
parseInt(stringNumber2.numInteger);
// num1的小数和num2的整数 // num1的小数和num2的整数
var dec1Int2 = this._accurateDivisionTenExponent(BI.parseInt(stringNumber1.numDecimal) * BI.parseInt(stringNumber2.numInteger), stringNumber1.numDecimalLength); const dec1Int2 = this._accurateDivisionTenExponent(
parseInt(stringNumber1.numDecimal) *
parseInt(stringNumber2.numInteger),
stringNumber1.numDecimalLength
);
// num1的整数和num2的小数 // num1的整数和num2的小数
var int1dec2 = this._accurateDivisionTenExponent(BI.parseInt(stringNumber1.numInteger) * BI.parseInt(stringNumber2.numDecimal), stringNumber2.numDecimalLength); const int1dec2 = this._accurateDivisionTenExponent(
parseInt(stringNumber1.numInteger) *
parseInt(stringNumber2.numDecimal),
stringNumber2.numDecimalLength
);
// 小数*小数 // 小数*小数
var dec1dec2 = this._accurateDivisionTenExponent(BI.parseInt(stringNumber1.numDecimal) * BI.parseInt(stringNumber2.numDecimal), (stringNumber1.numDecimalLength + stringNumber2.numDecimalLength)); const dec1dec2 = this._accurateDivisionTenExponent(
parseInt(stringNumber1.numDecimal) *
parseInt(stringNumber2.numDecimal),
stringNumber1.numDecimalLength + stringNumber2.numDecimalLength
);
return this._accurateAddition(this._accurateAddition(this._accurateAddition(integerResult, dec1Int2), int1dec2), dec1dec2); return this._accurateAddition(
}, this._accurateAddition(
this._accurateAddition(integerResult, dec1Int2),
int1dec2
),
dec1dec2
);
}
_accurateDivisionTenExponent: function (num, n) {// num/10^n && n>0 _accurateDivisionTenExponent(num, n) {
var stringNumber = this._stringNumberFactory(num); // num/10^n && n>0
const stringNumber = this._stringNumberFactory(num);
let integerResult, partDecimalResult;
if (stringNumber.numInteger.length > n) { if (stringNumber.numInteger.length > n) {
var integerResult = stringNumber.numInteger.slice(0, (stringNumber.numInteger.length - n)); integerResult = stringNumber.numInteger.slice(
var partDecimalResult = stringNumber.numInteger.slice(-n); 0,
stringNumber.numInteger.length - n
);
partDecimalResult = stringNumber.numInteger.slice(-n);
} else { } else {
var integerResult = "0"; integerResult = "0";
var partDecimalResult = addZero(stringNumber.numInteger, n); partDecimalResult = addZero(stringNumber.numInteger, n);
} }
var result = integerResult + "." + partDecimalResult + stringNumber.numDecimal; const result =
return BI.parseFloat(result); `${integerResult}.${partDecimalResult}${stringNumber.numDecimal}`;
return parseFloat(result);
function addZero (resultTemp, length) { function addZero(resultTemp, length) {
var diff = length - resultTemp.length; const diff = length - resultTemp.length;
for (var i = 0; i < diff; i++) { for (let i = 0; i < diff; i++) {
resultTemp = "0" + resultTemp; resultTemp = `0${resultTemp}`;
} }
return resultTemp; return resultTemp;
} }
}, }
accurateSubtraction: function (num1, num2) { accurateSubtraction(num1, num2) {
if (num1 >= 0 && num2 >= 0) { if (num1 >= 0 && num2 >= 0) {
if (num1 >= num2) { if (num1 >= num2) {
return this._accurateSubtraction(num1, num2); return this._accurateSubtraction(num1, num2);
} }
return -this._accurateSubtraction(num2, num1); return -this._accurateSubtraction(num2, num1);
} }
if (num1 >= 0 && num2 < 0) { if (num1 >= 0 && num2 < 0) {
@ -179,11 +246,12 @@ BI.AccurateCalculationModel = BI.inherit(BI.Widget, {
if (num1 >= num2) { if (num1 >= num2) {
return this._accurateSubtraction(-num2, -num1); return this._accurateSubtraction(-num2, -num1);
} }
return this._accurateSubtraction(-num1, -num2); return this._accurateSubtraction(-num1, -num2);
} }
}, }
accurateAddition: function (num1, num2) { accurateAddition(num1, num2) {
if (num1 >= 0 && num2 >= 0) { if (num1 >= 0 && num2 >= 0) {
return this._accurateAddition(num1, num2); return this._accurateAddition(num1, num2);
} }
@ -196,9 +264,9 @@ BI.AccurateCalculationModel = BI.inherit(BI.Widget, {
if (num1 < 0 && num2 < 0) { if (num1 < 0 && num2 < 0) {
return -this._accurateAddition(-num1, -num2); return -this._accurateAddition(-num1, -num2);
} }
}, }
accurateMultiplication: function (num1, num2) { accurateMultiplication(num1, num2) {
if (num1 >= 0 && num2 >= 0) { if (num1 >= 0 && num2 >= 0) {
return this._accurateMultiplication(num1, num2); return this._accurateMultiplication(num1, num2);
} }
@ -211,12 +279,13 @@ BI.AccurateCalculationModel = BI.inherit(BI.Widget, {
if (num1 < 0 && num2 < 0) { if (num1 < 0 && num2 < 0) {
return this._accurateMultiplication(-num1, -num2); return this._accurateMultiplication(-num1, -num2);
} }
}, }
accurateDivisionTenExponent: function (num1, n) { accurateDivisionTenExponent(num1, n) {
if (num1 >= 0) { if (num1 >= 0) {
return this._accurateDivisionTenExponent(num1, n); return this._accurateDivisionTenExponent(num1, n);
} }
return -this._accurateDivisionTenExponent(-num1, n); return -this._accurateDivisionTenExponent(-num1, n);
} }
}); }

265
src/widget/singleslider/button/editor.sign.text.js

@ -1,196 +1,217 @@
BI.SignTextEditor = BI.inherit(BI.Widget, { import {
_defaultConfig: function () { shortcut,
var conf = BI.SignTextEditor.superclass._defaultConfig.apply(this, arguments); Widget,
return BI.extend(conf, { extend,
baseCls: (conf.baseCls || "") + " bi-sign-initial-editor", emptyFn,
validationChecker: BI.emptyFn, createWidget,
nextTick,
Controller,
AbsoluteLayout,
VerticalLayout,
bind,
isEmpty,
isKey
} from "@/core";
import { TextButton, Editor } from "@/base";
@shortcut()
export class SignTextEditor extends Widget {
static xtype = "bi.sign_text_editor";
static EVENT_CONFIRM = "EVENT_CONFIRM";
static EVENT_CHANGE_CONFIRM = "EVENT_CHANGE_CONFIRM";
static EVENT_CLICK_LABEL = "EVENT_CLICK_LABEL";
_defaultConfig() {
const conf = super._defaultConfig(...arguments);
return extend(conf, {
baseCls: `${conf.baseCls || ""} bi-sign-initial-editor`,
validationChecker: emptyFn,
text: "", text: "",
height: 24 height: 24,
}); });
}, }
_init: function () { _init() {
BI.SignTextEditor.superclass._init.apply(this, arguments); super._init(...arguments);
var self = this, o = this.options; const o = this.options;
this.editor = BI.createWidget({ this.editor = createWidget({
type: "bi.editor", type: Editor.xtype,
simple: o.simple, simple: o.simple,
height: o.height, height: o.height,
hgap: 4, hgap: 4,
vgap: 2, vgap: 2,
value: o.value, value: o.value,
validationChecker: o.validationChecker, validationChecker: o.validationChecker,
allowBlank: false allowBlank: false,
}); });
this.text = BI.createWidget({ this.text = createWidget({
type: "bi.text_button", type: TextButton.xtype,
cls: "sign-editor-text", cls: "sign-editor-text",
title: function () { title: () => this.getValue(),
return self.getValue();
},
textAlign: o.textAlign, textAlign: o.textAlign,
height: o.height, height: o.height,
hgap: 4, hgap: 4,
handler: function () { handler: () => {
self._showInput(); this._showInput();
self.editor.focus(); this.editor.focus();
self.editor.selectAll(); this.editor.selectAll();
} },
}); });
this.text.on(BI.TextButton.EVENT_CHANGE, function () { this.text.on(TextButton.EVENT_CHANGE, () => {
BI.nextTick(function () { nextTick(() => {
self.fireEvent(BI.SignTextEditor.EVENT_CLICK_LABEL); this.fireEvent(SignTextEditor.EVENT_CLICK_LABEL);
}); });
}); });
BI.createWidget({ createWidget({
type: "bi.absolute", type: AbsoluteLayout.xtype,
element: this, element: this,
items: [{ items: [
el: this.text, {
left: 0, el: this.text,
right: 0, left: 0,
top: 0, right: 0,
bottom: 0 top: 0,
}] bottom: 0,
}
],
}); });
this.editor.on(BI.Controller.EVENT_CHANGE, function () { this.editor.on(Controller.EVENT_CHANGE, (...args) => {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); this.fireEvent(Controller.EVENT_CHANGE, ...args);
}); });
this.editor.on(BI.Editor.EVENT_CONFIRM, function () { this.editor.on(Editor.EVENT_CONFIRM, (...args) => {
self._showHint(); this._showHint();
self._checkText(); this._checkText();
self.fireEvent(BI.SignTextEditor.EVENT_CONFIRM, arguments); this.fireEvent(SignTextEditor.EVENT_CONFIRM, ...args);
}); });
this.editor.on(BI.Editor.EVENT_CHANGE_CONFIRM, function () { this.editor.on(Editor.EVENT_CHANGE_CONFIRM, (...args) => {
self._showHint(); this._showHint();
self._checkText(); this._checkText();
self.fireEvent(BI.SignTextEditor.EVENT_CHANGE_CONFIRM, arguments); this.fireEvent(SignTextEditor.EVENT_CHANGE_CONFIRM, ...args);
}); });
this.editor.on(BI.Editor.EVENT_ERROR, function () { this.editor.on(Editor.EVENT_ERROR, () => {
self._checkText(); this._checkText();
}); });
BI.createWidget({ createWidget({
type: "bi.vertical", type: VerticalLayout.xtype,
scrolly: false, scrolly: false,
element: this, element: this,
items: [this.editor] items: [this.editor],
}); });
this._showHint(); this._showHint();
self._checkText(); this._checkText();
}, }
_checkText: function () { _checkText() {
var o = this.options; const o = this.options;
BI.nextTick(BI.bind(function () { nextTick(
if (this.editor.getValue() === "") { bind(() => {
this.text.setValue(o.watermark || ""); if (this.editor.getValue() === "") {
this.text.element.addClass("bi-water-mark"); this.text.setValue(o.watermark || "");
} else { this.text.element.addClass("bi-water-mark");
var v = this.editor.getValue(); } else {
v = (BI.isEmpty(v) || v == o.text) ? o.text : v + o.text; let v = this.editor.getValue();
this.text.setValue(v); v = isEmpty(v) || v === o.text ? o.text : v + o.text;
this.text.element.removeClass("bi-water-mark"); this.text.setValue(v);
} this.text.element.removeClass("bi-water-mark");
}, this)); }
}, }, this)
);
_showInput: function () { }
_showInput() {
this.editor.visible(); this.editor.visible();
this.text.invisible(); this.text.invisible();
}, }
_showHint: function () { _showHint() {
this.editor.invisible(); this.editor.invisible();
this.text.visible(); this.text.visible();
}, }
setTitle: function (title) { setTitle(title) {
this.text.setTitle(title); this.text.setTitle(title);
}, }
setWarningTitle: function (title) { setWarningTitle(title) {
this.text.setWarningTitle(title); this.text.setWarningTitle(title);
}, }
focus: function () { focus() {
this._showInput(); this._showInput();
this.editor.focus(); this.editor.focus();
}, }
blur: function () { blur() {
this.editor.blur(); this.editor.blur();
this._showHint(); this._showHint();
this._checkText(); this._checkText();
}, }
doRedMark: function () { doRedMark() {
if (this.editor.getValue() === "" && BI.isKey(this.options.watermark)) { if (this.editor.getValue() === "" && isKey(this.options.watermark)) {
return; return;
} }
this.text.doRedMark.apply(this.text, arguments); this.text.doRedMark(...arguments);
}, }
unRedMark: function () { unRedMark() {
this.text.unRedMark.apply(this.text, arguments); this.text.unRedMark(...arguments);
}, }
doHighLight: function () { doHighLight() {
if (this.editor.getValue() === "" && BI.isKey(this.options.watermark)) { if (this.editor.getValue() === "" && isKey(this.options.watermark)) {
return; return;
} }
this.text.doHighLight.apply(this.text, arguments); this.text.doHighLight(...arguments);
}, }
unHighLight: function () { unHighLight() {
this.text.unHighLight.apply(this.text, arguments); this.text.unHighLight(...arguments);
}, }
isValid: function () { isValid() {
return this.editor.isValid(); return this.editor.isValid();
}, }
setErrorText: function (text) { setErrorText(text) {
this.editor.setErrorText(text); this.editor.setErrorText(text);
}, }
getErrorText: function () { getErrorText() {
return this.editor.getErrorText(); return this.editor.getErrorText();
}, }
isEditing: function () { isEditing() {
return this.editor.isEditing(); return this.editor.isEditing();
}, }
getLastValidValue: function () { getLastValidValue() {
return this.editor.getLastValidValue(); return this.editor.getLastValidValue();
}, }
getLastChangedValue: function () { getLastChangedValue() {
return this.editor.getLastChangedValue(); return this.editor.getLastChangedValue();
}, }
setValue: function (v) { setValue(v) {
this.editor.setValue(v); this.editor.setValue(v);
this._checkText(); this._checkText();
}, }
getValue: function () { getValue() {
return this.editor.getValue(); return this.editor.getValue();
}, }
getState: function () { getState() {
return this.text.getValue(); return this.text.getValue();
}, }
setState: function (v) { setState(v) {
var o = this.options; const o = this.options;
this._showHint(); this._showHint();
v = (BI.isEmpty(v) || v == o.text) ? o.text : v + o.text; v = isEmpty(v) || v === o.text ? o.text : v + o.text;
this.text.setValue(v); this.text.setValue(v);
} }
}); }
BI.SignTextEditor.EVENT_CONFIRM = "EVENT_CONFIRM";
BI.SignTextEditor.EVENT_CHANGE_CONFIRM = "EVENT_CHANGE_CONFIRM";
BI.SignTextEditor.EVENT_CLICK_LABEL = "EVENT_CLICK_LABEL";
BI.shortcut("bi.sign_text_editor", BI.SignTextEditor);

28
src/widget/singleslider/button/iconbutton.slider.js

@ -1,26 +1,24 @@
/** import { shortcut, Widget, Layout } from "@/core";
* Created by zcf on 2016/9/22.
*/
BI.SliderIconButton = BI.inherit(BI.Widget, {
props: { @shortcut()
export class SliderIconButton extends Widget {
static xtype = "bi.single_slider_button";
props = {
baseCls: "bi-single-slider-button slider-button bi-high-light-border", baseCls: "bi-single-slider-button slider-button bi-high-light-border",
height: 8, height: 8,
width: 8, width: 8,
}, }
constants = {
constants: {
LARGE_SIZE: 16, LARGE_SIZE: 16,
NORMAL_SIZE: 12, NORMAL_SIZE: 12,
LARGE_OFFSET: 4, LARGE_OFFSET: 4,
NORMAL_OFFSET: 6 NORMAL_OFFSET: 6,
}, };
render: function () { render() {
var self = this;
return { return {
type: "bi.layout", type: Layout.xtype,
}; };
} }
}); }
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);

5
src/widget/singleslider/index.js

@ -0,0 +1,5 @@
export { SingleSlider } from "./singleslider";
export { SingleSliderLabel } from "./singleslider.label";
export { SingleSliderNormal } from "./singleslider.normal";
export { SignTextEditor } from "./button/editor.sign.text";
export { SliderIconButton } from "./button/iconbutton.slider";

526
src/widget/singleslider/singleslider.js

@ -1,8 +1,29 @@
/** import {
* Created by zcf on 2016/9/22. shortcut,
*/ createWidget,
BI.SingleSlider = BI.inherit(BI.Single, { parseFloat,
_constant: { toPix,
Layout,
VerticalAdaptLayout,
AbsoluteLayout,
VerticalLayout,
HorizontalAutoLayout,
clamp,
isNumeric,
isNull,
parseInt,
i18nText,
isNotEmptyString,
MouseMoveTracker
} from "@/core";
import { Single } from "@/base";
import { SignEditor } from "@/case";
@shortcut()
export class SingleSlider extends Single {
static xtype = "bi.single_slider";
_constant = {
EDITOR_WIDTH: 90, EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20, EDITOR_HEIGHT: 20,
SLIDER_WIDTH_HALF: 15, SLIDER_WIDTH_HALF: 15,
@ -10,19 +31,21 @@ BI.SingleSlider = BI.inherit(BI.Single, {
SLIDER_HEIGHT: 30, SLIDER_HEIGHT: 30,
TRACK_HEIGHT: 24, TRACK_HEIGHT: 24,
TRACK_GAP_HALF: 7, TRACK_GAP_HALF: 7,
TRACK_GAP: 14 TRACK_GAP: 14,
}, }
props: { props = {
baseCls: "bi-single-slider bi-slider-track", baseCls: "bi-single-slider bi-slider-track",
digit: false, digit: false,
unit: "", unit: "",
value: "", value: "",
min: 0, min: 0,
max: 100, max: 100,
}, };
beforeMount: function () { static EVENT_CHANGE = "EVENT_CHANGE";
beforeMount() {
const { value, min, max } = this.options; const { value, min, max } = this.options;
this.setMinAndMax({ this.setMinAndMax({
min, min,
@ -30,175 +53,205 @@ BI.SingleSlider = BI.inherit(BI.Single, {
}); });
this.setValue(value); this.setValue(value);
this.populate(); this.populate();
}, }
render: function () { render() {
var self = this, o = this.options; const o = this.options;
var c = this._constant; const c = this._constant;
this.enable = false; this.enable = false;
this.value = ""; this.value = "";
this.grayTrack = BI.createWidget({ this.grayTrack = createWidget({
type: "bi.layout", type: Layout.xtype,
cls: "gray-track", cls: "gray-track",
height: 6 height: 6,
}); });
this.blueTrack = BI.createWidget({ this.blueTrack = createWidget({
type: "bi.layout", type: Layout.xtype,
cls: "blue-track bi-high-light-background", cls: "blue-track bi-high-light-background",
height: 6 height: 6,
}); });
this.track = this._createTrackWrapper(); this.track = this._createTrackWrapper();
this.slider = BI.createWidget({ this.slider = createWidget({
type: "bi.single_slider_button" type: "bi.single_slider_button",
}); });
this._draggable(this.slider); this._draggable(this.slider);
var sliderVertical = BI.createWidget({ const sliderVertical = createWidget({
type: "bi.vertical_adapt", type: VerticalAdaptLayout.xtype,
cls: "slider-wrapper", cls: "slider-wrapper",
columnSize: ["fill"], columnSize: ["fill"],
items: [{ items: [
type: "bi.absolute", {
items: [ type: AbsoluteLayout.xtype,
{ items: [
el: this.slider, {
top: 8, el: this.slider,
} top: 8,
], }
height: c.SLIDER_HEIGHT ],
}], height: c.SLIDER_HEIGHT,
}
],
hgap: c.SLIDER_WIDTH_HALF, hgap: c.SLIDER_WIDTH_HALF,
height: c.SLIDER_HEIGHT height: c.SLIDER_HEIGHT,
}); });
// 这边其实是有问题的,拖拽区域是个圆,在圆的边缘拖拽后放开,这边计算出来的蓝条宽度实际上会比放开时长一点或者短一点 // 这边其实是有问题的,拖拽区域是个圆,在圆的边缘拖拽后放开,这边计算出来的蓝条宽度实际上会比放开时长一点或者短一点
sliderVertical.element.click(function (e) { sliderVertical.element.click(e => {
if (self.enable && self.isEnabled() && sliderVertical.element[0] === e.originalEvent.target) { if (
var offset = e.clientX - self.element.offset().left - c.SLIDER_WIDTH_HALF; this.enable &&
var trackLength = self.track.element[0].scrollWidth - c.TRACK_GAP; this.isEnabled() &&
var percent = 0; sliderVertical.element[0] === e.originalEvent.target
) {
const offset =
e.clientX -
this.element.offset().left -
c.SLIDER_WIDTH_HALF;
const trackLength =
this.track.element[0].scrollWidth - c.TRACK_GAP;
let percent = 0;
if (offset < 0) { if (offset < 0) {
percent = 0; percent = 0;
} }
if (offset > 0 && offset < trackLength) { if (offset > 0 && offset < trackLength) {
percent = offset * 100 / self._getGrayTrackLength(); percent = (offset * 100) / this._getGrayTrackLength();
} }
if (offset >= trackLength) { if (offset >= trackLength) {
percent = 100; percent = 100;
} }
var significantPercent = BI.parseFloat(percent.toFixed(1)); const significantPercent = parseFloat(percent.toFixed(1));
self._setAllPosition(significantPercent); this._setAllPosition(significantPercent);
var v = self._getValueByPercent(significantPercent); let v = this._getValueByPercent(significantPercent);
v = o.digit === false ? v : v.toFixed(o.digit); v = o.digit === false ? v : v.toFixed(o.digit);
self.label.setValue(v); this.label.setValue(v);
self.value = v; this.value = v;
self.fireEvent(BI.SingleSlider.EVENT_CHANGE); this.fireEvent(SingleSlider.EVENT_CHANGE);
} }
}); });
this.label = BI.createWidget({ this.label = createWidget({
type: "bi.sign_text_editor", type: "bi.sign_text_editor",
cls: "slider-editor-button", cls: "slider-editor-button",
text: o.unit, text: o.unit,
width: BI.toPix(c.EDITOR_WIDTH, 2), width: toPix(c.EDITOR_WIDTH, 2),
height: BI.toPix(c.EDITOR_HEIGHT, 2), height: toPix(c.EDITOR_HEIGHT, 2),
allowBlank: false, allowBlank: false,
textAlign: "center", textAlign: "center",
validationChecker: function (v) { validationChecker: v => this._checkValidation(v),
return self._checkValidation(v);
}
}); });
this.label.element.hover(function () { this.label.element.hover(
self.label.element.removeClass("bi-border").addClass("bi-border"); () => {
}, function () { this.label.element
self.label.element.removeClass("bi-border"); .removeClass("bi-border")
}); .addClass("bi-border");
this.label.on(BI.SignEditor.EVENT_CONFIRM, function () { },
var v = BI.parseFloat(this.getValue()); () => {
var percent = self._getPercentByValue(v); this.label.element.removeClass("bi-border");
var significantPercent = BI.parseFloat(percent.toFixed(1)); }
self._setAllPosition(significantPercent); );
this.label.on(SignEditor.EVENT_CONFIRM, () => {
const v = parseFloat(this.getValue());
const percent = this._getPercentByValue(v);
const significantPercent = parseFloat(percent.toFixed(1));
this._setAllPosition(significantPercent);
this.setValue(v); this.setValue(v);
self.value = v; this.value = v;
self.fireEvent(BI.SingleSlider.EVENT_CHANGE); this.fireEvent(SingleSlider.EVENT_CHANGE);
}); });
this._setVisible(false); this._setVisible(false);
return { return {
type: "bi.absolute", type: AbsoluteLayout.xtype,
items: [{ items: [
el: { {
type: "bi.vertical", el: {
items: [{ type: VerticalLayout.xtype,
type: "bi.absolute", items: [
items: [{ {
el: this.track, type: AbsoluteLayout.xtype,
width: "100%", items: [
height: c.TRACK_HEIGHT {
}] el: this.track,
}], width: "100%",
hgap: c.TRACK_GAP_HALF, height: c.TRACK_HEIGHT,
height: c.TRACK_HEIGHT }
],
}
],
hgap: c.TRACK_GAP_HALF,
height: c.TRACK_HEIGHT,
},
top: 23,
left: 0,
width: "100%",
}, },
top: 23, {
left: 0, el: sliderVertical,
width: "100%" top: 20,
}, { left: 0,
el: sliderVertical, width: "100%",
top: 20,
left: 0,
width: "100%"
}, {
el: {
type: "bi.vertical",
items: [{
type: "bi.horizontal_auto",
items: [this.label]
}],
// height: c.EDITOR_HEIGHT
}, },
top: 0, {
left: 0, el: {
width: "100%" type: VerticalLayout.xtype,
}] items: [
{
type: HorizontalAutoLayout.xtype,
items: [this.label],
}
],
// height: c.EDITOR_HEIGHT
},
top: 0,
left: 0,
width: "100%",
}
],
}; };
}, }
_draggable: function (widget) { _draggable(widget) {
var self = this, o = this.options; const o = this.options;
var startDrag = false; let startDrag = false;
var size = 0, offset = 0, defaultSize = 0; let size = 0,
var mouseMoveTracker = new BI.MouseMoveTracker(function (deltaX) { offset = 0,
if (mouseMoveTracker.isDragging()) { defaultSize = 0;
startDrag = true; const mouseMoveTracker = new MouseMoveTracker(
offset += deltaX; (deltaX => {
size = optimizeSize(defaultSize + offset); if (mouseMoveTracker.isDragging()) {
widget.element.addClass("dragging"); startDrag = true;
var percent = size * 100 / (self._getGrayTrackLength()); offset += deltaX;
var significantPercent = BI.parseFloat(percent.toFixed(1));// 直接对计算出来的百分数保留到小数点后一位,相当于分成了1000份。 size = optimizeSize(defaultSize + offset);
self._setBlueTrack(significantPercent); widget.element.addClass("dragging");
self._setLabelPosition(significantPercent); const percent = (size * 100) / this._getGrayTrackLength();
self._setSliderPosition(significantPercent); const significantPercent = parseFloat(percent.toFixed(1)); // 直接对计算出来的百分数保留到小数点后一位,相当于分成了1000份。
var v = self._getValueByPercent(significantPercent); this._setBlueTrack(significantPercent);
v = o.digit === false ? v : v.toFixed(o.digit); this._setLabelPosition(significantPercent);
self.label.setValue(v); this._setSliderPosition(significantPercent);
self.value = v; let v = this._getValueByPercent(significantPercent);
} v = o.digit === false ? v : v.toFixed(o.digit);
}, function () { this.label.setValue(v);
if (startDrag === true) { this.value = v;
size = optimizeSize(size); }
var percent = size * 100 / (self._getGrayTrackLength()); }),
var significantPercent = BI.parseFloat(percent.toFixed(1)); (() => {
self._setSliderPosition(significantPercent); if (startDrag === true) {
size = 0; size = optimizeSize(size);
offset = 0; const percent = (size * 100) / this._getGrayTrackLength();
defaultSize = size; const significantPercent = parseFloat(percent.toFixed(1));
startDrag = false; this._setSliderPosition(significantPercent);
} size = 0;
widget.element.removeClass("dragging"); offset = 0;
mouseMoveTracker.releaseMouseMoves(); defaultSize = size;
self.fireEvent(BI.SingleSlider.EVENT_CHANGE); startDrag = false;
}, window); }
widget.element.removeClass("dragging");
mouseMoveTracker.releaseMouseMoves();
this.fireEvent(SingleSlider.EVENT_CHANGE);
}),
window
);
widget.element.on("mousedown", function (event) { widget.element.on("mousedown", function (event) {
if(!widget.isEnabled()) { if (!widget.isEnabled()) {
return; return;
} }
defaultSize = this.offsetLeft; defaultSize = this.offsetLeft;
@ -206,100 +259,107 @@ BI.SingleSlider = BI.inherit(BI.Single, {
mouseMoveTracker.captureMouseMoves(event); mouseMoveTracker.captureMouseMoves(event);
}); });
function optimizeSize (s) { const optimizeSize = s => clamp(s, 0, this._getGrayTrackLength());
return BI.clamp(s, 0, self._getGrayTrackLength()); }
}
},
_createTrackWrapper: function () { _createTrackWrapper() {
return BI.createWidget({ return createWidget({
type: "bi.absolute", type: AbsoluteLayout.xtype,
items: [{ items: [
el: { {
type: "bi.vertical", el: {
items: [{ type: VerticalLayout.xtype,
type: "bi.absolute", items: [
items: [{ {
el: this.grayTrack, type: AbsoluteLayout.xtype,
top: 0, items: [
left: 0, {
width: "100%" el: this.grayTrack,
}, { top: 0,
el: this.blueTrack, left: 0,
top: 0, width: "100%",
left: 0, },
width: "0%" {
}] el: this.blueTrack,
}], top: 0,
hgap: 8, left: 0,
height: 8 width: "0%",
}, }
top: 8, ],
left: 0, }
width: "100%" ],
}] hgap: 8,
height: 8,
},
top: 8,
left: 0,
width: "100%",
}
],
}); });
}, }
_checkValidation: function (v) { _checkValidation(v) {
var o = this.options; const o = this.options;
var valid = false; let valid = false;
if (BI.isNumeric(v) && !(BI.isNull(v) || v < this.min || v > this.max)) { if (isNumeric(v) && !(isNull(v) || v < this.min || v > this.max)) {
if(o.digit === false) { if (o.digit === false) {
valid = true; valid = true;
}else{ } else {
var dotText = (v + "").split(".")[1] || ""; const dotText = (`${v}`).split(".")[1] || "";
valid = (dotText.length === o.digit); valid = dotText.length === o.digit;
} }
} }
return valid; return valid;
}, }
_setBlueTrack: function (percent) { _setBlueTrack(percent) {
this.blueTrack.element.css({width: percent + "%"}); this.blueTrack.element.css({ width: `${percent}%` });
}, }
_setLabelPosition: function (percent) { _setLabelPosition(percent) {
// this.label.element.css({left: percent + "%"}); // this.label.element.css({left: percent + "%"});
}, }
_setSliderPosition: function (percent) { _setSliderPosition(percent) {
this.slider.element.css({left: percent + "%"}); this.slider.element.css({ left: `${percent}%` });
}, }
_setAllPosition: function (percent) { _setAllPosition(percent) {
this._setSliderPosition(percent); this._setSliderPosition(percent);
this._setLabelPosition(percent); this._setLabelPosition(percent);
this._setBlueTrack(percent); this._setBlueTrack(percent);
}, }
_setVisible: function (visible) { _setVisible(visible) {
this.slider.setVisible(visible); this.slider.setVisible(visible);
this.label.setVisible(visible); this.label.setVisible(visible);
}, }
_getGrayTrackLength: function () { _getGrayTrackLength() {
return this.grayTrack.element[0].scrollWidth; return this.grayTrack.element[0].scrollWidth;
}, }
_getValueByPercent: function (percent) { _getValueByPercent(percent) {
var thousandth = BI.parseInt(percent * 10); const thousandth = parseInt(percent * 10);
return (((this.max - this.min) * thousandth) / 1000 + this.min);
}, return ((this.max - this.min) * thousandth) / 1000 + this.min;
}
_getPercentByValue: function (v) { _getPercentByValue(v) {
return (v - this.min) * 100 / (this.max - this.min); return ((v - this.min) * 100) / (this.max - this.min);
}, }
getValue: function () { getValue() {
return this.value; return this.value;
}, }
setValue: function (v) { setValue(v) {
var o = this.options; const o = this.options;
v = BI.parseFloat(v); v = parseFloat(v);
v = o.digit === false ? v : v.toFixed(o.digit); v = o.digit === false ? v : v.toFixed(o.digit);
if ((!isNaN(v))) { if (!isNaN(v)) {
if (this._checkValidation(v)) { if (this._checkValidation(v)) {
this.value = v; this.value = v;
} }
@ -310,47 +370,63 @@ BI.SingleSlider = BI.inherit(BI.Single, {
this.value = this.min; this.value = this.min;
} }
} }
}, }
_setEnable: function (b) { _setEnable(b) {
BI.SingleSlider.superclass._setEnable.apply(this, [b]); super._setEnable.apply(this, [b]);
if(b) { if (b) {
this.blueTrack.element.removeClass("disabled-blue-track").addClass("blue-track"); this.blueTrack.element
.removeClass("disabled-blue-track")
.addClass("blue-track");
} else { } else {
this.blueTrack.element.removeClass("blue-track").addClass("disabled-blue-track"); this.blueTrack.element
.removeClass("blue-track")
.addClass("disabled-blue-track");
} }
}, }
setMinAndMax: function (v) { setMinAndMax(v) {
var minNumber = BI.parseFloat(v.min); const minNumber = parseFloat(v.min);
var maxNumber = BI.parseFloat(v.max); const maxNumber = parseFloat(v.max);
if ((!isNaN(minNumber)) && (!isNaN(maxNumber)) && (maxNumber > minNumber )) { if (!isNaN(minNumber) && !isNaN(maxNumber) && maxNumber > minNumber) {
this.min = minNumber; this.min = minNumber;
this.max = maxNumber; this.max = maxNumber;
} }
}, }
reset: function () { reset() {
this._setVisible(false); this._setVisible(false);
this.enable = false; this.enable = false;
this.value = ""; this.value = "";
this.min = 0; this.min = 0;
this.max = 0; this.max = 0;
this._setBlueTrack(0); this._setBlueTrack(0);
}, }
populate: function () { populate() {
var o = this.options; const o = this.options;
if (!isNaN(this.min) && !isNaN(this.max)) { if (!isNaN(this.min) && !isNaN(this.max)) {
this._setVisible(true); this._setVisible(true);
this.enable = true; this.enable = true;
if (o.digit) { if (o.digit) {
this.label.setErrorText(BI.i18nText("BI-Basic_Please_Enter_Number_Between", this.min, this.max)); this.label.setErrorText(
i18nText(
"BI-Basic_Please_Enter_Number_Between",
this.min,
this.max
)
);
} else { } else {
this.label.setErrorText(BI.i18nText("BI-Basic_Please_Enter_Integer_Number_Between", this.min, this.max)); this.label.setErrorText(
i18nText(
"BI-Basic_Please_Enter_Integer_Number_Between",
this.min,
this.max
)
);
} }
if (BI.isNumeric(this.value) || BI.isNotEmptyString(this.value)) { if (isNumeric(this.value) || isNotEmptyString(this.value)) {
this.label.setValue(this.value); this.label.setValue(this.value);
this._setAllPosition(this._getPercentByValue(this.value)); this._setAllPosition(this._getPercentByValue(this.value));
} else { } else {
@ -359,6 +435,4 @@ BI.SingleSlider = BI.inherit(BI.Single, {
} }
} }
} }
}); }
BI.SingleSlider.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider", BI.SingleSlider);

464
src/widget/singleslider/singleslider.label.js

@ -1,8 +1,26 @@
/** import {
* Created by Urthur on 2017/9/12. shortcut,
*/ createWidget,
BI.SingleSliderLabel = BI.inherit(BI.Single, { parseFloat,
_constant: { toPix,
Layout,
VerticalAdaptLayout,
AbsoluteLayout,
VerticalLayout,
HorizontalAutoLayout,
clamp,
isNumeric,
isNull,
parseInt,
isNotEmptyString,
MouseMoveTracker
} from "@/core";
import { Single, Label } from "@/base";
@shortcut()
export class SingleSliderLabel extends Single {
static xtype = "bi.single_slider_label";
_constant = {
EDITOR_WIDTH: 90, EDITOR_WIDTH: 90,
EDITOR_HEIGHT: 20, EDITOR_HEIGHT: 20,
HEIGHT: 20, HEIGHT: 20,
@ -11,19 +29,20 @@ BI.SingleSliderLabel = BI.inherit(BI.Single, {
SLIDER_HEIGHT: 30, SLIDER_HEIGHT: 30,
TRACK_HEIGHT: 24, TRACK_HEIGHT: 24,
TRACK_GAP_HALF: 7, TRACK_GAP_HALF: 7,
TRACK_GAP: 14 TRACK_GAP: 14,
}, }
props = {
props: {
baseCls: "bi-single-slider-label bi-slider-track", baseCls: "bi-single-slider-label bi-slider-track",
digit: false, digit: false,
unit: "", unit: "",
value: "", value: "",
min: 0, min: 0,
max: 100, max: 100,
}, };
beforeMount: function () { static EVENT_CHANGE = "EVENT_CHANGE";
beforeMount() {
const { value, min, max } = this.options; const { value, min, max } = this.options;
this.setMinAndMax({ this.setMinAndMax({
min, min,
@ -31,152 +50,179 @@ BI.SingleSliderLabel = BI.inherit(BI.Single, {
}); });
this.setValue(value); this.setValue(value);
this.populate(); this.populate();
}, }
render: function () { render() {
var self = this, o = this.options; const o = this.options;
var c = this._constant; const c = this._constant;
this.enable = false; this.enable = false;
this.value = ""; this.value = "";
this.grayTrack = BI.createWidget({ this.grayTrack = createWidget({
type: "bi.layout", type: Layout.xtype,
cls: "gray-track", cls: "gray-track",
height: 6 height: 6,
}); });
this.blueTrack = BI.createWidget({ this.blueTrack = createWidget({
type: "bi.layout", type: Layout.xtype,
cls: "blue-track bi-high-light-background", cls: "blue-track bi-high-light-background",
height: 6 height: 6,
}); });
this.track = this._createTrackWrapper(); this.track = this._createTrackWrapper();
this.slider = BI.createWidget({ this.slider = createWidget({
type: "bi.single_slider_button" type: "bi.single_slider_button",
}); });
this._draggable(this.slider); this._draggable(this.slider);
var sliderVertical = BI.createWidget({ const sliderVertical = createWidget({
type: "bi.vertical_adapt", type: VerticalAdaptLayout.xtype,
columnSize: ["fill"], columnSize: ["fill"],
items: [{ items: [
type: "bi.absolute", {
items: [ type: AbsoluteLayout.xtype,
{ items: [
el: this.slider, {
top: 8, el: this.slider,
} top: 8,
], }
height: c.SLIDER_HEIGHT ],
}], height: c.SLIDER_HEIGHT,
}
],
hgap: c.SLIDER_WIDTH_HALF, hgap: c.SLIDER_WIDTH_HALF,
height: c.SLIDER_HEIGHT height: c.SLIDER_HEIGHT,
}); });
sliderVertical.element.click(function (e) { sliderVertical.element.click(e => {
if (self.enable && self.isEnabled() && sliderVertical.element[0] === e.originalEvent.target) { if (
var offset = e.clientX - self.element.offset().left - c.SLIDER_WIDTH_HALF; this.enable &&
var trackLength = self.track.element[0].scrollWidth - c.TRACK_GAP; this.isEnabled() &&
var percent = 0; sliderVertical.element[0] === e.originalEvent.target
) {
const offset =
e.clientX -
this.element.offset().left -
c.SLIDER_WIDTH_HALF;
const trackLength =
this.track.element[0].scrollWidth - c.TRACK_GAP;
let percent = 0;
if (offset < 0) { if (offset < 0) {
percent = 0; percent = 0;
} }
if (offset > 0 && offset < trackLength) { if (offset > 0 && offset < trackLength) {
percent = offset * 100 / self._getGrayTrackLength(); percent = (offset * 100) / this._getGrayTrackLength();
} }
if (offset >= trackLength) { if (offset >= trackLength) {
percent = 100; percent = 100;
} }
var significantPercent = BI.parseFloat(percent.toFixed(1)); const significantPercent = parseFloat(percent.toFixed(1));
self._setAllPosition(significantPercent); this._setAllPosition(significantPercent);
var v = self._getValueByPercent(significantPercent); let v = this._getValueByPercent(significantPercent);
v = o.digit === false ? v : v.toFixed(o.digit); v = o.digit === false ? v : v.toFixed(o.digit);
self.label.setText(v + o.unit); this.label.setText(v + o.unit);
self.value = v; this.value = v;
self.fireEvent(BI.SingleSliderLabel.EVENT_CHANGE); this.fireEvent(SingleSliderLabel.EVENT_CHANGE);
} }
}); });
this.label = BI.createWidget({ this.label = createWidget({
type: "bi.label", type: Label.xtype,
height: c.HEIGHT, height: c.HEIGHT,
width: BI.toPix(c.EDITOR_WIDTH, 2) width: toPix(c.EDITOR_WIDTH, 2),
}); });
this._setVisible(false); this._setVisible(false);
return ({
type: "bi.absolute", return {
items: [{ type: AbsoluteLayout.xtype,
el: { items: [
type: "bi.vertical", {
items: [{ el: {
type: "bi.absolute", type: VerticalLayout.xtype,
items: [{ items: [
el: this.track, {
width: "100%", type: AbsoluteLayout.xtype,
height: c.TRACK_HEIGHT items: [
}] {
}], el: this.track,
hgap: c.TRACK_GAP_HALF, width: "100%",
height: c.TRACK_HEIGHT height: c.TRACK_HEIGHT,
}
],
}
],
hgap: c.TRACK_GAP_HALF,
height: c.TRACK_HEIGHT,
},
top: 13,
left: 0,
width: "100%",
}, },
top: 13, {
left: 0, el: sliderVertical,
width: "100%" top: 10,
}, { left: 0,
el: sliderVertical, width: "100%",
top: 10,
left: 0,
width: "100%"
}, {
el: {
type: "bi.vertical",
items: [{
type: "bi.horizontal_auto",
items: [this.label]
}],
height: c.EDITOR_HEIGHT
}, },
top: 0, {
left: 0, el: {
width: "100%" type: VerticalLayout.xtype,
}] items: [
}); {
}, type: HorizontalAutoLayout.xtype,
items: [this.label],
}
],
height: c.EDITOR_HEIGHT,
},
top: 0,
left: 0,
width: "100%",
}
],
};
}
_draggable: function (widget) { _draggable(widget) {
var self = this, o = this.options; const o = this.options;
var startDrag = false; let startDrag = false;
var size = 0, offset = 0, defaultSize = 0; let size = 0,
var mouseMoveTracker = new BI.MouseMoveTracker(function (deltaX) { offset = 0,
if (mouseMoveTracker.isDragging()) { defaultSize = 0;
startDrag = true; const mouseMoveTracker = new MouseMoveTracker(
offset += deltaX; (deltaX => {
size = optimizeSize(defaultSize + offset); if (mouseMoveTracker.isDragging()) {
widget.element.addClass("dragging"); startDrag = true;
var percent = size * 100 / (self._getGrayTrackLength()); offset += deltaX;
var significantPercent = BI.parseFloat(percent.toFixed(1));// 直接对计算出来的百分数保留到小数点后一位,相当于分成了1000份。 size = optimizeSize(defaultSize + offset);
self._setBlueTrack(significantPercent); widget.element.addClass("dragging");
self._setLabelPosition(significantPercent); const percent = (size * 100) / this._getGrayTrackLength();
self._setSliderPosition(significantPercent); const significantPercent = parseFloat(percent.toFixed(1)); // 直接对计算出来的百分数保留到小数点后一位,相当于分成了1000份。
var v = self._getValueByPercent(significantPercent); this._setBlueTrack(significantPercent);
v = o.digit === false ? v : v.toFixed(o.digit); this._setLabelPosition(significantPercent);
self.label.setValue(v + o.unit); this._setSliderPosition(significantPercent);
self.value = v; let v = this._getValueByPercent(significantPercent);
self.fireEvent(BI.SingleSliderLabel.EVENT_CHANGE); v = o.digit === false ? v : v.toFixed(o.digit);
} this.label.setValue(v + o.unit);
}, function () { this.value = v;
if (startDrag === true) { this.fireEvent(SingleSliderLabel.EVENT_CHANGE);
size = optimizeSize(size); }
var percent = size * 100 / (self._getGrayTrackLength()); }),
var significantPercent = BI.parseFloat(percent.toFixed(1)); (() => {
self._setSliderPosition(significantPercent); if (startDrag === true) {
size = 0; size = optimizeSize(size);
offset = 0; const percent = (size * 100) / this._getGrayTrackLength();
defaultSize = size; const significantPercent = parseFloat(percent.toFixed(1));
startDrag = false; this._setSliderPosition(significantPercent);
} size = 0;
widget.element.removeClass("dragging"); offset = 0;
mouseMoveTracker.releaseMouseMoves(); defaultSize = size;
self.fireEvent(BI.SingleSliderLabel.EVENT_CHANGE); startDrag = false;
}, window); }
widget.element.removeClass("dragging");
mouseMoveTracker.releaseMouseMoves();
this.fireEvent(SingleSliderLabel.EVENT_CHANGE);
}),
window
);
widget.element.on("mousedown", function (event) { widget.element.on("mousedown", function (event) {
if (!widget.isEnabled()) { if (!widget.isEnabled()) {
return; return;
@ -186,99 +232,109 @@ BI.SingleSliderLabel = BI.inherit(BI.Single, {
mouseMoveTracker.captureMouseMoves(event); mouseMoveTracker.captureMouseMoves(event);
}); });
function optimizeSize(s) { const optimizeSize = s => clamp(s, 0, this._getGrayTrackLength());
return BI.clamp(s, 0, self._getGrayTrackLength()); }
}
},
_createTrackWrapper: function () { _createTrackWrapper() {
return BI.createWidget({ return createWidget({
type: "bi.absolute", type: AbsoluteLayout.xtype,
items: [{ items: [
el: { {
type: "bi.vertical", el: {
items: [{ type: VerticalLayout.xtype,
type: "bi.absolute", items: [
items: [{ {
el: this.grayTrack, type: AbsoluteLayout.xtype,
top: 0, items: [
left: 0, {
width: "100%" el: this.grayTrack,
}, { top: 0,
el: this.blueTrack, left: 0,
top: 0, width: "100%",
left: 0, },
width: "0%" {
}] el: this.blueTrack,
}], top: 0,
hgap: 8, left: 0,
height: 8 width: "0%",
}, }
top: 8, ],
left: 0, }
width: "100%" ],
}] hgap: 8,
height: 8,
},
top: 8,
left: 0,
width: "100%",
}
],
}); });
}, }
_checkValidation: function (v) { _checkValidation(v) {
return BI.isNumeric(v) && !(BI.isNull(v) || v < this.min || v > this.max); return isNumeric(v) && !(isNull(v) || v < this.min || v > this.max);
}, }
_setBlueTrack: function (percent) { _setBlueTrack(percent) {
this.blueTrack.element.css({ width: percent + "%" }); this.blueTrack.element.css({ width: `${percent}%` });
}, }
_setLabelPosition: function (percent) { _setLabelPosition(percent) {
// this.label.element.css({left: percent + "%"}); // this.label.element.css({left: percent + "%"});
}, }
_setSliderPosition: function (percent) { _setSliderPosition(percent) {
this.slider.element.css({ left: percent + "%" }); this.slider.element.css({ left: `${percent}%` });
}, }
_setAllPosition: function (percent) { _setAllPosition(percent) {
this._setSliderPosition(percent); this._setSliderPosition(percent);
this._setLabelPosition(percent); this._setLabelPosition(percent);
this._setBlueTrack(percent); this._setBlueTrack(percent);
}, }
_setVisible: function (visible) { _setVisible(visible) {
this.slider.setVisible(visible); this.slider.setVisible(visible);
this.label.setVisible(visible); this.label.setVisible(visible);
}, }
_getGrayTrackLength: function () { _getGrayTrackLength() {
return this.grayTrack.element[0].scrollWidth; return this.grayTrack.element[0].scrollWidth;
}, }
_getValueByPercent: function (percent) { _getValueByPercent(percent) {
var thousandth = BI.parseInt(percent * 10); const thousandth = parseInt(percent * 10);
return (((this.max - this.min) * thousandth) / 1000 + this.min);
}, return ((this.max - this.min) * thousandth) / 1000 + this.min;
}
_getPercentByValue: function (v) { _getPercentByValue(v) {
return (v - this.min) * 100 / (this.max - this.min); return ((v - this.min) * 100) / (this.max - this.min);
}, }
_setEnable: function (b) { _setEnable(b) {
BI.SingleSliderLabel.superclass._setEnable.apply(this, [b]); super._setEnable.apply(this, [b]);
if (b) { if (b) {
this.blueTrack.element.removeClass("disabled-blue-track").addClass("blue-track"); this.blueTrack.element
.removeClass("disabled-blue-track")
.addClass("blue-track");
} else { } else {
this.blueTrack.element.removeClass("blue-track").addClass("disabled-blue-track"); this.blueTrack.element
.removeClass("blue-track")
.addClass("disabled-blue-track");
} }
}, }
getValue: function () { getValue() {
return this.value; return this.value;
}, }
setValue: function (v) { setValue(v) {
var o = this.options; const o = this.options;
v = BI.parseFloat(v); v = parseFloat(v);
v = o.digit === false ? v : v.toFixed(o.digit); v = o.digit === false ? v : v.toFixed(o.digit);
if ((!isNaN(v))) { if (!isNaN(v)) {
if (this._checkValidation(v)) { if (this._checkValidation(v)) {
this.value = v; this.value = v;
} }
@ -289,32 +345,32 @@ BI.SingleSliderLabel = BI.inherit(BI.Single, {
this.value = this.min; this.value = this.min;
} }
} }
}, }
setMinAndMax: function (v) { setMinAndMax(v) {
var minNumber = BI.parseFloat(v.min); const minNumber = parseFloat(v.min);
var maxNumber = BI.parseFloat(v.max); const maxNumber = parseFloat(v.max);
if ((!isNaN(minNumber)) && (!isNaN(maxNumber)) && (maxNumber > minNumber)) { if (!isNaN(minNumber) && !isNaN(maxNumber) && maxNumber > minNumber) {
this.min = minNumber; this.min = minNumber;
this.max = maxNumber; this.max = maxNumber;
} }
}, }
reset: function () { reset() {
this._setVisible(false); this._setVisible(false);
this.enable = false; this.enable = false;
this.value = ""; this.value = "";
this.min = 0; this.min = 0;
this.max = 0; this.max = 0;
this._setBlueTrack(0); this._setBlueTrack(0);
}, }
populate: function () { populate() {
var o = this.options; const o = this.options;
if (!isNaN(this.min) && !isNaN(this.max)) { if (!isNaN(this.min) && !isNaN(this.max)) {
this._setVisible(true); this._setVisible(true);
this.enable = true; this.enable = true;
if (BI.isNumeric(this.value) || BI.isNotEmptyString(this.value)) { if (isNumeric(this.value) || isNotEmptyString(this.value)) {
this.label.setValue(this.value + o.unit); this.label.setValue(this.value + o.unit);
this._setAllPosition(this._getPercentByValue(this.value)); this._setAllPosition(this._getPercentByValue(this.value));
} else { } else {
@ -323,6 +379,4 @@ BI.SingleSliderLabel = BI.inherit(BI.Single, {
} }
} }
} }
}); }
BI.SingleSliderLabel.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.single_slider_label", BI.SingleSliderLabel);

430
src/widget/singleslider/singleslider.normal.js

@ -1,28 +1,43 @@
/** import {
* normal single slider shortcut,
* Created by Young on 2017/6/21. createWidget,
*/ parseFloat,
BI.SingleSliderNormal = BI.inherit(BI.Single, { VerticalAdaptLayout,
AbsoluteLayout,
VerticalLayout,
clamp,
Layout,
isNull,
parseInt,
isNumeric,
isNotEmptyString,
MouseMoveTracker
} from "@/core";
import { Single } from "@/base";
import { SingleSlider } from "./singleslider";
_constant: { @shortcut()
export class SingleSliderNormal extends Single {
static xtype = "bi.single_slider_normal";
_constant = {
HEIGHT: 28, HEIGHT: 28,
SLIDER_WIDTH_HALF: 15, SLIDER_WIDTH_HALF: 15,
SLIDER_WIDTH: 30, SLIDER_WIDTH: 30,
SLIDER_HEIGHT: 30, SLIDER_HEIGHT: 30,
TRACK_HEIGHT: 24, TRACK_HEIGHT: 24,
TRACK_GAP_HALF: 7, TRACK_GAP_HALF: 7,
TRACK_GAP: 14 TRACK_GAP: 14,
}, }
props = {
props: {
baseCls: "bi-single-slider-normal bi-slider-track", baseCls: "bi-single-slider-normal bi-slider-track",
min: 0, min: 0,
max: 100, max: 100,
value: "", value: "",
// color: "#3f8ce8" };
},
beforeMount: function () { static EVENT_DRAG = "EVENT_DRAG";
beforeMount() {
const { value, min, max } = this.options; const { value, min, max } = this.options;
this.setMinAndMax({ this.setMinAndMax({
min, min,
@ -30,122 +45,143 @@ BI.SingleSliderNormal = BI.inherit(BI.Single, {
}); });
this.setValue(value); this.setValue(value);
this.populate(); this.populate();
}, }
render: function () { render() {
var self = this; const c = this._constant;
var o = this.options;
var c = this._constant;
var track = this._createTrack(); const track = this._createTrack();
this.slider = BI.createWidget({ this.slider = createWidget({
type: "bi.single_slider_button" type: "bi.single_slider_button",
}); });
this._draggable(this.slider); this._draggable(this.slider);
var sliderVertical = BI.createWidget({ const sliderVertical = createWidget({
type: "bi.vertical_adapt", type: VerticalAdaptLayout.xtype,
columnSize: ["fill"], columnSize: ["fill"],
items: [{ items: [
type: "bi.absolute", {
items: [ type: AbsoluteLayout.xtype,
{ items: [
el: this.slider, {
top: 8, el: this.slider,
} top: 8,
], }
height: c.SLIDER_HEIGHT ],
}], height: c.SLIDER_HEIGHT,
}
],
hgap: c.SLIDER_WIDTH_HALF, hgap: c.SLIDER_WIDTH_HALF,
height: c.SLIDER_HEIGHT height: c.SLIDER_HEIGHT,
}); });
sliderVertical.element.click(function (e) { sliderVertical.element.click(e => {
if (self.enable && self.isEnabled() && sliderVertical.element[0] === e.originalEvent.target) { if (
var offset = e.clientX - self.element.offset().left - c.SLIDER_WIDTH_HALF; this.enable &&
var trackLength = self.track.element[0].scrollWidth - c.TRACK_GAP; this.isEnabled() &&
var percent = 0; sliderVertical.element[0] === e.originalEvent.target
) {
const offset =
e.clientX -
this.element.offset().left -
c.SLIDER_WIDTH_HALF;
const trackLength =
this.track.element[0].scrollWidth - c.TRACK_GAP;
let percent = 0;
if (offset < 0) { if (offset < 0) {
percent = 0; percent = 0;
} }
if (offset > 0 && offset < trackLength) { if (offset > 0 && offset < trackLength) {
percent = offset * 100 / self._getGrayTrackLength(); percent = (offset * 100) / this._getGrayTrackLength();
} }
if (offset >= trackLength) { if (offset >= trackLength) {
percent = 100; percent = 100;
} }
var significantPercent = BI.parseFloat(percent.toFixed(1)); const significantPercent = parseFloat(percent.toFixed(1));
self._setAllPosition(significantPercent); this._setAllPosition(significantPercent);
var v = self._getValueByPercent(significantPercent); const v = this._getValueByPercent(significantPercent);
self.value = v; this.value = v;
self.fireEvent(BI.SingleSlider.EVENT_CHANGE); this.fireEvent(SingleSlider.EVENT_CHANGE);
} }
}); });
return { return {
type: "bi.absolute", type: AbsoluteLayout.xtype,
element: this, element: this,
items: [{ items: [
el: { {
type: "bi.vertical", el: {
items: [{ type: VerticalLayout.xtype,
type: "bi.absolute", items: [
items: [{ {
el: track, type: AbsoluteLayout.xtype,
width: "100%", items: [
height: c.TRACK_HEIGHT {
}] el: track,
}], width: "100%",
hgap: c.TRACK_GAP_HALF, height: c.TRACK_HEIGHT,
height: c.TRACK_HEIGHT }
],
}
],
hgap: c.TRACK_GAP_HALF,
height: c.TRACK_HEIGHT,
},
top: 3,
left: 0,
width: "100%",
}, },
top: 3, {
left: 0, el: sliderVertical,
width: "100%" top: 0,
}, { left: 0,
el: sliderVertical, width: "100%",
top: 0, }
left: 0, ],
width: "100%"
}]
}; };
}, }
_draggable: function (widget) { _draggable(widget) {
var self = this, o = this.options; const o = this.options;
var startDrag = false; let startDrag = false;
var size = 0, offset = 0, defaultSize = 0; let size = 0,
var mouseMoveTracker = new BI.MouseMoveTracker(function (deltaX) { offset = 0,
if (mouseMoveTracker.isDragging()) { defaultSize = 0;
startDrag = true; const mouseMoveTracker = new MouseMoveTracker(
offset += deltaX; (deltaX => {
size = optimizeSize(defaultSize + offset); if (mouseMoveTracker.isDragging()) {
widget.element.addClass("dragging"); startDrag = true;
var percent = size * 100 / (self._getGrayTrackLength()); offset += deltaX;
var significantPercent = BI.parseFloat(percent.toFixed(1));// 直接对计算出来的百分数保留到小数点后一位,相当于分成了1000份。 size = optimizeSize(defaultSize + offset);
self._setBlueTrack(significantPercent); widget.element.addClass("dragging");
self._setSliderPosition(significantPercent); const percent = (size * 100) / this._getGrayTrackLength();
var v = self._getValueByPercent(significantPercent); const significantPercent = parseFloat(percent.toFixed(1)); // 直接对计算出来的百分数保留到小数点后一位,相当于分成了1000份。
v = o.digit === false ? v : v.toFixed(o.digit); this._setBlueTrack(significantPercent);
self.value = v; this._setSliderPosition(significantPercent);
self.fireEvent(BI.SingleSliderNormal.EVENT_DRAG, v); let v = this._getValueByPercent(significantPercent);
} v = o.digit === false ? v : v.toFixed(o.digit);
}, function () { this.value = v;
if (startDrag === true) { this.fireEvent(SingleSliderNormal.EVENT_DRAG, v);
size = optimizeSize(size); }
var percent = size * 100 / (self._getGrayTrackLength()); }),
var significantPercent = BI.parseFloat(percent.toFixed(1)); (() => {
self._setSliderPosition(significantPercent); if (startDrag === true) {
size = 0; size = optimizeSize(size);
offset = 0; const percent = (size * 100) / this._getGrayTrackLength();
defaultSize = size; const significantPercent = parseFloat(percent.toFixed(1));
startDrag = false; this._setSliderPosition(significantPercent);
} size = 0;
widget.element.removeClass("dragging"); offset = 0;
mouseMoveTracker.releaseMouseMoves(); defaultSize = size;
self.fireEvent(BI.SingleSlider.EVENT_CHANGE); startDrag = false;
}, window); }
widget.element.removeClass("dragging");
mouseMoveTracker.releaseMouseMoves();
this.fireEvent(SingleSlider.EVENT_CHANGE);
}),
window
);
widget.element.on("mousedown", function (event) { widget.element.on("mousedown", function (event) {
if(!widget.isEnabled()) { if (!widget.isEnabled()) {
return; return;
} }
defaultSize = this.offsetLeft; defaultSize = this.offsetLeft;
@ -153,110 +189,120 @@ BI.SingleSliderNormal = BI.inherit(BI.Single, {
mouseMoveTracker.captureMouseMoves(event); mouseMoveTracker.captureMouseMoves(event);
}); });
function optimizeSize (s) { const optimizeSize = s => clamp(s, 0, this._getGrayTrackLength());
return BI.clamp(s, 0, self._getGrayTrackLength()); }
}
},
_createTrack: function () { _createTrack() {
var self = this; this.grayTrack = createWidget({
var c = this._constant; type: Layout.xtype,
this.grayTrack = BI.createWidget({
type: "bi.layout",
cls: "gray-track", cls: "gray-track",
height: 6 height: 6,
}); });
this.blueTrack = BI.createWidget({ this.blueTrack = createWidget({
type: "bi.layout", type: Layout.xtype,
cls: "blue-track bi-high-light-background", cls: "blue-track bi-high-light-background",
height: 6 height: 6,
}); });
if (this.options.color) { if (this.options.color) {
this.blueTrack.element.css({"background-color": this.options.color}); this.blueTrack.element.css({
"background-color": this.options.color,
});
} }
return { return {
type: "bi.absolute", type: AbsoluteLayout.xtype,
items: [{ items: [
el: { {
type: "bi.vertical", el: {
items: [{ type: VerticalLayout.xtype,
type: "bi.absolute", items: [
items: [{ {
el: this.grayTrack, type: AbsoluteLayout.xtype,
top: 0, items: [
left: 0, {
width: "100%" el: this.grayTrack,
}, { top: 0,
el: this.blueTrack, left: 0,
top: 0, width: "100%",
left: 0, },
width: "0%" {
}] el: this.blueTrack,
}], top: 0,
hgap: 8, left: 0,
height: 8 width: "0%",
}, }
top: 8, ],
left: 0, }
width: "100%" ],
}], hgap: 8,
ref: function (ref) { height: 8,
self.track = ref; },
} top: 8,
left: 0,
width: "100%",
}
],
ref: _ref => {
this.track = _ref;
},
}; };
}, }
_checkValidation: function (v) { _checkValidation(v) {
return !(BI.isNull(v) || v < this.min || v > this.max); return !(isNull(v) || v < this.min || v > this.max);
}, }
_setBlueTrack: function (percent) { _setBlueTrack(percent) {
this.blueTrack.element.css({width: percent + "%"}); this.blueTrack.element.css({ width: `${percent}%` });
}, }
_setSliderPosition: function (percent) { _setSliderPosition(percent) {
this.slider.element.css({left: percent + "%"}); this.slider.element.css({ left: `${percent}%` });
}, }
_setAllPosition: function (percent) { _setAllPosition(percent) {
this._setSliderPosition(percent); this._setSliderPosition(percent);
this._setBlueTrack(percent); this._setBlueTrack(percent);
}, }
_setVisible: function (visible) { _setVisible(visible) {
this.slider.setVisible(visible); this.slider.setVisible(visible);
}, }
_getGrayTrackLength: function () { _getGrayTrackLength() {
return this.grayTrack.element[0].scrollWidth; return this.grayTrack.element[0].scrollWidth;
}, }
_getValueByPercent: function (percent) { _getValueByPercent(percent) {
var thousandth = BI.parseInt(percent * 10); const thousandth = parseInt(percent * 10);
return (((this.max - this.min) * thousandth) / 1000 + this.min);
}, return ((this.max - this.min) * thousandth) / 1000 + this.min;
}
_getPercentByValue: function (v) { _getPercentByValue(v) {
return (v - this.min) * 100 / (this.max - this.min); return ((v - this.min) * 100) / (this.max - this.min);
}, }
_setEnable: function (b) { _setEnable(b) {
BI.SingleSliderNormal.superclass._setEnable.apply(this, [b]); super._setEnable.apply(this, [b]);
if(b) { if (b) {
this.blueTrack.element.removeClass("disabled-blue-track").addClass("blue-track"); this.blueTrack.element
.removeClass("disabled-blue-track")
.addClass("blue-track");
} else { } else {
this.blueTrack.element.removeClass("blue-track").addClass("disabled-blue-track"); this.blueTrack.element
.removeClass("blue-track")
.addClass("disabled-blue-track");
} }
}, }
getValue: function () { getValue() {
return this.value; return this.value;
}, }
setValue: function (v) { setValue(v) {
var value = BI.parseFloat(v); const value = parseFloat(v);
if ((!isNaN(value))) { if (!isNaN(value)) {
if (this._checkValidation(value)) { if (this._checkValidation(value)) {
this.value = value; this.value = value;
} }
@ -267,37 +313,35 @@ BI.SingleSliderNormal = BI.inherit(BI.Single, {
this.value = this.min; this.value = this.min;
} }
} }
}, }
setMinAndMax: function (v) { setMinAndMax(v) {
var minNumber = BI.parseFloat(v.min); const minNumber = parseFloat(v.min);
var maxNumber = BI.parseFloat(v.max); const maxNumber = parseFloat(v.max);
if ((!isNaN(minNumber)) && (!isNaN(maxNumber)) && (maxNumber > minNumber )) { if (!isNaN(minNumber) && !isNaN(maxNumber) && maxNumber > minNumber) {
this.min = minNumber; this.min = minNumber;
this.max = maxNumber; this.max = maxNumber;
} }
}, }
reset: function () { reset() {
this._setVisible(false); this._setVisible(false);
this.enable = false; this.enable = false;
this.value = ""; this.value = "";
this.min = 0; this.min = 0;
this.max = 0; this.max = 0;
this._setBlueTrack(0); this._setBlueTrack(0);
}, }
populate: function () { populate() {
if (!isNaN(this.min) && !isNaN(this.max)) { if (!isNaN(this.min) && !isNaN(this.max)) {
this._setVisible(true); this._setVisible(true);
this.enable = true; this.enable = true;
if (BI.isNumeric(this.value) || BI.isNotEmptyString(this.value)) { if (isNumeric(this.value) || isNotEmptyString(this.value)) {
this._setAllPosition(this._getPercentByValue(this.value)); this._setAllPosition(this._getPercentByValue(this.value));
} else { } else {
this._setAllPosition(100); this._setAllPosition(100);
} }
} }
} }
}); }
BI.SingleSliderNormal.EVENT_DRAG = "EVENT_DRAG";
BI.shortcut("bi.single_slider_normal", BI.SingleSliderNormal);

Loading…
Cancel
Save