UNPKG

@dunite/au-fluent-ui

Version:

An Aurelia plugin project that wraps Microsoft Fluent UI React components.

44 lines (37 loc) 1.46 kB
import { customElement, TaskQueue, inject } from 'aurelia-framework'; import { Checkbox, ICheckboxProps } from '@fluentui/react/lib/Checkbox'; import { AuReactWrapper, addPropertiesState, onlyAureliaBound } from '@dunite/au-react-wrapper'; // IMPORTANT // any function defined here will be called with _this as first parameter // following parameters are from the event // _this refers to the Aurelia class with all properties added let reactprops: ICheckboxProps = {} as ICheckboxProps; reactprops.disabled = <any>{}; reactprops.ariaLabel = <any>{}; reactprops.ariaLabelledBy = <any>{}; reactprops.ariaPositionInSet = <any>{}; reactprops.ariaSetSize = <any>{}; reactprops.checkmarkIconProps = <any>{}; reactprops.defaultChecked = <any>{}; reactprops.keytipProps = <any>{}; reactprops.disabled = <any>{}; reactprops.checked = <any>{}; reactprops.className = <any>{}; reactprops.label = <any>{}; reactprops.onChange = onlyAureliaBound; reactprops.boxSide = <any>{}; reactprops.onClick = onlyAureliaBound; reactprops.checked = <any>{}; @inject(Element, TaskQueue) @customElement('du-checkbox') export class DuCheckbox extends AuReactWrapper implements ICheckboxProps { constructor(element, protected tq: TaskQueue) { super(element, tq); } hidden: boolean = false; attached() { this.renderReact(Checkbox, this.createState(reactprops)); } } addPropertiesState(DuCheckbox, reactprops);