@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260722072620 → 0.8.1-dev.20260722073037

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,110 @@
1
+ "use client";
2
+
3
+ import {
4
+ buttonClasses
5
+ } from "./chunk-IMNQO57B.mjs";
6
+
7
+ // src/components/controls/edit/InputControlType.tsx
8
+ var Constants = {
9
+ pagesize: 10
10
+ };
11
+ var InputControlType = {
12
+ lineTextInput: "text",
13
+ multilineTextInput: "multilinetext",
14
+ emailInput: "email",
15
+ moneyInput: "money",
16
+ select: "select",
17
+ percentageInput: "percentage",
18
+ asset: "asset",
19
+ phoneInput: "phone",
20
+ numberInput: "number",
21
+ checkboxInput: "boolean",
22
+ otpInput: "otp",
23
+ datetimeInput: "datetime",
24
+ timeInput: "time",
25
+ colorInput: "colorInput",
26
+ selectWithSearchInput: "selectWithSearchInput",
27
+ selectWithSearchPanel: "selectWithSearchPanel",
28
+ booleanSelect: "booleanSelect",
29
+ switchInput: "switchInput"
30
+ };
31
+ var InputControlType_default = InputControlType;
32
+
33
+ // src/components/dataForm/Hyperlink.tsx
34
+ import Link from "next/link";
35
+ import { Fragment, jsx } from "react/jsx-runtime";
36
+ function Hyperlink(props) {
37
+ let linkClass = props.linkType ? buttonClasses.get(props.linkType) : buttonClasses.get("Link" /* Link */);
38
+ const target = props?.href?.startsWith("http") ? "_blank" : "_self";
39
+ const additionalProps = {};
40
+ if (target == "_blank") {
41
+ additionalProps.rel = "noopener noreferrer";
42
+ }
43
+ return /* @__PURE__ */ jsx(Fragment, { children: props.href ? /* @__PURE__ */ jsx(
44
+ Link,
45
+ {
46
+ href: props.href,
47
+ prefetch: false,
48
+ className: [linkClass, props.className].filter(Boolean).join(" "),
49
+ ...additionalProps,
50
+ target,
51
+ children: props.children
52
+ }
53
+ ) : props.isHeading ? /* @__PURE__ */ jsx("h5", { className: props.className + "inline-block", children: props.children }) : /* @__PURE__ */ jsx("span", { className: props.className, children: props.children }) });
54
+ }
55
+
56
+ // src/svg/chevron-updown.tsx
57
+ import { jsx as jsx2 } from "react/jsx-runtime";
58
+ var ChevronUpDown = (props) => {
59
+ return /* @__PURE__ */ jsx2("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", className: props.className, children: /* @__PURE__ */ jsx2("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M8.25 15L12 18.75 15.75 15m-7.5-6L12 5.25 15.75 9" }) });
60
+ };
61
+ var chevron_updown_default = ChevronUpDown;
62
+
63
+ // src/svg/chevron-down.tsx
64
+ import { jsx as jsx3 } from "react/jsx-runtime";
65
+ var ChevronDown = (props) => {
66
+ return /* @__PURE__ */ jsx3("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", className: props.className, children: /* @__PURE__ */ jsx3("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M19.5 8.25l-7.5 7.5-7.5-7.5" }) });
67
+ };
68
+ var chevron_down_default = ChevronDown;
69
+
70
+ // src/svg/chevron-up.tsx
71
+ import { jsx as jsx4 } from "react/jsx-runtime";
72
+ var ChevronUp = (props) => {
73
+ return /* @__PURE__ */ jsx4("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", className: props.className, children: /* @__PURE__ */ jsx4("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M4.5 15.75l7.5-7.5 7.5 7.5" }) });
74
+ };
75
+ var chevron_up_default = ChevronUp;
76
+
77
+ // src/svg/plus.tsx
78
+ import { jsx as jsx5 } from "react/jsx-runtime";
79
+ var Plus = (props) => {
80
+ return /* @__PURE__ */ jsx5("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", className: props.className, children: /* @__PURE__ */ jsx5("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 4.5v15m7.5-7.5h-15" }) });
81
+ };
82
+ var plus_default = Plus;
83
+
84
+ // src/svg/Icons.tsx
85
+ var Icons = {
86
+ chevronUpDown: chevron_updown_default,
87
+ chevronDown: chevron_down_default,
88
+ chevronUp: chevron_up_default,
89
+ plus: plus_default
90
+ };
91
+ var Icons_default = Icons;
92
+
93
+ // src/svg/Icon.tsx
94
+ import { jsx as jsx6 } from "react/jsx-runtime";
95
+ var Icon = ({ name, className, ...props }) => {
96
+ const IconComponent = Icons_default[name];
97
+ if (!IconComponent) {
98
+ console.error(`Icon "${name}" not found.`);
99
+ return null;
100
+ }
101
+ return /* @__PURE__ */ jsx6(IconComponent, { ...props, className });
102
+ };
103
+ var Icon_default = Icon;
104
+
105
+ export {
106
+ Constants,
107
+ InputControlType_default,
108
+ Hyperlink,
109
+ Icon_default
110
+ };
@@ -129,7 +129,7 @@ var Confirm_default = Confirm;
129
129
  }
130
130
 
131
131
  // src/components/Button.tsx
132
- import { Fragment as Fragment2, jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
132
+ import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
133
133
  var Button = (props) => {
134
134
  const [inProgress, setInProgress] = useState2(false);
135
135
  const [isActionPerformed, setIsActionPerformed] = useState2(false);
@@ -139,9 +139,7 @@ var Button = (props) => {
139
139
  event.preventDefault();
140
140
  event.stopPropagation();
141
141
  if (props.confirm) {
142
- const confirmed = await showConfirmation(
143
- "Are you sure you want to delete this item?"
144
- );
142
+ const confirmed = await showConfirmation("Are you sure you want to delete this item?");
145
143
  setShowModal(null);
146
144
  if (!confirmed) {
147
145
  return;
@@ -156,9 +154,7 @@ var Button = (props) => {
156
154
  isValid = await props.onValidate();
157
155
  if (!isValid) {
158
156
  setInProgress(false);
159
- ToastService_default.showError(
160
- "There are errors in the form. Please fix them before proceeding."
161
- );
157
+ ToastService_default.showError("There are errors in the form. Please fix them before proceeding.");
162
158
  return;
163
159
  }
164
160
  }
@@ -182,16 +178,7 @@ var Button = (props) => {
182
178
  return new Promise((resolve) => {
183
179
  const onConfirm = () => resolve(true);
184
180
  const onCancel = () => resolve(false);
185
- setShowModal(
186
- /* @__PURE__ */ jsx3(
187
- Confirm_default,
188
- {
189
- message: props.confirmationMessage,
190
- onConfirm,
191
- onCancel
192
- }
193
- )
194
- );
181
+ setShowModal(/* @__PURE__ */ jsx3(Confirm_default, { message: props.confirmationMessage, onConfirm, onCancel }));
195
182
  });
196
183
  };
197
184
  let buttonClass = props.ButtonType ? buttonClasses.get(props.ButtonType) : buttonClasses.get("Primary" /* Solid */);
@@ -205,39 +192,13 @@ var Button = (props) => {
205
192
  onClick: execute,
206
193
  disabled: props.disabled,
207
194
  title: isDisabled ? "The button is disabled to prevent any action" : "",
208
- className: `${buttonClass} relative inline-flex items-center justify-center gap-2 ${props.className ?? ""}`,
195
+ className: buttonClass + " relative " + props.className,
209
196
  children: [
210
197
  isActionPerformed && props.oneTimeAction && responseMessage ? responseMessage : props.children,
211
- inProgress && /* @__PURE__ */ jsx3(Fragment2, { children: props.hideProgressIndicator ? /* @__PURE__ */ jsx3("div", { className: "absolute bottom-0 left-0 h-0.5 bg-gray-400 rounded animate-progress" }) : /* @__PURE__ */ jsxs2(
212
- "svg",
213
- {
214
- className: `animate-spin h-5 w-5 flex-shrink-0 ${progressClass}`,
215
- xmlns: "http://www.w3.org/2000/svg",
216
- fill: "none",
217
- viewBox: "0 0 24 24",
218
- children: [
219
- /* @__PURE__ */ jsx3(
220
- "circle",
221
- {
222
- className: "opacity-25",
223
- cx: "12",
224
- cy: "12",
225
- r: "10",
226
- stroke: "currentColor",
227
- strokeWidth: "4"
228
- }
229
- ),
230
- /* @__PURE__ */ jsx3(
231
- "path",
232
- {
233
- className: "opacity-75",
234
- fill: "currentColor",
235
- d: "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
236
- }
237
- )
238
- ]
239
- }
240
- ) })
198
+ inProgress && /* @__PURE__ */ jsx3(React3.Fragment, { children: props.hideProgressIndicator === true ? /* @__PURE__ */ jsx3("div", { className: "absolute bottom-0 left-0 h-0.5 bg-gray-400 rounded animate-progress" }) : /* @__PURE__ */ jsxs2("svg", { className: "animate-spin ml-2 mr-3 h-5 w-5 " + progressClass, xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", children: [
199
+ /* @__PURE__ */ jsx3("circle", { className: "opacity-25", cx: "12", cy: "12", r: "10", stroke: "currentColor", strokeWidth: "4" }),
200
+ /* @__PURE__ */ jsx3("path", { className: "opacity-75", fill: "currentColor", d: "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z" })
201
+ ] }) })
241
202
  ]
242
203
  }
243
204
  ),
@@ -0,0 +1,201 @@
1
+ "use client";
2
+
3
+ import {
4
+ Constants
5
+ } from "./chunk-FI2KJBK2.mjs";
6
+
7
+ // src/clients/OdataBuilder.tsx
8
+ var OdataBuilder = class {
9
+ constructor(url) {
10
+ this.baseUrl = url;
11
+ this.top = Constants.pagesize.toString();
12
+ this.skip = "0";
13
+ this.keyword = "";
14
+ this.filterBy = "";
15
+ this.orderBy = "";
16
+ }
17
+ // parseSearchParams(ReadonlyUrlSearchParams): DataQuery {
18
+ // this.top = top;
19
+ // return this;
20
+ // }
21
+ setQuery(odata) {
22
+ if (odata) {
23
+ for (const key in odata) {
24
+ if (odata[key] != null && odata[key] != "") {
25
+ if (key == "$skip") {
26
+ this.setSkip(odata[key]);
27
+ }
28
+ if (key == "$filter") {
29
+ this.setFilter(odata[key]);
30
+ }
31
+ if (key == "$top") {
32
+ this.setTop(odata[key]);
33
+ }
34
+ if (key == "$orderby") {
35
+ this.setOrderBy(odata[key]);
36
+ }
37
+ if (key == "searchTerm") {
38
+ this.searchTerm = odata[key];
39
+ }
40
+ if (key == "searchCols") {
41
+ this.searchCols = odata[key];
42
+ }
43
+ }
44
+ }
45
+ }
46
+ return this;
47
+ }
48
+ // parseKeyValuePairs(inputString: string): { [key: string]: string } {
49
+ // return inputString.split('$')
50
+ // .map((pair) => pair.split('='))
51
+ // .reduce((result: { [key: string]: string }, [key, value]) => {
52
+ // if (key && value) {
53
+ // result[key.trim()] = value.trim();
54
+ // }
55
+ // return result;
56
+ // }, {});
57
+ // }
58
+ static getOdataQueryString(obj, defaultOrder) {
59
+ let queryString = "";
60
+ let skip = (obj && obj["$skip"]) ?? "0";
61
+ let top = (obj && obj["$top"]) ?? Constants.pagesize.toString();
62
+ queryString = `$skip=${skip}&$top=${top}&$count=true`;
63
+ if (obj?.["searchTerm"] && obj["searchTerm"].trim() !== "") {
64
+ queryString += `&searchTerm=${encodeURIComponent(obj["searchTerm"])}`;
65
+ }
66
+ if (obj?.["searchCols"] && obj["searchCols"].trim() !== "") {
67
+ queryString += `&searchCols=${encodeURIComponent(obj["searchCols"])}`;
68
+ }
69
+ if (obj) {
70
+ if (obj["$filter"] && obj["$filter"] !== null && obj["$filter"] !== "") {
71
+ queryString = queryString + `&$filter=${encodeURIComponent(obj["$filter"])}`;
72
+ }
73
+ if (obj["$orderby"] && obj["$orderby"] !== null && obj["$orderby"] !== "") {
74
+ queryString = queryString + `&$orderby=${encodeURIComponent(obj["$orderby"])}`;
75
+ } else if (defaultOrder) {
76
+ queryString = queryString + `&$orderby=${encodeURIComponent(defaultOrder)}`;
77
+ }
78
+ } else {
79
+ if (defaultOrder) {
80
+ queryString = queryString + `&$orderby=${encodeURIComponent(defaultOrder)}`;
81
+ }
82
+ }
83
+ return queryString;
84
+ }
85
+ setTop(top) {
86
+ this.top = top;
87
+ return this;
88
+ }
89
+ setSkip(skip) {
90
+ this.skip = skip;
91
+ return this;
92
+ }
93
+ setKeyword(keyword) {
94
+ this.keyword = keyword;
95
+ return this;
96
+ }
97
+ setFilter(filterBy) {
98
+ this.filterBy = filterBy;
99
+ return this;
100
+ }
101
+ setOrderBy(orderBy) {
102
+ this.orderBy = orderBy;
103
+ return this;
104
+ }
105
+ getPageNumber(pageSize) {
106
+ let pageNumber = 1;
107
+ if (this.skip && this.top) {
108
+ const skip = parseInt(this.skip);
109
+ const top = parseInt(this.top);
110
+ if (!isNaN(skip) && !isNaN(top)) {
111
+ pageNumber = skip / pageSize + 1;
112
+ }
113
+ }
114
+ return pageNumber;
115
+ }
116
+ getUrl() {
117
+ let url = `${this.baseUrl}?$skip=${this.skip}&$top=${this.top}&$count=true`;
118
+ if (this.filterBy !== null && this.filterBy !== "") {
119
+ url = url + `&$filter=${encodeURIComponent(this.filterBy)}`;
120
+ }
121
+ if (this.orderBy !== null && this.orderBy !== "") {
122
+ url = url + `&$orderby=${encodeURIComponent(this.orderBy)}`;
123
+ }
124
+ if (this.searchTerm) {
125
+ url += `&searchTerm=${encodeURIComponent(this.searchTerm)}`;
126
+ }
127
+ if (this.searchCols) {
128
+ url += `&searchCols=${encodeURIComponent(this.searchCols)}`;
129
+ }
130
+ console.log(url);
131
+ return url;
132
+ }
133
+ getNewOrderByUrl(orderBy) {
134
+ let url = `${this.baseUrl}?$skip=${0}&$top=${this.top}&$count=true`;
135
+ if (this.filterBy !== null && this.filterBy !== "") {
136
+ url = url + `&$filter=${encodeURIComponent(this.filterBy)}`;
137
+ }
138
+ if (this.searchTerm) {
139
+ url += `&searchTerm=${encodeURIComponent(this.searchTerm)}`;
140
+ }
141
+ if (this.searchCols) {
142
+ url += `&searchCols=${encodeURIComponent(this.searchCols)}`;
143
+ }
144
+ url = url + `&$orderby=${encodeURIComponent(orderBy)}`;
145
+ return url;
146
+ }
147
+ getNewFilterUrl(filterBy) {
148
+ let url = `${this.baseUrl}?$skip=${0}&$top=${this.top}&$count=true`;
149
+ if (filterBy !== null && filterBy !== "") {
150
+ url = url + `&$filter=${encodeURIComponent(filterBy)}`;
151
+ }
152
+ if (this.orderBy !== null && this.orderBy !== "") {
153
+ url = url + `&$orderby=${encodeURIComponent(this.orderBy)}`;
154
+ }
155
+ if (this.searchTerm) {
156
+ url += `&searchTerm=${encodeURIComponent(this.searchTerm)}`;
157
+ }
158
+ if (this.searchCols) {
159
+ url += `&searchCols=${encodeURIComponent(this.searchCols)}`;
160
+ }
161
+ return url;
162
+ }
163
+ getNewPageUrl(page) {
164
+ let skip = page * Constants.pagesize - Constants.pagesize;
165
+ let url = `${this.baseUrl}?$skip=${skip}&$top=${this.top}&$count=true`;
166
+ if (this.filterBy !== null && this.filterBy !== "") {
167
+ url = url + `&$filter=${encodeURIComponent(this.filterBy)}`;
168
+ }
169
+ if (this.orderBy !== null && this.orderBy !== "") {
170
+ url = url + `&$orderby=${encodeURIComponent(this.orderBy)}`;
171
+ }
172
+ if (this.searchTerm) {
173
+ url += `&searchTerm=${encodeURIComponent(this.searchTerm)}`;
174
+ }
175
+ if (this.searchCols) {
176
+ url += `&searchCols=${encodeURIComponent(this.searchCols)}`;
177
+ }
178
+ return url;
179
+ }
180
+ getNewPageSizeUrl(pageSize) {
181
+ const currentPage = this.getPageNumber(
182
+ parseInt(this.top || Constants.pagesize.toString())
183
+ );
184
+ const skip = (currentPage - 1) * pageSize;
185
+ let url = `${this.baseUrl}?$skip=${skip}&$top=${pageSize}&$count=true`;
186
+ if (this.filterBy !== null && this.filterBy !== "") {
187
+ url = url + `&$filter=${encodeURIComponent(this.filterBy)}`;
188
+ }
189
+ if (this.orderBy !== null && this.orderBy !== "") {
190
+ url = url + `&$orderby=${encodeURIComponent(this.orderBy)}`;
191
+ }
192
+ return url;
193
+ }
194
+ getOrderBy() {
195
+ return this.orderBy;
196
+ }
197
+ };
198
+
199
+ export {
200
+ OdataBuilder
201
+ };
@@ -0,0 +1,229 @@
1
+ import {
2
+ buttonClasses
3
+ } from "./chunk-56HSDML5.mjs";
4
+
5
+ // src/components/dataForm/Hyperlink.tsx
6
+ import Link from "next/link";
7
+ import { Fragment, jsx } from "react/jsx-runtime";
8
+ function Hyperlink(props) {
9
+ let linkClass = props.linkType ? buttonClasses.get(props.linkType) : buttonClasses.get("Link" /* Link */);
10
+ const target = props?.href?.startsWith("http") ? "_blank" : "_self";
11
+ const additionalProps = {};
12
+ if (target == "_blank") {
13
+ additionalProps.rel = "noopener noreferrer";
14
+ }
15
+ return /* @__PURE__ */ jsx(Fragment, { children: props.href ? /* @__PURE__ */ jsx(
16
+ Link,
17
+ {
18
+ href: props.href,
19
+ prefetch: false,
20
+ className: [linkClass, props.className].filter(Boolean).join(" "),
21
+ ...additionalProps,
22
+ target,
23
+ children: props.children
24
+ }
25
+ ) : props.isHeading ? /* @__PURE__ */ jsx("h5", { className: props.className + "inline-block", children: props.children }) : /* @__PURE__ */ jsx("span", { className: props.className, children: props.children }) });
26
+ }
27
+
28
+ // src/components/controls/edit/InputControlType.tsx
29
+ var Constants = {
30
+ pagesize: 10
31
+ };
32
+
33
+ // src/clients/OdataBuilder.tsx
34
+ var OdataBuilder = class {
35
+ constructor(url) {
36
+ this.baseUrl = url;
37
+ this.top = Constants.pagesize.toString();
38
+ this.skip = "0";
39
+ this.keyword = "";
40
+ this.filterBy = "";
41
+ this.orderBy = "";
42
+ }
43
+ // parseSearchParams(ReadonlyUrlSearchParams): DataQuery {
44
+ // this.top = top;
45
+ // return this;
46
+ // }
47
+ setQuery(odata) {
48
+ if (odata) {
49
+ for (const key in odata) {
50
+ if (odata[key] != null && odata[key] != "") {
51
+ if (key == "$skip") {
52
+ this.setSkip(odata[key]);
53
+ }
54
+ if (key == "$filter") {
55
+ this.setFilter(odata[key]);
56
+ }
57
+ if (key == "$top") {
58
+ this.setTop(odata[key]);
59
+ }
60
+ if (key == "$orderby") {
61
+ this.setOrderBy(odata[key]);
62
+ }
63
+ if (key == "searchTerm") {
64
+ this.searchTerm = odata[key];
65
+ }
66
+ if (key == "searchCols") {
67
+ this.searchCols = odata[key];
68
+ }
69
+ }
70
+ }
71
+ }
72
+ return this;
73
+ }
74
+ // parseKeyValuePairs(inputString: string): { [key: string]: string } {
75
+ // return inputString.split('$')
76
+ // .map((pair) => pair.split('='))
77
+ // .reduce((result: { [key: string]: string }, [key, value]) => {
78
+ // if (key && value) {
79
+ // result[key.trim()] = value.trim();
80
+ // }
81
+ // return result;
82
+ // }, {});
83
+ // }
84
+ static getOdataQueryString(obj, defaultOrder) {
85
+ let queryString = "";
86
+ let skip = (obj && obj["$skip"]) ?? "0";
87
+ let top = (obj && obj["$top"]) ?? Constants.pagesize.toString();
88
+ queryString = `$skip=${skip}&$top=${top}&$count=true`;
89
+ if (obj?.["searchTerm"] && obj["searchTerm"].trim() !== "") {
90
+ queryString += `&searchTerm=${encodeURIComponent(obj["searchTerm"])}`;
91
+ }
92
+ if (obj?.["searchCols"] && obj["searchCols"].trim() !== "") {
93
+ queryString += `&searchCols=${encodeURIComponent(obj["searchCols"])}`;
94
+ }
95
+ if (obj) {
96
+ if (obj["$filter"] && obj["$filter"] !== null && obj["$filter"] !== "") {
97
+ queryString = queryString + `&$filter=${encodeURIComponent(obj["$filter"])}`;
98
+ }
99
+ if (obj["$orderby"] && obj["$orderby"] !== null && obj["$orderby"] !== "") {
100
+ queryString = queryString + `&$orderby=${encodeURIComponent(obj["$orderby"])}`;
101
+ } else if (defaultOrder) {
102
+ queryString = queryString + `&$orderby=${encodeURIComponent(defaultOrder)}`;
103
+ }
104
+ } else {
105
+ if (defaultOrder) {
106
+ queryString = queryString + `&$orderby=${encodeURIComponent(defaultOrder)}`;
107
+ }
108
+ }
109
+ return queryString;
110
+ }
111
+ setTop(top) {
112
+ this.top = top;
113
+ return this;
114
+ }
115
+ setSkip(skip) {
116
+ this.skip = skip;
117
+ return this;
118
+ }
119
+ setKeyword(keyword) {
120
+ this.keyword = keyword;
121
+ return this;
122
+ }
123
+ setFilter(filterBy) {
124
+ this.filterBy = filterBy;
125
+ return this;
126
+ }
127
+ setOrderBy(orderBy) {
128
+ this.orderBy = orderBy;
129
+ return this;
130
+ }
131
+ getPageNumber(pageSize) {
132
+ let pageNumber = 1;
133
+ if (this.skip && this.top) {
134
+ const skip = parseInt(this.skip);
135
+ const top = parseInt(this.top);
136
+ if (!isNaN(skip) && !isNaN(top)) {
137
+ pageNumber = skip / pageSize + 1;
138
+ }
139
+ }
140
+ return pageNumber;
141
+ }
142
+ getUrl() {
143
+ let url = `${this.baseUrl}?$skip=${this.skip}&$top=${this.top}&$count=true`;
144
+ if (this.filterBy !== null && this.filterBy !== "") {
145
+ url = url + `&$filter=${encodeURIComponent(this.filterBy)}`;
146
+ }
147
+ if (this.orderBy !== null && this.orderBy !== "") {
148
+ url = url + `&$orderby=${encodeURIComponent(this.orderBy)}`;
149
+ }
150
+ if (this.searchTerm) {
151
+ url += `&searchTerm=${encodeURIComponent(this.searchTerm)}`;
152
+ }
153
+ if (this.searchCols) {
154
+ url += `&searchCols=${encodeURIComponent(this.searchCols)}`;
155
+ }
156
+ console.log(url);
157
+ return url;
158
+ }
159
+ getNewOrderByUrl(orderBy) {
160
+ let url = `${this.baseUrl}?$skip=${0}&$top=${this.top}&$count=true`;
161
+ if (this.filterBy !== null && this.filterBy !== "") {
162
+ url = url + `&$filter=${encodeURIComponent(this.filterBy)}`;
163
+ }
164
+ if (this.searchTerm) {
165
+ url += `&searchTerm=${encodeURIComponent(this.searchTerm)}`;
166
+ }
167
+ if (this.searchCols) {
168
+ url += `&searchCols=${encodeURIComponent(this.searchCols)}`;
169
+ }
170
+ url = url + `&$orderby=${encodeURIComponent(orderBy)}`;
171
+ return url;
172
+ }
173
+ getNewFilterUrl(filterBy) {
174
+ let url = `${this.baseUrl}?$skip=${0}&$top=${this.top}&$count=true`;
175
+ if (filterBy !== null && filterBy !== "") {
176
+ url = url + `&$filter=${encodeURIComponent(filterBy)}`;
177
+ }
178
+ if (this.orderBy !== null && this.orderBy !== "") {
179
+ url = url + `&$orderby=${encodeURIComponent(this.orderBy)}`;
180
+ }
181
+ if (this.searchTerm) {
182
+ url += `&searchTerm=${encodeURIComponent(this.searchTerm)}`;
183
+ }
184
+ if (this.searchCols) {
185
+ url += `&searchCols=${encodeURIComponent(this.searchCols)}`;
186
+ }
187
+ return url;
188
+ }
189
+ getNewPageUrl(page) {
190
+ let skip = page * Constants.pagesize - Constants.pagesize;
191
+ let url = `${this.baseUrl}?$skip=${skip}&$top=${this.top}&$count=true`;
192
+ if (this.filterBy !== null && this.filterBy !== "") {
193
+ url = url + `&$filter=${encodeURIComponent(this.filterBy)}`;
194
+ }
195
+ if (this.orderBy !== null && this.orderBy !== "") {
196
+ url = url + `&$orderby=${encodeURIComponent(this.orderBy)}`;
197
+ }
198
+ if (this.searchTerm) {
199
+ url += `&searchTerm=${encodeURIComponent(this.searchTerm)}`;
200
+ }
201
+ if (this.searchCols) {
202
+ url += `&searchCols=${encodeURIComponent(this.searchCols)}`;
203
+ }
204
+ return url;
205
+ }
206
+ getNewPageSizeUrl(pageSize) {
207
+ const currentPage = this.getPageNumber(
208
+ parseInt(this.top || Constants.pagesize.toString())
209
+ );
210
+ const skip = (currentPage - 1) * pageSize;
211
+ let url = `${this.baseUrl}?$skip=${skip}&$top=${pageSize}&$count=true`;
212
+ if (this.filterBy !== null && this.filterBy !== "") {
213
+ url = url + `&$filter=${encodeURIComponent(this.filterBy)}`;
214
+ }
215
+ if (this.orderBy !== null && this.orderBy !== "") {
216
+ url = url + `&$orderby=${encodeURIComponent(this.orderBy)}`;
217
+ }
218
+ return url;
219
+ }
220
+ getOrderBy() {
221
+ return this.orderBy;
222
+ }
223
+ };
224
+
225
+ export {
226
+ Hyperlink,
227
+ Constants,
228
+ OdataBuilder
229
+ };