devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
84 lines (83 loc) • 2.44 kB
JavaScript
/**
* DevExtreme (esm/renovation/ui/form/form.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import _extends from "@babel/runtime/helpers/esm/extends";
var _excluded = ["scrollingEnabled", "useNativeScrolling"];
import {
createComponentVNode,
normalizeProps
} from "inferno";
import {
InfernoWrapperComponent
} from "@devextreme/vdom";
import {
FormProps
} from "./form_props";
import {
combineClasses
} from "../../utils/combine_classes";
import {
Widget
} from "../common/widget";
import {
LayoutManager
} from "./layout_manager";
import {
Scrollable
} from "../scroll_view/scrollable";
export var viewFunction = viewModel => {
var aria = {
role: "form"
};
var cssClasses = combineClasses({
"dx-form": true
});
var {
props: {
scrollingEnabled: scrollingEnabled,
useNativeScrolling: useNativeScrolling
},
restAttributes: restAttributes
} = viewModel;
var rootLayoutManager = createComponentVNode(2, LayoutManager);
return scrollingEnabled ? createComponentVNode(2, Scrollable, {
aria: aria,
classes: cssClasses,
useNative: !!useNativeScrolling,
useSimulatedScrollbar: !useNativeScrolling,
useKeyboard: false,
direction: "both",
bounceEnabled: false,
children: rootLayoutManager
}) : normalizeProps(createComponentVNode(2, Widget, _extends({
aria: aria,
classes: cssClasses
}, restAttributes, {
children: rootLayoutManager
})))
};
export class Form extends InfernoWrapperComponent {
constructor(props) {
super(props);
this.state = {}
}
get restAttributes() {
var _this$props = this.props,
restProps = _objectWithoutPropertiesLoose(_this$props, _excluded);
return restProps
}
render() {
var props = this.props;
return viewFunction({
props: _extends({}, props),
restAttributes: this.restAttributes
})
}
}
Form.defaultProps = _extends({}, FormProps);