awing-library 2.1.154-beta → 2.1.155-beta

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.
@@ -93,7 +93,7 @@ function ControlPanel(_a) {
93
93
  var handleElementInput = function (initialFilters) {
94
94
  var updatedElementInputs = [];
95
95
  initialFilters.map(function (item, idx) {
96
- var _a, _b, _c, _d, _e, _f;
96
+ var _a, _b, _c, _d, _e, _f, _g;
97
97
  switch (item === null || item === void 0 ? void 0 : item.type) {
98
98
  case Enums_1.TYPE_FILTERS.VIEW_BY: {
99
99
  var element = __assign({ component: ((0, jsx_runtime_1.jsx)(material_1.TextField, { select: true, fullWidth: true, label: t('Common.ViewBy'), size: "small", onChange: function (e) {
@@ -123,8 +123,20 @@ function ControlPanel(_a) {
123
123
  updatedElementInputs.push(element);
124
124
  break;
125
125
  }
126
+ case Enums_1.TYPE_FILTERS.SEARCH_BY_PLACE: {
127
+ var element = __assign({ component: ((0, jsx_runtime_1.jsx)(material_1.TextField, { select: true, fullWidth: true, label: t('Common.TitleTypeView'), size: "small", onChange: function (e) {
128
+ return handleChangeQueryInput &&
129
+ handleChangeQueryInput(item === null || item === void 0 ? void 0 : item.name, e.target.value);
130
+ }, SelectProps: {
131
+ native: true,
132
+ }, variant: "outlined", style: { minWidth: 150 }, disabled: false, children: (_a = item === null || item === void 0 ? void 0 : item.initialData) === null || _a === void 0 ? void 0 : _a.map(function (data, index) {
133
+ return ((0, jsx_runtime_1.jsx)("option", { value: data.value, children: data.label }, item.value));
134
+ }) }, idx)), isEnhanced: (item === null || item === void 0 ? void 0 : item.isEnhanced) ? item === null || item === void 0 ? void 0 : item.isEnhanced : false, name: 'SearchByPlace' }, item);
135
+ updatedElementInputs.push(element);
136
+ break;
137
+ }
126
138
  case Enums_1.TYPE_FILTERS.DATE_RANGE_PICKER: {
127
- var element = __assign({ component: ((0, jsx_runtime_1.jsx)(AWING_1.DateRangePicker, __assign({ isShowCalendarInfo: (_a = item === null || item === void 0 ? void 0 : item.isShowCalendarInfo) !== null && _a !== void 0 ? _a : true, isFutureDate: (_b = item === null || item === void 0 ? void 0 : item.isFutureDate) !== null && _b !== void 0 ? _b : false, label: "".concat(t('Common.StartDate'), " - ").concat(t('Common.EndDate')), initialStartDate: (_c = item === null || item === void 0 ? void 0 : item.defaultValue) === null || _c === void 0 ? void 0 : _c.startDate, initialEndDate: (_d = item === null || item === void 0 ? void 0 : item.defaultValue) === null || _d === void 0 ? void 0 : _d.endDate, variant: "outlined", textFieldProps: {
139
+ var element = __assign({ component: ((0, jsx_runtime_1.jsx)(AWING_1.DateRangePicker, __assign({ isShowCalendarInfo: (_b = item === null || item === void 0 ? void 0 : item.isShowCalendarInfo) !== null && _b !== void 0 ? _b : true, isFutureDate: (_c = item === null || item === void 0 ? void 0 : item.isFutureDate) !== null && _c !== void 0 ? _c : false, label: "".concat(t('Common.StartDate'), " - ").concat(t('Common.EndDate')), initialStartDate: (_d = item === null || item === void 0 ? void 0 : item.defaultValue) === null || _d === void 0 ? void 0 : _d.startDate, initialEndDate: (_e = item === null || item === void 0 ? void 0 : item.defaultValue) === null || _e === void 0 ? void 0 : _e.endDate, variant: "outlined", textFieldProps: {
128
140
  fullWidth: true,
129
141
  className: classes.outlinedInput,
130
142
  }, callback: handleChangeDateRange }, ((item === null || item === void 0 ? void 0 : item.isDayBlocked) && {
@@ -167,7 +179,7 @@ function ControlPanel(_a) {
167
179
  break;
168
180
  }
169
181
  case Enums_1.TYPE_FILTERS.NETWORK: {
170
- var element = __assign({ component: ((0, jsx_runtime_1.jsx)(material_1.FormControlLabel, { control: (0, jsx_runtime_1.jsx)(material_1.Checkbox, { color: "primary", defaultChecked: (_e = queryInput === null || queryInput === void 0 ? void 0 : queryInput.isCampaignNetwork) !== null && _e !== void 0 ? _e : true }), label: t('Statistic.Network.Title'), labelPlacement: "start", onChange: function (e) {
182
+ var element = __assign({ component: ((0, jsx_runtime_1.jsx)(material_1.FormControlLabel, { control: (0, jsx_runtime_1.jsx)(material_1.Checkbox, { color: "primary", defaultChecked: (_f = queryInput === null || queryInput === void 0 ? void 0 : queryInput.isCampaignNetwork) !== null && _f !== void 0 ? _f : true }), label: t('Statistic.Network.Title'), labelPlacement: "start", onChange: function (e) {
171
183
  handleChangeQueryInput(item === null || item === void 0 ? void 0 : item.name, e.target.checked);
172
184
  } }, idx)), isEnhanced: (item === null || item === void 0 ? void 0 : item.isEnhanced) ? item === null || item === void 0 ? void 0 : item.isEnhanced : false, name: 'isCampaignNetwork' }, item);
173
185
  updatedElementInputs.push(element);
@@ -181,7 +193,7 @@ function ControlPanel(_a) {
181
193
  break;
182
194
  }
183
195
  case Enums_1.TYPE_FILTERS.INCLUDE_RESERVED: {
184
- var element = __assign({ component: ((0, jsx_runtime_1.jsx)(material_1.FormControlLabel, { control: (0, jsx_runtime_1.jsx)(material_1.Checkbox, { color: "primary", defaultChecked: (_f = queryInput === null || queryInput === void 0 ? void 0 : queryInput.includeReserved) !== null && _f !== void 0 ? _f : true }), label: t('StatisticSchedulePlan.IncludeCampaignReserved'), labelPlacement: "start", onChange: function (e) {
196
+ var element = __assign({ component: ((0, jsx_runtime_1.jsx)(material_1.FormControlLabel, { control: (0, jsx_runtime_1.jsx)(material_1.Checkbox, { color: "primary", defaultChecked: (_g = queryInput === null || queryInput === void 0 ? void 0 : queryInput.includeReserved) !== null && _g !== void 0 ? _g : true }), label: t('StatisticSchedulePlan.IncludeCampaignReserved'), labelPlacement: "start", onChange: function (e) {
185
197
  handleChangeQueryInput(item === null || item === void 0 ? void 0 : item.name, e.target.checked);
186
198
  } }, idx)), isEnhanced: (item === null || item === void 0 ? void 0 : item.isEnhanced) ? item === null || item === void 0 ? void 0 : item.isEnhanced : false, name: 'includeReserved' }, item);
187
199
  updatedElementInputs.push(element);
@@ -9,7 +9,8 @@ export declare enum TYPE_FILTERS {
9
9
  NETWORK = "NetWork",
10
10
  CAMPAIGN_DEFAULT = "CampaignDefault",
11
11
  INCLUDE_RESERVED = "IncludeReserved",
12
- DATE_RANGE_PICKER = "DateRangePicker"
12
+ DATE_RANGE_PICKER = "DateRangePicker",
13
+ SEARCH_BY_PLACE = "SearchByPlace"
13
14
  }
14
15
  export declare enum TYPE_CHART {
15
16
  PIE = "Pie",
@@ -14,6 +14,7 @@ var TYPE_FILTERS;
14
14
  TYPE_FILTERS["CAMPAIGN_DEFAULT"] = "CampaignDefault";
15
15
  TYPE_FILTERS["INCLUDE_RESERVED"] = "IncludeReserved";
16
16
  TYPE_FILTERS["DATE_RANGE_PICKER"] = "DateRangePicker";
17
+ TYPE_FILTERS["SEARCH_BY_PLACE"] = "SearchByPlace";
17
18
  })(TYPE_FILTERS || (exports.TYPE_FILTERS = TYPE_FILTERS = {}));
18
19
  var TYPE_CHART;
19
20
  (function (TYPE_CHART) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awing-library",
3
- "version": "2.1.154-beta",
3
+ "version": "2.1.155-beta",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",