DocSpace-buildtools/packages/asc-web-components/row/index.js

171 lines
5.1 KiB
JavaScript
Raw Normal View History

import PropTypes from "prop-types";
import React from "react";
import Checkbox from "../checkbox";
import ContextMenuButton from "../context-menu-button";
import ContextMenu from "../context-menu";
import {
StyledOptionButton,
StyledContentElement,
StyledElement,
StyledCheckbox,
StyledContent,
StyledRow,
} from "./styled-row";
2021-11-17 08:08:25 +00:00
import Loader from "../loader";
class Row extends React.Component {
constructor(props) {
super(props);
this.cm = React.createRef();
this.row = React.createRef();
}
render() {
const {
checked,
children,
contentElement,
contextButtonSpacerWidth,
data,
element,
indeterminate,
onSelect,
rowContextClick,
sectionWidth,
contextMenuData,
} = this.props;
const renderCheckbox = Object.prototype.hasOwnProperty.call(
this.props,
"checked"
);
const renderElement = Object.prototype.hasOwnProperty.call(
this.props,
"element"
);
const renderContentElement = Object.prototype.hasOwnProperty.call(
this.props,
"contentElement"
);
const renderContext =
Object.prototype.hasOwnProperty.call(data, "contextOptions") &&
data.contextOptions.length > 0;
const changeCheckbox = (e) => {
onSelect && onSelect(e.target.checked, data);
};
const getOptions = () => {
rowContextClick && rowContextClick();
return data.contextOptions; //contextOptions
};
const onContextMenu = (e) => {
rowContextClick && rowContextClick();
if (!this.cm.current.menuRef.current) {
this.row.current.click(e); //TODO: need fix context menu to global
}
this.cm.current.show(e);
};
const { onRowClick, inProgress, ...rest } = this.props;
return (
<StyledRow ref={this.row} {...rest} onContextMenu={onContextMenu}>
{inProgress ? (
2021-11-17 08:08:25 +00:00
<Loader className="row-loader" type="oval" size="16px" />
) : (
renderCheckbox && (
<StyledCheckbox className="not-selectable">
<Checkbox
className="checkbox"
isChecked={checked}
isIndeterminate={indeterminate}
onChange={changeCheckbox}
/>
</StyledCheckbox>
)
)}
2020-10-26 12:40:49 +00:00
{renderElement && (
<StyledElement onClick={onRowClick} className="styled-element">
{element}
</StyledElement>
2020-10-26 12:40:49 +00:00
)}
<StyledContent onClick={onRowClick} className="row_content">
{children}
</StyledContent>
<StyledOptionButton
className="row_context-menu-wrapper"
spacerWidth={contextButtonSpacerWidth}
>
{renderContentElement && (
<StyledContentElement>{contentElement}</StyledContentElement>
)}
{renderContext ? (
<ContextMenuButton
color="#A3A9AE"
hoverColor="#657077"
className="expandButton"
getData={getOptions}
directionX="right"
isNew={true}
onClick={onContextMenu}
/>
) : (
<div className="expandButton"> </div>
)}
<ContextMenu
contextMenuData={contextMenuData}
ref={this.cm}
></ContextMenu>
</StyledOptionButton>
</StyledRow>
);
}
}
Row.propTypes = {
2021-03-10 10:02:57 +00:00
/** Required to host the Checkbox component. Its location is fixed and it is always the first.
* If there is no value, the occupied space is distributed among the other child elements. */
checked: PropTypes.bool,
children: PropTypes.element,
2021-03-10 10:02:57 +00:00
/** Accepts class */
className: PropTypes.string,
contentElement: PropTypes.any,
2021-03-10 10:02:57 +00:00
/** Required for the width task of the ContextMenuButton component. */
contextButtonSpacerWidth: PropTypes.string,
2021-03-10 10:02:57 +00:00
/** Required to host the ContextMenuButton component. It is always located near the right border of the container,
* regardless of the contents of the child elements. If there is no value, the occupied space is distributed among the other child elements. */
contextOptions: PropTypes.array,
2021-03-10 10:02:57 +00:00
/** Current row item information. */
data: PropTypes.object,
2021-03-10 10:02:57 +00:00
/** Required to host some component. It has a fixed order of location, if the Checkbox component is specified,
* then it follows, otherwise it occupies the first position. If there is no value, the occupied space is distributed among the other child elements. */
element: PropTypes.element,
2021-03-10 10:02:57 +00:00
/** Accepts id */
id: PropTypes.string,
/** If true, this state is shown as a rectangle in the checkbox */
indeterminate: PropTypes.bool,
2021-03-10 10:02:57 +00:00
/** when selecting row element. Returns data value. */
onSelect: PropTypes.func,
/** On click anywhere in the row, except the checkbox and context menu */
onRowClick: PropTypes.func,
rowContextClick: PropTypes.func,
2021-03-10 10:02:57 +00:00
/** Accepts css style */
style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
sectionWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
inProgress: PropTypes.bool,
contextMenuData: PropTypes.object,
};
Row.defaultProps = {
contextButtonSpacerWidth: "26px",
};
export default Row;