wisemapping-frontend/packages/mindplot/lib/components/widget/ToolbarPaneItem.js

126 lines
3.7 KiB
JavaScript
Raw Normal View History

2021-07-16 16:41:58 +02:00
/*
* Copyright [2015] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const ToolbarItem = require('./ToolbarItem').default;
const FloatingTip = require('./FloatingTip').default;
const ToolbarPaneItem = new Class({
2021-09-08 22:45:26 +02:00
Extends: ToolbarItem,
initialize: function (buttonId, model) {
$assert(buttonId, 'buttonId can not be null');
$assert(model, 'model can not be null');
2021-07-16 16:41:58 +02:00
this._model = model;
var me = this;
2021-09-08 22:45:26 +02:00
var fn = function () {
2021-07-16 16:41:58 +02:00
// Is the panel being displayed ?
me.isVisible() ? me.hide() : me.show();
};
2021-09-08 22:45:26 +02:00
this.parent(buttonId, fn, { topicAction: true, relAction: false });
2021-07-16 16:41:58 +02:00
this._panelElem = this._init();
this._visible = false;
},
2021-09-08 22:45:26 +02:00
_init: function () {
2021-07-16 16:41:58 +02:00
// Load the context of the panel ...
var panelElem = this.buildPanel();
panelElem.css('cursor', 'default');
var buttonElem = this.getButtonElem();
var me = this;
this._tip = new FloatingTip(buttonElem, {
html: true,
placement: 'bottom',
2021-09-08 22:45:26 +02:00
content: function () {
2021-07-16 16:41:58 +02:00
return me._updateSelectedItem();
},
className: 'toolbarPaneTip',
trigger: 'manual',
2021-09-08 22:45:26 +02:00
template:
'<div class="popover popoverGray" role="tooltip"><div class="arrow arrowGray"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>',
2021-07-16 16:41:58 +02:00
});
2021-09-08 22:45:26 +02:00
this._tip.addEvent('hide', function () {
me._visible = false;
2021-07-16 16:41:58 +02:00
});
2021-09-08 22:45:26 +02:00
this._tip.addEvent('show', function () {
me._visible = true;
2021-07-16 16:41:58 +02:00
});
return panelElem;
},
2021-09-08 22:45:26 +02:00
getModel: function () {
2021-07-16 16:41:58 +02:00
return this._model;
},
2021-09-08 22:45:26 +02:00
getPanelElem: function () {
2021-07-16 16:41:58 +02:00
return this._panelElem;
}.protect(),
2021-09-08 22:45:26 +02:00
show: function () {
2021-07-16 16:41:58 +02:00
if (!this.isVisible()) {
this.parent();
this._tip.show();
this.getButtonElem().className = 'buttonExtActive';
}
},
2021-09-08 22:45:26 +02:00
hide: function () {
2021-07-16 16:41:58 +02:00
if (this.isVisible()) {
this.parent();
this._tip.hide();
this.getButtonElem().className = 'buttonExtOn';
}
},
2021-09-08 22:45:26 +02:00
isVisible: function () {
2021-07-16 16:41:58 +02:00
return this._visible;
},
2021-09-08 22:45:26 +02:00
disable: function () {
2021-07-16 16:41:58 +02:00
this.hide();
var elem = this.getButtonElem();
if (this._enable) {
elem.unbind('click', this._fn);
elem.removeClass('buttonExtOn');
// Todo: Hack...
elem.removeClass('buttonOn');
elem.addClass('buttonExtOff');
this._enable = false;
}
},
2021-09-08 22:45:26 +02:00
enable: function () {
2021-07-16 16:41:58 +02:00
var elem = this.getButtonElem();
if (!this._enable) {
elem.bind('click', this._fn);
elem.removeClass('buttonExtOff');
elem.addClass('buttonExtOn');
this._enable = true;
}
},
2021-09-08 22:45:26 +02:00
buildPanel: function () {
throw 'Method must be implemented';
}.protect(),
2021-07-16 16:41:58 +02:00
});
export default ToolbarPaneItem;