devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
75 lines (74 loc) • 2.08 kB
JavaScript
/**
* DevExtreme (esm/renovation/ui/scheduler/workspaces/base/virtual_cell.js)
* Version: 22.1.9
* Build date: Tue Apr 18 2023
*
* Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
var _excluded = ["colSpan", "isHeaderCell", "width"];
import {
createComponentVNode
} from "inferno";
import {
BaseInfernoComponent
} from "@devextreme/runtime/inferno";
import {
addWidthToStyle
} from "../utils";
import {
HeaderCell
} from "./header_cell";
import {
OrdinaryCell
} from "./ordinary_cell";
export var viewFunction = _ref => {
var {
props: {
colSpan: colSpan,
isHeaderCell: isHeaderCell
},
style: style
} = _ref;
var Cell = isHeaderCell ? HeaderCell : OrdinaryCell;
return createComponentVNode(2, Cell, {
className: "dx-scheduler-virtual-cell",
styles: style,
colSpan: colSpan
})
};
export var VirtualCellProps = {
width: 0,
isHeaderCell: false
};
export class VirtualCell extends BaseInfernoComponent {
constructor(props) {
super(props);
this.state = {}
}
get style() {
var {
width: width
} = this.props;
var {
style: style
} = this.restAttributes;
return addWidthToStyle(width, style)
}
get restAttributes() {
var _this$props = this.props,
restProps = _objectWithoutPropertiesLoose(_this$props, _excluded);
return restProps
}
render() {
var props = this.props;
return viewFunction({
props: _extends({}, props),
style: this.style,
restAttributes: this.restAttributes
})
}
}
VirtualCell.defaultProps = VirtualCellProps;