@dunite/au-fluent-ui
Version:
An Aurelia plugin project that wraps Microsoft Fluent UI React components.
83 lines (81 loc) • 3.66 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;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { customElement, inject, noView, bindable } from 'aurelia-framework';
import { Pivot, PivotItem } from '@fluentui/react/lib/Pivot';
import { AuReactNoStateWrapper, addPropertiesNoState, onlyAureliaBound } from '@dunite/au-react-wrapper';
import * as React from 'react';
import * as ReactDom from 'react-dom';
var reactprops = {};
reactprops.className = {};
reactprops.defaultSelectedIndex = {};
reactprops.defaultSelectedKey = {};
reactprops.getTabId = onlyAureliaBound;
reactprops.headersOnly = {};
reactprops.linkFormat = {};
reactprops.linkSize = {};
reactprops.onLinkClick = onlyAureliaBound;
reactprops.selectedKey = {};
var DuPivot = (function (_super) {
__extends(DuPivot, _super);
function DuPivot(element) {
var _this = _super.call(this, element) || this;
_this.pivotChildren = [];
return _this;
}
DuPivot.prototype.render = function () {
this.renderReact(reactprops);
};
DuPivot.prototype.renderReact = function (reactprops) {
this.container = this.element.querySelector('.au-react-root');
if (this.container == null) {
this.container = document.createElement('span');
this.container.setAttribute('class', 'au-react-root');
this.element.appendChild(this.container);
}
var a = this.createState(reactprops);
for (var i = 0; i < this.items.length; i++) {
if (typeof this.items[i].key == 'undefined') {
this.items[i].key = 'k' + i;
}
var t = React.createElement(PivotItem, this.items[i], React.createElement('div', { className: 'du' + this.items[i].itemKey }));
this.pivotChildren.push(t);
}
;
var reactElement = React.createElement(Pivot, a, this.pivotChildren);
this.reactComponent = ReactDom.render(reactElement, this.container);
};
__decorate([
bindable(),
__metadata("design:type", Array)
], DuPivot.prototype, "items", void 0);
DuPivot = __decorate([
noView(),
inject(Element),
customElement('du-pivot'),
__metadata("design:paramtypes", [Object])
], DuPivot);
return DuPivot;
}(AuReactNoStateWrapper));
export { DuPivot };
addPropertiesNoState(DuPivot, reactprops);
//# sourceMappingURL=DuPivot.js.map