@gpa-gemstone/react-forms 1.1.21 → 1.1.24

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.
@@ -5,6 +5,9 @@ export default class DatePicker<T> extends React.Component<{
5
5
  Setter: (record: T) => void;
6
6
  Label?: string;
7
7
  Disabled?: boolean;
8
+ Feedback?: string;
9
+ Format?: string;
10
+ Valid: (field: keyof T) => boolean;
8
11
  }, {}, {}> {
9
12
  render(): JSX.Element;
10
13
  }
package/lib/DatePicker.js CHANGED
@@ -49,6 +49,7 @@ var __assign = (this && this.__assign) || function () {
49
49
  };
50
50
  Object.defineProperty(exports, "__esModule", { value: true });
51
51
  var React = require("react");
52
+ var moment = require("moment");
52
53
  var DatePicker = /** @class */ (function (_super) {
53
54
  __extends(DatePicker, _super);
54
55
  function DatePicker() {
@@ -57,15 +58,24 @@ var DatePicker = /** @class */ (function (_super) {
57
58
  DatePicker.prototype.render = function () {
58
59
  var _this = this;
59
60
  return (React.createElement("div", { className: "form-group" },
60
- React.createElement("label", null, this.props.Label == null ? this.props.Field : this.props.Label),
61
- React.createElement("input", { className: "form-control", type: "date", onChange: function (evt) {
61
+ (this.props.Label !== "") ?
62
+ React.createElement("label", null, this.props.Label == null ? this.props.Field : this.props.Label) : null,
63
+ React.createElement("input", { className: this.props.Valid(this.props.Field) ? 'form-control' : 'form-control is-invalid', type: "date", onChange: function (evt) {
62
64
  var record = __assign({}, _this.props.Record);
63
- if (evt.target.value !== '')
64
- record[_this.props.Field] = evt.target.value;
65
+ if (evt.target.value !== '') {
66
+ if (_this.props.Format === null)
67
+ record[_this.props.Field] = evt.target.value;
68
+ else
69
+ record[_this.props.Field] = moment(evt.target.value).format(_this.props.Format);
70
+ }
65
71
  else
66
72
  record[_this.props.Field] = null;
67
73
  _this.props.Setter(record);
68
- }, value: this.props.Record[this.props.Field] == null ? '' : this.props.Record[this.props.Field].toString(), disabled: this.props.Disabled == null ? false : this.props.Disabled })));
74
+ }, value: this.props.Record[this.props.Field] == null ? '' :
75
+ this.props.Format == null ?
76
+ this.props.Record[this.props.Field].toString() :
77
+ moment(this.props.Record[this.props.Field]).format("YYYY-MM-DD"), disabled: this.props.Disabled == null ? false : this.props.Disabled }),
78
+ React.createElement("div", { className: "invalid-feedback" }, this.props.Feedback == null ? this.props.Field + ' is a required field.' : this.props.Feedback)));
69
79
  };
70
80
  return DatePicker;
71
81
  }(React.Component));
@@ -104,7 +104,7 @@ function DateRangePicker(props) {
104
104
  }, [Tstart]);
105
105
  React.useEffect(function () {
106
106
  // only if InputStart is a valid ToString
107
- if (StartInput.match('^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-2][0-9])') != null)
107
+ if (StartInput.match('^([0-9][0-9][0-9][0-9])-([0-1][0-9])-([0-3][0-9])') != null)
108
108
  setTstart(ToDate(StartInput));
109
109
  else
110
110
  setTstart(null);
@@ -115,7 +115,7 @@ function DateRangePicker(props) {
115
115
  }, [Tend]);
116
116
  React.useEffect(function () {
117
117
  // only if EndInput is a valid ToString
118
- if (EndInput.match('^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-2][0-9])') != null)
118
+ if (EndInput.match('^([0-9][0-9][0-9][0-9])-([0-1][0-9])-([0-3][0-9])') != null)
119
119
  setTend(ToDate(EndInput));
120
120
  else
121
121
  setTend(null);
package/lib/Input.js CHANGED
@@ -41,24 +41,33 @@ var helper_functions_1 = require("@gpa-gemstone/helper-functions");
41
41
  function Input(props) {
42
42
  var _a = React.useState(""), guid = _a[0], setGuid = _a[1];
43
43
  var _b = React.useState(false), showHelp = _b[0], setShowHelp = _b[1];
44
+ var _c = React.useState(''), heldVal = _c[0], setHeldVal = _c[1];
44
45
  React.useEffect(function () {
45
46
  setGuid((0, helper_functions_1.CreateGuid)());
46
47
  }, []);
48
+ React.useEffect(function () {
49
+ setHeldVal(props.Record[props.Field] == null ? '' : props.Record[props.Field].toString());
50
+ }, [props.Record[props.Field]]);
47
51
  function valueChange(evt) {
48
52
  var _a, _b;
49
- if (props.Type === 'number')
50
- props.Setter(__assign(__assign({}, props.Record), (_a = {}, _a[props.Field] = evt.target.value !== '' ? parseFloat(evt.target.value) : null, _a)));
53
+ if (props.Type === 'number') {
54
+ if (parseFloat(heldVal) !== parseFloat(evt.target.value))
55
+ props.Setter(__assign(__assign({}, props.Record), (_a = {}, _a[props.Field] = evt.target.value !== '' ? parseFloat(evt.target.value) : null, _a)));
56
+ else
57
+ setHeldVal(evt.target.value);
58
+ }
51
59
  else
52
60
  props.Setter(__assign(__assign({}, props.Record), (_b = {}, _b[props.Field] = evt.target.value !== '' ? evt.target.value : null, _b)));
53
61
  }
54
62
  return (React.createElement("div", { className: "form-group" },
55
- React.createElement("label", null,
56
- props.Label == null ? props.Field : props.Label,
57
- props.Help !== undefined ? React.createElement("div", { style: { width: 20, height: 20, borderRadius: '50%', display: 'inline-block', background: '#0D6EFD', marginLeft: 10, textAlign: 'center', fontWeight: 'bold' }, onMouseEnter: function () { return setShowHelp(true); }, onMouseLeave: function () { return setShowHelp(false); } }, " ? ") : null),
63
+ (props.Label !== "") ?
64
+ React.createElement("label", null,
65
+ props.Label === null ? props.Field : props.Label,
66
+ props.Help !== undefined ? React.createElement("div", { style: { width: 20, height: 20, borderRadius: '50%', display: 'inline-block', background: '#0D6EFD', marginLeft: 10, textAlign: 'center', fontWeight: 'bold' }, onMouseEnter: function () { return setShowHelp(true); }, onMouseLeave: function () { return setShowHelp(false); } }, " ? ") : null) : null,
58
67
  props.Help !== undefined ?
59
68
  React.createElement(HelperMessage_1.default, { Show: showHelp, Target: guid }, props.Help)
60
69
  : null,
61
- React.createElement("input", { "data-help": guid, type: props.Type === undefined ? 'text' : props.Type, className: props.Valid(props.Field) ? 'form-control' : 'form-control is-invalid', onChange: function (evt) { return valueChange(evt); }, value: props.Record[props.Field] == null ? '' : props.Record[props.Field].toString(), disabled: props.Disabled == null ? false : props.Disabled }),
70
+ React.createElement("input", { "data-help": guid, type: props.Type === undefined ? 'text' : props.Type, className: props.Valid(props.Field) ? 'form-control' : 'form-control is-invalid', onChange: function (evt) { return valueChange(evt); }, value: heldVal, disabled: props.Disabled == null ? false : props.Disabled }),
62
71
  React.createElement("div", { className: "invalid-feedback" }, props.Feedback == null ? props.Field + ' is a required field.' : props.Feedback)));
63
72
  }
64
73
  exports.default = Input;
package/lib/Select.js CHANGED
@@ -45,9 +45,10 @@ function Select(props) {
45
45
  setGuid((0, helper_functions_1.CreateGuid)());
46
46
  }, []);
47
47
  return (React.createElement("div", { className: "form-group" },
48
- React.createElement("label", null,
49
- props.Label == null ? props.Field : props.Label,
50
- props.Help !== undefined ? React.createElement("div", { style: { width: 20, height: 20, borderRadius: '50%', display: 'inline-block', background: '#0D6EFD', marginLeft: 10, textAlign: 'center', fontWeight: 'bold' }, onMouseEnter: function () { return setShowHelp(true); }, onMouseLeave: function () { return setShowHelp(false); } }, " ? ") : null),
48
+ (props.Label !== "") ?
49
+ React.createElement("label", null,
50
+ props.Label === null ? props.Field : props.Label,
51
+ props.Help !== undefined ? React.createElement("div", { style: { width: 20, height: 20, borderRadius: '50%', display: 'inline-block', background: '#0D6EFD', marginLeft: 10, textAlign: 'center', fontWeight: 'bold' }, onMouseEnter: function () { return setShowHelp(true); }, onMouseLeave: function () { return setShowHelp(false); } }, " ? ") : null) : null,
51
52
  props.Help !== undefined ?
52
53
  React.createElement(HelperMessage_1.default, { Show: showHelp, Target: guid }, props.Help)
53
54
  : null,
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+ export default class TimePicker<T> extends React.Component<{
3
+ Record: T;
4
+ Field: keyof T;
5
+ Setter: (record: T) => void;
6
+ Label?: string;
7
+ Disabled?: boolean;
8
+ Feedback?: string;
9
+ Step?: number;
10
+ Valid: (field: keyof T) => boolean;
11
+ }, {}, {}> {
12
+ render(): JSX.Element;
13
+ }
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ // ******************************************************************************************************
3
+ // TimePicker.tsx - Gbtc
4
+ //
5
+ // Copyright © 2022, Grid Protection Alliance. All Rights Reserved.
6
+ //
7
+ // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See
8
+ // the NOTICE file distributed with this work for additional information regarding copyright ownership.
9
+ // The GPA licenses this file to you under the MIT License (MIT), the "License"; you may not use this
10
+ // file except in compliance with the License. You may obtain a copy of the License at:
11
+ //
12
+ // http://opensource.org/licenses/MIT
13
+ //
14
+ // Unless agreed to in writing, the subject software distributed under the License is distributed on an
15
+ // "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Refer to the
16
+ // License for the specific language governing permissions and limitations.
17
+ //
18
+ // Code Modification History:
19
+ // ----------------------------------------------------------------------------------------------------
20
+ // 03/21/2022 - C. Lackner
21
+ // Generated original version of source code.
22
+ //
23
+ // ******************************************************************************************************
24
+ var __extends = (this && this.__extends) || (function () {
25
+ var extendStatics = function (d, b) {
26
+ extendStatics = Object.setPrototypeOf ||
27
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
29
+ return extendStatics(d, b);
30
+ };
31
+ return function (d, b) {
32
+ if (typeof b !== "function" && b !== null)
33
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
34
+ extendStatics(d, b);
35
+ function __() { this.constructor = d; }
36
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
37
+ };
38
+ })();
39
+ var __assign = (this && this.__assign) || function () {
40
+ __assign = Object.assign || function(t) {
41
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
42
+ s = arguments[i];
43
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
44
+ t[p] = s[p];
45
+ }
46
+ return t;
47
+ };
48
+ return __assign.apply(this, arguments);
49
+ };
50
+ Object.defineProperty(exports, "__esModule", { value: true });
51
+ var React = require("react");
52
+ var TimePicker = /** @class */ (function (_super) {
53
+ __extends(TimePicker, _super);
54
+ function TimePicker() {
55
+ return _super !== null && _super.apply(this, arguments) || this;
56
+ }
57
+ TimePicker.prototype.render = function () {
58
+ var _this = this;
59
+ return (React.createElement("div", { className: "form-group" },
60
+ (this.props.Label !== "") ?
61
+ React.createElement("label", null, this.props.Label == null ? this.props.Field : this.props.Label) : null,
62
+ React.createElement("input", { className: this.props.Valid(this.props.Field) ? 'form-control' : 'form-control is-invalid', type: "time", step: this.props.Step === null ? 60 : this.props.Step, onChange: function (evt) {
63
+ var record = __assign({}, _this.props.Record);
64
+ if (evt.target.value !== '')
65
+ record[_this.props.Field] = evt.target.value;
66
+ else
67
+ record[_this.props.Field] = null;
68
+ _this.props.Setter(record);
69
+ }, value: this.props.Record[this.props.Field] == null ? '' : this.props.Record[this.props.Field].toString(), disabled: this.props.Disabled == null ? false : this.props.Disabled }),
70
+ React.createElement("div", { className: "invalid-feedback" }, this.props.Feedback == null ? this.props.Field + ' is a required field.' : this.props.Feedback)));
71
+ };
72
+ return TimePicker;
73
+ }(React.Component));
74
+ exports.default = TimePicker;
package/lib/index.d.ts CHANGED
@@ -8,4 +8,6 @@ import EnumCheckBoxes from './EnumCheckBoxes';
8
8
  import ArrayMultiSelect from './ArrayMultiSelect';
9
9
  import ArrayCheckBoxes from './ArrayCheckBoxes';
10
10
  import MultiCheckBoxSelect from './MutliCheckBoxSelect';
11
- export { CheckBox, Input, DatePicker, Select, TextArea, DateRangePicker, EnumCheckBoxes, ArrayMultiSelect, ArrayCheckBoxes, MultiCheckBoxSelect };
11
+ import DoubleInput from './DoubleInput';
12
+ import TimePicker from './TimePicker';
13
+ export { CheckBox, Input, DatePicker, Select, TextArea, DateRangePicker, EnumCheckBoxes, ArrayMultiSelect, ArrayCheckBoxes, MultiCheckBoxSelect, DoubleInput, TimePicker };
package/lib/index.js CHANGED
@@ -22,7 +22,7 @@
22
22
  //
23
23
  // ******************************************************************************************************
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.MultiCheckBoxSelect = exports.ArrayCheckBoxes = exports.ArrayMultiSelect = exports.EnumCheckBoxes = exports.DateRangePicker = exports.TextArea = exports.Select = exports.DatePicker = exports.Input = exports.CheckBox = void 0;
25
+ exports.TimePicker = exports.DoubleInput = exports.MultiCheckBoxSelect = exports.ArrayCheckBoxes = exports.ArrayMultiSelect = exports.EnumCheckBoxes = exports.DateRangePicker = exports.TextArea = exports.Select = exports.DatePicker = exports.Input = exports.CheckBox = void 0;
26
26
  var CheckBox_1 = require("./CheckBox");
27
27
  exports.CheckBox = CheckBox_1.default;
28
28
  var Input_1 = require("./Input");
@@ -43,3 +43,7 @@ var ArrayCheckBoxes_1 = require("./ArrayCheckBoxes");
43
43
  exports.ArrayCheckBoxes = ArrayCheckBoxes_1.default;
44
44
  var MutliCheckBoxSelect_1 = require("./MutliCheckBoxSelect");
45
45
  exports.MultiCheckBoxSelect = MutliCheckBoxSelect_1.default;
46
+ var DoubleInput_1 = require("./DoubleInput");
47
+ exports.DoubleInput = DoubleInput_1.default;
48
+ var TimePicker_1 = require("./TimePicker");
49
+ exports.TimePicker = TimePicker_1.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpa-gemstone/react-forms",
3
- "version": "1.1.21",
3
+ "version": "1.1.24",
4
4
  "description": "React Form modules for gpa webapps",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -45,11 +45,12 @@
45
45
  "typescript": "4.4.4"
46
46
  },
47
47
  "dependencies": {
48
- "@gpa-gemstone/helper-functions": "0.0.14",
48
+ "@gpa-gemstone/helper-functions": "0.0.16",
49
49
  "@types/react": "^17.0.14",
50
50
  "@types/styled-components": "^5.1.11",
51
51
  "react": "^17.0.2",
52
- "styled-components": "^5.3.3"
52
+ "styled-components": "5.3.3",
53
+ "moment": "2.29.4"
53
54
  },
54
55
  "publishConfig": {
55
56
  "access": "public"