@longline/aqua-ui 1.0.344 → 1.0.347

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.
@@ -0,0 +1,71 @@
1
+ import * as React from 'react';
2
+ import { ITestable } from '../../Types';
3
+ interface IGridProps extends ITestable {
4
+ /** @ignore */
5
+ className?: string;
6
+ /** @ignore */
7
+ children?: React.ReactNode;
8
+ /**
9
+ * Column gap in pixels between items on the same row.
10
+ * @default 8
11
+ */
12
+ gap?: number;
13
+ /**
14
+ * Row gap in pixels between rows.
15
+ * @default 0
16
+ */
17
+ rowGap?: number;
18
+ /**
19
+ * If set, the grid grows to fill its flex container (`flex: 1`).
20
+ * @default false
21
+ */
22
+ fill?: boolean;
23
+ /**
24
+ * Optional inline styles applied to the outer element, for one-off overrides
25
+ * of the default styling.
26
+ */
27
+ style?: React.CSSProperties;
28
+ }
29
+ interface IGridItemProps extends ITestable {
30
+ /** @ignore */
31
+ className?: string;
32
+ /** @ignore */
33
+ children?: React.ReactNode;
34
+ /**
35
+ * How many of the grid's 6 columns this item spans (1–6): 6 is a full-width
36
+ * row, 3 a half, 2 a third, 1 a sixth.
37
+ * @default 6
38
+ */
39
+ weight?: number;
40
+ /**
41
+ * Optional inline styles applied to the outer element, for one-off overrides
42
+ * of the default styling.
43
+ */
44
+ style?: React.CSSProperties;
45
+ }
46
+ /**
47
+ * A `Grid` lays out its `Grid.Item` children on a fixed **6-column** grid — the
48
+ * layout used across our forms and detail views, where a `Grid.Item`'s `weight`
49
+ * (1–6) says how many columns it spans. Two `weight={3}` items sit side by side;
50
+ * a `weight={6}` item is a full-width row.
51
+ *
52
+ * ### Props
53
+ * - `gap`: column gap in pixels (default 8).
54
+ * - `rowGap`: row gap in pixels (default 0).
55
+ * - `fill`: grow to fill a flex container.
56
+ *
57
+ * @example
58
+ * ```tsx
59
+ * <Grid>
60
+ * <Grid.Item weight={3}><View label="First name">Ada</View></Grid.Item>
61
+ * <Grid.Item weight={3}><View label="Last name">Lovelace</View></Grid.Item>
62
+ * <Grid.Item><View label="Address">…</View></Grid.Item>
63
+ * </Grid>
64
+ * ```
65
+ */
66
+ declare const Grid: {
67
+ (props: IGridProps): React.JSX.Element;
68
+ displayName: string;
69
+ Item: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<IGridItemProps, never>> & string & Omit<(props: IGridItemProps) => React.JSX.Element, keyof React.Component<any, {}, any>>;
70
+ };
71
+ export { Grid, IGridProps, IGridItemProps };
@@ -0,0 +1,59 @@
1
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
2
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
3
+ return cooked;
4
+ };
5
+ var __assign = (this && this.__assign) || function () {
6
+ __assign = Object.assign || function(t) {
7
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
8
+ s = arguments[i];
9
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
10
+ t[p] = s[p];
11
+ }
12
+ return t;
13
+ };
14
+ return __assign.apply(this, arguments);
15
+ };
16
+ import * as React from 'react';
17
+ import styled, { css } from 'styled-components';
18
+ var GridBase = function (props) {
19
+ return React.createElement("div", { "data-testid": props['data-testid'] || "Grid", className: props.className, style: props.style }, props.children);
20
+ };
21
+ // A fixed 6-column track. `minmax(0, 1fr)` (rather than a bare `1fr`) lets a
22
+ // column shrink below the intrinsic width of its content — without it, a long
23
+ // unbreakable value would blow the column, and the whole grid, past its
24
+ // container. `column-gap` handles the inter-column spacing, so the tracks stay
25
+ // even regardless of the gap size.
26
+ var GridStyled = styled(GridBase)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: grid;\n grid-template-columns: repeat(6, minmax(0, 1fr));\n column-gap: ", "px;\n row-gap: ", "px;\n ", "\n"], ["\n display: grid;\n grid-template-columns: repeat(6, minmax(0, 1fr));\n column-gap: ", "px;\n row-gap: ", "px;\n ", "\n"])), function (p) { var _a; return (_a = p.gap) !== null && _a !== void 0 ? _a : 8; }, function (p) { var _a; return (_a = p.rowGap) !== null && _a !== void 0 ? _a : 0; }, function (p) { return p.fill && css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["flex: 1;"], ["flex: 1;"]))); });
27
+ var GridItemBase = function (props) {
28
+ return React.createElement("div", { "data-testid": props['data-testid'] || "Grid.Item", className: props.className, style: props.style }, props.children);
29
+ };
30
+ // A column-flex so its child (a Form.Field, a View, …) fills the cell width.
31
+ // `min-width: 0` is the flex-item counterpart to the track's `minmax(0, 1fr)`:
32
+ // together they stop a wide child from forcing the cell to overflow.
33
+ var GridItem = styled(GridItemBase)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n grid-column: span ", ";\n display: flex;\n flex-direction: column;\n min-width: 0;\n"], ["\n grid-column: span ", ";\n display: flex;\n flex-direction: column;\n min-width: 0;\n"])), function (p) { var _a; return (_a = p.weight) !== null && _a !== void 0 ? _a : 6; });
34
+ GridItem.displayName = "Grid.Item";
35
+ /**
36
+ * A `Grid` lays out its `Grid.Item` children on a fixed **6-column** grid — the
37
+ * layout used across our forms and detail views, where a `Grid.Item`'s `weight`
38
+ * (1–6) says how many columns it spans. Two `weight={3}` items sit side by side;
39
+ * a `weight={6}` item is a full-width row.
40
+ *
41
+ * ### Props
42
+ * - `gap`: column gap in pixels (default 8).
43
+ * - `rowGap`: row gap in pixels (default 0).
44
+ * - `fill`: grow to fill a flex container.
45
+ *
46
+ * @example
47
+ * ```tsx
48
+ * <Grid>
49
+ * <Grid.Item weight={3}><View label="First name">Ada</View></Grid.Item>
50
+ * <Grid.Item weight={3}><View label="Last name">Lovelace</View></Grid.Item>
51
+ * <Grid.Item><View label="Address">…</View></Grid.Item>
52
+ * </Grid>
53
+ * ```
54
+ */
55
+ var Grid = function (props) { return React.createElement(GridStyled, __assign({}, props)); };
56
+ Grid.displayName = "Grid";
57
+ Grid.Item = GridItem;
58
+ export { Grid };
59
+ var templateObject_1, templateObject_2, templateObject_3;
@@ -0,0 +1 @@
1
+ export { Grid } from './Grid';
@@ -0,0 +1 @@
1
+ export { Grid } from './Grid';
@@ -4,6 +4,27 @@ interface IListViewProps {
4
4
  * Array of data to show in the table
5
5
  */
6
6
  data: any[] | null | undefined;
7
+ /**
8
+ * Controlled sort key. When `onSortClick` is provided the `ListView` is in
9
+ * **controlled-sort** mode: it does NOT sort `data` itself (the data is assumed
10
+ * already sorted — e.g. server-side/paged), and this key + `reverse` only drive
11
+ * the header's active-sort indicator. Ignored in the default (in-memory sort)
12
+ * mode, where sorting is internal state.
13
+ */
14
+ sort?: string;
15
+ /**
16
+ * Controlled sort direction, paired with `sort` (see it).
17
+ * @default false
18
+ */
19
+ reverse?: boolean;
20
+ /**
21
+ * Fired when a sortable column header is clicked. **Providing this switches the
22
+ * `ListView` to controlled-sort mode** (see `sort`): the `ListView` stops sorting
23
+ * `data` in memory and delegates the decision to you — typically you re-query a
24
+ * server for the newly-sorted page and feed back `sort`/`reverse` + sorted `data`.
25
+ * Without it, header clicks sort `data` in memory (the default).
26
+ */
27
+ onSortClick?: (column: IColumnProps) => void;
7
28
  /**
8
29
  * If set, show no header.
9
30
  * @default false
@@ -61,26 +61,38 @@ var getColumns = function (children) {
61
61
  return getChildrenOfTypeDeep(children, ListView.Column).map(function (c) { return c.props; });
62
62
  };
63
63
  var ListViewBase = function (props) {
64
- var _a, _b, _c;
64
+ var _a, _b, _c, _d, _e;
65
65
  var children = props.children, otherProps = __rest(props, ["children"]);
66
- var _d = React.useState(false), columnsMode = _d[0], setColumnsMode = _d[1];
66
+ var _f = React.useState(false), columnsMode = _f[0], setColumnsMode = _f[1];
67
67
  var originalColumns = getColumns(props.children);
68
- var _e = React.useState(originalColumns), columns = _e[0], setColumns = _e[1];
68
+ var _g = React.useState(originalColumns), columns = _g[0], setColumns = _g[1];
69
69
  // Find default sort column:
70
70
  var sortColumn = (_a = columns.find(function (c) { return c.defaultSort; })) !== null && _a !== void 0 ? _a : columns[0];
71
- var _f = React.useState((_b = sortColumn === null || sortColumn === void 0 ? void 0 : sortColumn.sort) !== null && _b !== void 0 ? _b : ''), sort = _f[0], setSort = _f[1];
72
- var _g = React.useState((_c = sortColumn === null || sortColumn === void 0 ? void 0 : sortColumn.reverse) !== null && _c !== void 0 ? _c : false), reverse = _g[0], setReverse = _g[1];
73
- var _h = React.useState(null), data = _h[0], setData = _h[1];
71
+ // Controlled-sort mode: when the consumer supplies onSortClick, it owns the sort
72
+ // (typically sorting server-side and feeding back pre-sorted data + sort/reverse).
73
+ var controlled = !!props.onSortClick;
74
+ // Internal sort state, used only in the default (uncontrolled) in-memory mode.
75
+ var _h = React.useState((_b = sortColumn === null || sortColumn === void 0 ? void 0 : sortColumn.sort) !== null && _b !== void 0 ? _b : ''), sortState = _h[0], setSortState = _h[1];
76
+ var _j = React.useState((_c = sortColumn === null || sortColumn === void 0 ? void 0 : sortColumn.reverse) !== null && _c !== void 0 ? _c : false), reverseState = _j[0], setReverseState = _j[1];
77
+ var _k = React.useState(null), data = _k[0], setData = _k[1];
78
+ // The active sort key/direction: from props when controlled, else internal state.
79
+ var sort = controlled ? ((_d = props.sort) !== null && _d !== void 0 ? _d : '') : sortState;
80
+ var reverse = controlled ? ((_e = props.reverse) !== null && _e !== void 0 ? _e : false) : reverseState;
74
81
  React.useEffect(function () {
75
82
  // Don't sort if no data is available yet:
76
83
  if (!Array.isArray(props.data))
77
84
  return;
85
+ // Controlled: the data is assumed already sorted (e.g. server-side) — show as-is.
86
+ if (controlled) {
87
+ setData(props.data);
88
+ return;
89
+ }
78
90
  // Find the column corresponding to the current sort key. If none matches
79
91
  // (e.g. no sortable column and no defaultSort), show the data unsorted
80
92
  // rather than rendering nothing.
81
- var sortColumn = columns.find(function (c) { return c.sort === sort; });
82
- setData(sortColumn ? sortItems(props.data, sort, reverse, sortColumn.sortValue) : props.data);
83
- }, [props.data, sort, reverse, columns]);
93
+ var sc = columns.find(function (c) { return c.sort === sort; });
94
+ setData(sc ? sortItems(props.data, sort, reverse, sc.sortValue) : props.data);
95
+ }, [props.data, sort, reverse, columns, controlled]);
84
96
  // If children change, then update columns state.
85
97
  React.useEffect(function () {
86
98
  setColumns(getColumns(props.children));
@@ -88,12 +100,17 @@ var ListViewBase = function (props) {
88
100
  // Change sort:
89
101
  var handleSort = function (column) {
90
102
  var _a, _b;
91
- if (sort === column.sort) {
92
- setReverse(!reverse);
103
+ // Controlled: delegate to the consumer (who re-queries and re-feeds data).
104
+ if (props.onSortClick) {
105
+ props.onSortClick(column);
106
+ return;
107
+ }
108
+ if (sortState === column.sort) {
109
+ setReverseState(!reverseState);
93
110
  }
94
111
  else {
95
- setSort((_a = column.sort) !== null && _a !== void 0 ? _a : '');
96
- setReverse((_b = column.reverse) !== null && _b !== void 0 ? _b : false);
112
+ setSortState((_a = column.sort) !== null && _a !== void 0 ? _a : '');
113
+ setReverseState((_b = column.reverse) !== null && _b !== void 0 ? _b : false);
97
114
  }
98
115
  };
99
116
  var handleCheck = function (data, item) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longline/aqua-ui",
3
- "version": "1.0.344",
3
+ "version": "1.0.347",
4
4
  "description": "AquaUI",
5
5
  "author": "Alexander van Oostenrijk / Longline Environment",
6
6
  "license": "Commercial",