@singularsystems/neo-react 0.10.62 → 0.10.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ReactComponents/DropDown/AutoCompleteDropDown.js +1 -1
- package/dist/ReactComponents/Grid/Grid.d.ts +9 -0
- package/dist/ReactComponents/Grid/Grid.js +15 -2
- package/dist/ReactComponents/Grid/StickyTableHeader.d.ts +24 -0
- package/dist/ReactComponents/Grid/StickyTableHeader.js +98 -0
- package/dist/ReactComponents/Modal/Modal.js +4 -0
- package/dist/ReactComponents/PropTypes.d.ts +3 -10
- package/dist/ReactComponents/PropTypes.js +12 -2
- package/package.json +3 -3
- package/styles/Grid.scss +5 -0
|
@@ -188,7 +188,7 @@ var AutoCompleteDropDown = /** @class */ (function (_super) {
|
|
|
188
188
|
if (nativeProps.isClearable === undefined) {
|
|
189
189
|
nativeProps.isClearable = true;
|
|
190
190
|
}
|
|
191
|
-
if (splitProps.editor.
|
|
191
|
+
if (BindPropsHelper.isReadOnly(splitProps.editor, this.context) || BindPropsHelper.isDisabled(splitProps.editor, this.context)) {
|
|
192
192
|
nativeProps.isDisabled = true;
|
|
193
193
|
}
|
|
194
194
|
nativeProps.className = Utils.joinWithSpaces("react-select-bs", nativeProps.className);
|
|
@@ -73,6 +73,11 @@ export interface IGridProps<T> extends React.HTMLProps<HTMLTableElement> {
|
|
|
73
73
|
* Set `showAddButton = false` if you don't want the default button.
|
|
74
74
|
*/
|
|
75
75
|
footerButtons?: () => React.ReactNode;
|
|
76
|
+
/**
|
|
77
|
+
* Will cause the header to stick to the top of the screen / scroll element when scrolling.
|
|
78
|
+
* Note: if your app has a fixed header, you need to specify this in the global neo settings.
|
|
79
|
+
*/
|
|
80
|
+
stickyHeader?: boolean;
|
|
76
81
|
}
|
|
77
82
|
export default class Grid<T> extends React.Component<IGridProps<T>> {
|
|
78
83
|
static contextType: React.Context<import("../../React/DataView").DataViewContextParams<unknown>>;
|
|
@@ -80,7 +85,11 @@ export default class Grid<T> extends React.Component<IGridProps<T>> {
|
|
|
80
85
|
private gridContext;
|
|
81
86
|
private prevItems?;
|
|
82
87
|
private headerItem;
|
|
88
|
+
private domRef;
|
|
89
|
+
private stickyHeaderHelper?;
|
|
83
90
|
constructor(props: IGridProps<T>);
|
|
91
|
+
componentDidMount(): void;
|
|
92
|
+
componentWillUnmount(): void;
|
|
84
93
|
render(): JSX.Element;
|
|
85
94
|
private setInitialSort;
|
|
86
95
|
}
|
|
@@ -4,6 +4,7 @@ import { Data, Utils, Misc } from '@singularsystems/neo-core';
|
|
|
4
4
|
import { observer, Observer } from 'mobx-react';
|
|
5
5
|
import NeoButton from '../Button';
|
|
6
6
|
import { DataViewContext } from '../../React/DataView';
|
|
7
|
+
import { StickyTableHeader } from './StickyTableHeader';
|
|
7
8
|
// Grid context
|
|
8
9
|
var GridContextParams = /** @class */ (function () {
|
|
9
10
|
function GridContextParams() {
|
|
@@ -27,12 +28,24 @@ var Grid = /** @class */ (function (_super) {
|
|
|
27
28
|
function Grid(props) {
|
|
28
29
|
var _this = _super.call(this, props) || this;
|
|
29
30
|
_this.gridContext = new GridContextParams();
|
|
31
|
+
_this.domRef = React.createRef();
|
|
30
32
|
_this.gridContext.section = "header";
|
|
31
33
|
return _this;
|
|
32
34
|
}
|
|
35
|
+
Grid.prototype.componentDidMount = function () {
|
|
36
|
+
var _a, _b;
|
|
37
|
+
if (this.domRef.current && (_a = this.props.stickyHeader, (_a !== null && _a !== void 0 ? _a : Misc.Settings.grid.useStickyHeaders))) {
|
|
38
|
+
this.stickyHeaderHelper = new StickyTableHeader(this.domRef.current, (_b = Misc.Settings.fixedAppHeaderElement) === null || _b === void 0 ? void 0 : _b.call(undefined));
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
Grid.prototype.componentWillUnmount = function () {
|
|
42
|
+
if (this.stickyHeaderHelper) {
|
|
43
|
+
this.stickyHeaderHelper.dispose();
|
|
44
|
+
}
|
|
45
|
+
};
|
|
33
46
|
Grid.prototype.render = function () {
|
|
34
47
|
var _this = this;
|
|
35
|
-
var _a = this.props, items = _a.items, showAddButton = _a.showAddButton, addButton = _a.addButton, filterPredicate = _a.filterPredicate, keyProperty = _a.keyProperty, allowSort = _a.allowSort, expandAll = _a.expandAll, collapseAll = _a.collapseAll, initialSort = _a.initialSort, initialSortAscending = _a.initialSortAscending, isBordered = _a.isBordered, isStriped = _a.isStriped, isBorderless = _a.isBorderless, showHover = _a.showHover, isSmallTable = _a.isSmallTable, footerContent = _a.footerContent, footerButtons = _a.footerButtons, domProps = __rest(_a, ["items", "showAddButton", "addButton", "filterPredicate", "keyProperty", "allowSort", "expandAll", "collapseAll", "initialSort", "initialSortAscending", "isBordered", "isStriped", "isBorderless", "showHover", "isSmallTable", "footerContent", "footerButtons"]);
|
|
48
|
+
var _a = this.props, items = _a.items, showAddButton = _a.showAddButton, addButton = _a.addButton, filterPredicate = _a.filterPredicate, keyProperty = _a.keyProperty, allowSort = _a.allowSort, expandAll = _a.expandAll, collapseAll = _a.collapseAll, initialSort = _a.initialSort, initialSortAscending = _a.initialSortAscending, isBordered = _a.isBordered, isStriped = _a.isStriped, isBorderless = _a.isBorderless, showHover = _a.showHover, isSmallTable = _a.isSmallTable, footerContent = _a.footerContent, footerButtons = _a.footerButtons, stickyHeader = _a.stickyHeader, domProps = __rest(_a, ["items", "showAddButton", "addButton", "filterPredicate", "keyProperty", "allowSort", "expandAll", "collapseAll", "initialSort", "initialSortAscending", "isBordered", "isStriped", "isBorderless", "showHover", "isSmallTable", "footerContent", "footerButtons", "stickyHeader"]);
|
|
36
49
|
if (expandAll === true) {
|
|
37
50
|
this.gridContext.expandAll = true;
|
|
38
51
|
}
|
|
@@ -86,7 +99,7 @@ var Grid = /** @class */ (function (_super) {
|
|
|
86
99
|
}
|
|
87
100
|
this.headerItem = this.gridContext.dataView.getMetaItem();
|
|
88
101
|
}
|
|
89
|
-
return (React.createElement("table", __assign({}, domProps, { className: className }),
|
|
102
|
+
return (React.createElement("table", __assign({}, domProps, { className: className, ref: this.domRef }),
|
|
90
103
|
React.createElement(GridContext.Provider, { value: this.gridContext },
|
|
91
104
|
React.createElement(TableSection, { type: "header" }, this.headerItem && this.props.children(this.headerItem, this.headerItem.meta)),
|
|
92
105
|
React.createElement(TableSection, { type: "body" }, this.gridContext.dataView.getItems().map(function (item) { return (React.createElement(ItemGroup, { item: item, key: keyProperty ? item[keyProperty] : item.entityIdentifier, template: _this.props.children })); })),
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Watches for when a table header scrolls out of view.
|
|
3
|
+
* When it does, adds a cloned header that is fixed at the top of the scrolling element.
|
|
4
|
+
*/
|
|
5
|
+
export declare class StickyTableHeader {
|
|
6
|
+
private table;
|
|
7
|
+
private fixedElement?;
|
|
8
|
+
/**
|
|
9
|
+
* Creates the instance, and begins listening for scroll events.
|
|
10
|
+
* @param table The table to add sticky headers to.
|
|
11
|
+
* @param fixedElement A fixed element at the top of the screen to use as an anchor, rather than the top of the screen itself.
|
|
12
|
+
*/
|
|
13
|
+
constructor(table: HTMLTableElement, fixedElement?: HTMLElement | undefined);
|
|
14
|
+
private scrollParent?;
|
|
15
|
+
private header;
|
|
16
|
+
private headerCopy?;
|
|
17
|
+
private headerHeight;
|
|
18
|
+
private handleScroll;
|
|
19
|
+
private removeCopy;
|
|
20
|
+
private onPossibleContentChange;
|
|
21
|
+
private setColumnWidths;
|
|
22
|
+
dispose(): void;
|
|
23
|
+
private static getParentScrollElement;
|
|
24
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Watches for when a table header scrolls out of view.
|
|
3
|
+
* When it does, adds a cloned header that is fixed at the top of the scrolling element.
|
|
4
|
+
*/
|
|
5
|
+
var StickyTableHeader = /** @class */ (function () {
|
|
6
|
+
/**
|
|
7
|
+
* Creates the instance, and begins listening for scroll events.
|
|
8
|
+
* @param table The table to add sticky headers to.
|
|
9
|
+
* @param fixedElement A fixed element at the top of the screen to use as an anchor, rather than the top of the screen itself.
|
|
10
|
+
*/
|
|
11
|
+
function StickyTableHeader(table, fixedElement) {
|
|
12
|
+
this.table = table;
|
|
13
|
+
this.fixedElement = fixedElement;
|
|
14
|
+
this.headerHeight = 0;
|
|
15
|
+
if (!table.tHead) {
|
|
16
|
+
throw Error("Table must have a header section.");
|
|
17
|
+
}
|
|
18
|
+
this.header = table.tHead;
|
|
19
|
+
this.scrollParent = StickyTableHeader.getParentScrollElement(table);
|
|
20
|
+
this.handleScroll = this.handleScroll.bind(this);
|
|
21
|
+
this.onPossibleContentChange = this.onPossibleContentChange.bind(this);
|
|
22
|
+
document.addEventListener("scroll", this.handleScroll);
|
|
23
|
+
if (this.scrollParent) {
|
|
24
|
+
this.scrollParent.addEventListener("scroll", this.handleScroll);
|
|
25
|
+
}
|
|
26
|
+
table.addEventListener("keydown", this.onPossibleContentChange);
|
|
27
|
+
table.addEventListener("mouseup", this.onPossibleContentChange);
|
|
28
|
+
}
|
|
29
|
+
StickyTableHeader.prototype.handleScroll = function () {
|
|
30
|
+
var fixedElement = null;
|
|
31
|
+
if (!this.scrollParent && this.fixedElement && getComputedStyle(this.fixedElement).position === "fixed") {
|
|
32
|
+
fixedElement = this.fixedElement;
|
|
33
|
+
}
|
|
34
|
+
var topBoundary = this.scrollParent ? this.scrollParent.getBoundingClientRect().top : (fixedElement ? fixedElement.getBoundingClientRect().bottom : 0);
|
|
35
|
+
var tableBounds = this.table.getBoundingClientRect();
|
|
36
|
+
var tbodyBounds = this.table.tBodies[this.table.tBodies.length - 1].getBoundingClientRect();
|
|
37
|
+
if (tableBounds.top < topBoundary && tbodyBounds.bottom - this.headerHeight > topBoundary) {
|
|
38
|
+
if (!this.headerCopy) {
|
|
39
|
+
this.headerHeight = this.header.getBoundingClientRect().height;
|
|
40
|
+
this.headerCopy = this.header.cloneNode(true);
|
|
41
|
+
this.table.insertBefore(this.headerCopy, this.header);
|
|
42
|
+
this.header.classList.add("neo-grid-fixed-header");
|
|
43
|
+
this.setColumnWidths();
|
|
44
|
+
}
|
|
45
|
+
this.header.style.left = tableBounds.left + "px";
|
|
46
|
+
this.header.style.top = topBoundary + "px";
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
this.setColumnWidths(true);
|
|
50
|
+
this.removeCopy();
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
StickyTableHeader.prototype.removeCopy = function () {
|
|
54
|
+
if (this.headerCopy) {
|
|
55
|
+
this.header.classList.remove("neo-grid-fixed-header");
|
|
56
|
+
this.table.removeChild(this.headerCopy);
|
|
57
|
+
this.headerCopy = undefined;
|
|
58
|
+
}
|
|
59
|
+
};
|
|
60
|
+
StickyTableHeader.prototype.onPossibleContentChange = function () {
|
|
61
|
+
var _this = this;
|
|
62
|
+
setTimeout(function () { return _this.setColumnWidths(); }, 0);
|
|
63
|
+
};
|
|
64
|
+
StickyTableHeader.prototype.setColumnWidths = function (isRemoving) {
|
|
65
|
+
if (isRemoving === void 0) { isRemoving = false; }
|
|
66
|
+
if (this.headerCopy) {
|
|
67
|
+
for (var i = 0; i < this.header.rows.length; i++) {
|
|
68
|
+
var originalRow = this.header.rows[i], copyRow = this.headerCopy.rows[i];
|
|
69
|
+
for (var j = 0; j < originalRow.cells.length; j++) {
|
|
70
|
+
var originalCell = originalRow.cells[j], copyCell = copyRow.cells[j];
|
|
71
|
+
originalCell.style.width = isRemoving ? copyCell.style.width : window.getComputedStyle(copyCell).width;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
StickyTableHeader.prototype.dispose = function () {
|
|
77
|
+
document.removeEventListener("scroll", this.handleScroll);
|
|
78
|
+
if (this.scrollParent) {
|
|
79
|
+
this.scrollParent.removeEventListener("scroll", this.handleScroll);
|
|
80
|
+
}
|
|
81
|
+
this.table.removeEventListener("keydown", this.onPossibleContentChange);
|
|
82
|
+
this.table.removeEventListener("mouseup", this.onPossibleContentChange);
|
|
83
|
+
this.removeCopy();
|
|
84
|
+
};
|
|
85
|
+
StickyTableHeader.getParentScrollElement = function (element) {
|
|
86
|
+
var current = element;
|
|
87
|
+
while (current) {
|
|
88
|
+
if ((current.style.height || current.style.maxHeight) &&
|
|
89
|
+
(current.style.overflow === "scroll" || current.style.overflow === "auto" || current.style.overflowY === "scroll" || current.style.overflowY === "auto")) {
|
|
90
|
+
return current;
|
|
91
|
+
}
|
|
92
|
+
current = current.parentElement;
|
|
93
|
+
}
|
|
94
|
+
return undefined;
|
|
95
|
+
};
|
|
96
|
+
return StickyTableHeader;
|
|
97
|
+
}());
|
|
98
|
+
export { StickyTableHeader };
|
|
@@ -135,22 +135,15 @@ export declare class BindPropsHelper {
|
|
|
135
135
|
*/
|
|
136
136
|
static getBindProperty<T>(allProps: IEditorContainerProps<T, any>): Model.IPropertyInstance;
|
|
137
137
|
static splitCommonEditorProps<T extends ICommonEditorProps>(props: T): {
|
|
138
|
-
editor:
|
|
139
|
-
isReadOnly: boolean | undefined;
|
|
140
|
-
isDisabled: boolean | undefined;
|
|
141
|
-
prependText: string | undefined;
|
|
142
|
-
prepend: JSX.Element | (() => JSX.Element) | null | undefined;
|
|
143
|
-
appendText: string | undefined;
|
|
144
|
-
append: JSX.Element | (() => JSX.Element) | null | undefined;
|
|
145
|
-
inputElement: React.RefObject<HTMLElement> | undefined;
|
|
146
|
-
requiresGroup: boolean;
|
|
147
|
-
};
|
|
138
|
+
editor: ICommonEditorProps;
|
|
148
139
|
rest: Pick<T, Exclude<keyof T, "disabled" | "readOnly" | "isReadOnly" | "isDisabled" | "prependText" | "appendText" | "prepend" | "append" | "inputElement">>;
|
|
149
140
|
};
|
|
150
141
|
static normaliseContainerProps<T, TContainerDom = React.HTMLProps<T>>(component: IComponentBase, props: IEditorContainerProps<T, any> & TContainerDom, inGroup: boolean, isBootstrap?: boolean): IEditorContainerNormalisedProps<TContainerDom, any>;
|
|
151
142
|
static normaliseEditorProps<T, TDom = React.HTMLProps<T>>(component: IComponentBase, props: (IEditorAndSelectorProps<T, any> & TDom) | IEditorNormalisedProps<TDom, any>): IEditorNormalisedProps<TDom, any>;
|
|
152
143
|
static getPlaceholderText(placeholder: string | boolean | undefined, property: PropertyInfo): string | undefined;
|
|
153
144
|
static autoSetDomProperties<TDom extends React.HTMLProps<HTMLElement>>(props: IEditorNormalisedProps<TDom, any>, formContext: FormContextParams, componentBlurFn?: (e: React.FocusEvent<HTMLElement>) => void, componentFocusFn?: (e: React.FocusEvent<HTMLElement>) => void): TDom;
|
|
145
|
+
static isReadOnly(editorProps: ICommonEditorProps, formContext: FormContextParams): boolean;
|
|
146
|
+
static isDisabled(editorProps: ICommonEditorProps, formContext: FormContextParams): boolean;
|
|
154
147
|
/**
|
|
155
148
|
* Intercept the user specified blur event, and run the validation onBlur logic first.
|
|
156
149
|
* @param props Props specified on component.
|
|
@@ -204,12 +204,12 @@ var BindPropsHelper = /** @class */ (function () {
|
|
|
204
204
|
if (this.config.isTestOrDevelopment) {
|
|
205
205
|
domProps[BindPropsHelper.DataFieldName] = props.bind.propertyInfo.propertyName;
|
|
206
206
|
}
|
|
207
|
-
if (
|
|
207
|
+
if (this.isReadOnly(props.editor, formContext)) {
|
|
208
208
|
domProps.readOnly = true;
|
|
209
209
|
if (!domProps.tabIndex)
|
|
210
210
|
domProps.tabIndex = -1;
|
|
211
211
|
}
|
|
212
|
-
if (
|
|
212
|
+
if (this.isDisabled(props.editor, formContext)) {
|
|
213
213
|
domProps.disabled = true;
|
|
214
214
|
}
|
|
215
215
|
if (props.editor.placeholder) {
|
|
@@ -226,6 +226,16 @@ var BindPropsHelper = /** @class */ (function () {
|
|
|
226
226
|
domProps.onBlur = BindPropsHelper.blurIntercept(props.editor, domProps.onBlur, componentBlurFn);
|
|
227
227
|
return domProps;
|
|
228
228
|
};
|
|
229
|
+
BindPropsHelper.isReadOnly = function (editorProps, formContext) {
|
|
230
|
+
var _a;
|
|
231
|
+
var propsReadOnly = (_a = editorProps.isReadOnly, (_a !== null && _a !== void 0 ? _a : editorProps.readOnly));
|
|
232
|
+
return propsReadOnly || (formContext.allReadOnly && propsReadOnly === undefined);
|
|
233
|
+
};
|
|
234
|
+
BindPropsHelper.isDisabled = function (editorProps, formContext) {
|
|
235
|
+
var _a;
|
|
236
|
+
var propsDisabled = (_a = editorProps.isDisabled, (_a !== null && _a !== void 0 ? _a : editorProps.disabled));
|
|
237
|
+
return propsDisabled || (formContext.allDisabled && propsDisabled === undefined);
|
|
238
|
+
};
|
|
229
239
|
/**
|
|
230
240
|
* Intercept the user specified blur event, and run the validation onBlur logic first.
|
|
231
241
|
* @param props Props specified on component.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@singularsystems/neo-react",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.63",
|
|
4
4
|
"description": "React application logic and components for the Neo client library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@types/rc-slider": "^8.6.5",
|
|
34
34
|
"@types/react-color": "^3.0.1",
|
|
35
35
|
"@types/react-select": "3.1.0",
|
|
36
|
-
"@singularsystems/neo-core": "^0.10.
|
|
36
|
+
"@singularsystems/neo-core": "^0.10.74",
|
|
37
37
|
"axios": "^0.21.1",
|
|
38
38
|
"decimal.js-light": "2.5.1",
|
|
39
39
|
"history": "4.10.1",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"react-router-dom": "5.1.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@singularsystems/neo-core": ">=0.10.
|
|
50
|
+
"@singularsystems/neo-core": ">=0.10.74",
|
|
51
51
|
"axios": ">=0.21.1",
|
|
52
52
|
"inversify": ">=5.0.1",
|
|
53
53
|
"react": ">=16.13.1",
|