@syncfusion/ej2-vue-navigations
Version:
A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Vue
114 lines (113 loc) • 5.25 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
}
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
import { isUndefined } from '@syncfusion/ej2-base';
import { ComponentBase, EJComponentDecorator } from '@syncfusion/ej2-vue-base';
import { Sidebar } from '@syncfusion/ej2-navigations';
export var properties = ['animate', 'closeOnDocumentClick', 'dockSize', 'enableDock', 'enableGestures', 'enablePersistence', 'enableRtl', 'height', 'isOpen', 'locale', 'mediaQuery', 'position', 'showBackdrop', 'target', 'type', 'width', 'zIndex', 'change', 'close', 'created', 'destroyed', 'open'];
export var modelProps = ['isOpen'];
/**
* Represents the Essential JS 2 VueJS Sidebar Component.
* ```html
* <ejs-sidebar></ejs-sidebar>
* ```
*/
var SidebarComponent = /** @class */ (function (_super) {
__extends(SidebarComponent, _super);
function SidebarComponent() {
var _this = _super.call(this) || this;
_this.propKeys = properties;
_this.models = modelProps;
_this.hasChildDirective = false;
_this.hasInjectedModules = false;
_this.tagMapper = {};
_this.tagNameMapper = {};
_this.ej2Instances = new Sidebar({});
_this.ej2Instances._trigger = _this.ej2Instances.trigger;
_this.ej2Instances.trigger = _this.trigger;
_this.bindProperties();
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
_this.ej2Instances.setProperties = _this.setProperties;
return _this;
}
SidebarComponent.prototype.setProperties = function (prop, muteOnChange) {
var _this = this;
if (this.ej2Instances && this.ej2Instances._setProperties) {
this.ej2Instances._setProperties(prop, muteOnChange);
}
if (prop && this.models && this.models.length) {
Object.keys(prop).map(function (key) {
_this.models.map(function (model) {
if ((key === model) && !(/datasource/i.test(key))) {
_this.$emit('update:' + key, prop[key]);
}
});
});
}
};
SidebarComponent.prototype.trigger = function (eventName, eventProp, successHandler) {
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
var key = this.models.toString().match(/checked|value/) || [];
var propKey = key[0];
if (eventProp && key && !isUndefined(eventProp[propKey])) {
this.$emit('update:' + propKey, eventProp[propKey]);
this.$emit('modelchanged', eventProp[propKey]);
}
}
else if ((eventName === 'actionBegin' && eventProp.requestType === 'dateNavigate') && this.models && (this.models.length !== 0)) {
var key = this.models.toString().match(/currentView|selectedDate/) || [];
var propKey = key[0];
if (eventProp && key && !isUndefined(eventProp[propKey])) {
this.$emit('update:' + propKey, eventProp[propKey]);
this.$emit('modelchanged', eventProp[propKey]);
}
}
if (this.ej2Instances && this.ej2Instances._trigger) {
this.ej2Instances._trigger(eventName, eventProp, successHandler);
}
};
SidebarComponent.prototype.render = function (createElement) {
return createElement('div', this.$slots.default);
};
SidebarComponent.prototype.hide = function (e) {
return this.ej2Instances.hide(e);
};
SidebarComponent.prototype.show = function (e) {
return this.ej2Instances.show(e);
};
SidebarComponent.prototype.toggle = function (e) {
return this.ej2Instances.toggle(e);
};
SidebarComponent = __decorate([
EJComponentDecorator({
props: properties,
model: {
event: 'modelchanged'
}
})
], SidebarComponent);
return SidebarComponent;
}(ComponentBase));
export { SidebarComponent };
export var SidebarPlugin = {
name: 'ejs-sidebar',
install: function (Vue) {
Vue.component(SidebarPlugin.name, SidebarComponent);
}
};