@arquimedes.co/eureka-forms 1.0.1 → 1.0.7-test

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/App.js CHANGED
@@ -58,17 +58,18 @@ var __rest = (this && this.__rest) || function (s, e) {
58
58
  };
59
59
  var _a;
60
60
  import { jsx as _jsx } from "react/jsx-runtime";
61
- import axios from 'axios';
62
61
  import { useEffect, useRef, useState } from 'react';
63
62
  import Loader from './shared/Loader/Loader';
64
63
  import styles from './App.module.css';
65
64
  import FormComponent from './FormComponents/Form/Form';
66
65
  import StepTypes from './constants/FormStepTypes';
67
66
  import axiosInstance from './AxiosAPI';
67
+ import widgetInstance from './AxiosWidget';
68
68
  function App(_a) {
69
69
  var _this = this;
70
70
  var _b, _c, _d, _e;
71
71
  var apiKey = _a.apiKey, domain = _a.domain, preview = _a.preview, formData = _a.formData, postview = _a.postview, isWidget = _a.isWidget, internal = _a.internal, valuesData = _a.valuesData, customSteps = _a.customSteps, handleConfirmed = _a.handleConfirmed, others = __rest(_a, ["apiKey", "domain", "preview", "formData", "postview", "isWidget", "internal", "valuesData", "customSteps", "handleConfirmed"]);
72
+ console.log(customSteps);
72
73
  var _f = useState(undefined), form = _f[0], setForm = _f[1];
73
74
  var _g = useState({}), originalValues = _g[0], setOriginalValues = _g[1];
74
75
  var _h = useState(undefined), organizationInfo = _h[0], setOrganizationInfo = _h[1];
@@ -77,7 +78,7 @@ function App(_a) {
77
78
  var response;
78
79
  return __generator(this, function (_a) {
79
80
  switch (_a.label) {
80
- case 0: return [4 /*yield*/, axios.get("https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/organization"))];
81
+ case 0: return [4 /*yield*/, widgetInstance.get('/organization')];
81
82
  case 1:
82
83
  response = _a.sent();
83
84
  if (response.data) {
@@ -127,7 +128,7 @@ function App(_a) {
127
128
  case 0:
128
129
  _b.trys.push([0, 5, , 6]);
129
130
  if (!domain) return [3 /*break*/, 2];
130
- return [4 /*yield*/, axios.get("https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/organization?idOrganization=").concat(domain))];
131
+ return [4 /*yield*/, widgetInstance.get("/organization?idOrganization=".concat(domain))];
131
132
  case 1:
132
133
  _a = _b.sent();
133
134
  return [3 /*break*/, 4];
@@ -164,14 +165,13 @@ function App(_a) {
164
165
  });
165
166
  }); };
166
167
  var loadInfo = function (apiKey, domain) { return __awaiter(_this, void 0, void 0, function () {
167
- var url, response, error_2;
168
+ var response, error_2;
168
169
  return __generator(this, function (_a) {
169
170
  switch (_a.label) {
170
171
  case 0:
171
172
  _a.trys.push([0, 2, , 3]);
172
- url = "https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/form/").concat(apiKey, "?idOrganization=").concat(domain);
173
173
  return [4 /*yield*/, (domain
174
- ? axios.get(url)
174
+ ? widgetInstance.get("/form/".concat(apiKey, "?idOrganization=").concat(domain))
175
175
  : axiosInstance.get("/form/".concat(apiKey)))];
176
176
  case 1:
177
177
  response = _a.sent();
@@ -0,0 +1,2 @@
1
+ declare const widgetInstance: import("axios").AxiosInstance;
2
+ export default widgetInstance;
@@ -0,0 +1,8 @@
1
+ import axios from 'axios';
2
+ var headers = {};
3
+ var widgetInstance = axios.create({
4
+ baseURL: "https://api.forms.".concat(process.env.REACT_APP_DOMAIN, "/api"),
5
+ timeout: 30000,
6
+ headers: headers,
7
+ });
8
+ export default widgetInstance;
@@ -66,11 +66,12 @@ import { convertToRaw } from 'draft-js';
66
66
  import TermComponent from '../../Term/Term';
67
67
  import ConfirmationDialog from '../ConfirmationDialog/ConfirmationDialog';
68
68
  import Loader from '../../../shared/Loader/Loader';
69
- import axios from 'axios';
70
69
  import axiosInstance from '../../../AxiosAPI';
70
+ import widgetInstance from '../../../AxiosWidget';
71
71
  function ColumnForm(_a) {
72
72
  var _this = this;
73
73
  var form = _a.form, apiKey = _a.apiKey, reload = _a.reload, domain = _a.domain, postview = _a.postview, internal = _a.internal, formStyle = _a.formStyle, widthStats = _a.widthStats, customSteps = _a.customSteps, originalValues = _a.originalValues, others = __rest(_a, ["form", "apiKey", "reload", "domain", "postview", "internal", "formStyle", "widthStats", "customSteps", "originalValues"]);
74
+ console.log(customSteps);
74
75
  var _b = useState(false), tempError = _b[0], setTempError = _b[1];
75
76
  var _c = useForm({
76
77
  defaultValues: mapOriginal(originalValues, form),
@@ -89,7 +90,7 @@ function ColumnForm(_a) {
89
90
  return _jsx("div", {}, void 0);
90
91
  }
91
92
  var onSubmit = function () { return __awaiter(_this, void 0, void 0, function () {
92
- var valid, values, _i, _a, idStep, url, payload, resp, _b, error_1;
93
+ var valid, values, _i, _a, idStep, payload, url, resp, _b, error_1;
93
94
  return __generator(this, function (_c) {
94
95
  switch (_c.label) {
95
96
  case 0:
@@ -112,16 +113,16 @@ function ColumnForm(_a) {
112
113
  idStep = _a[_i];
113
114
  updateValue(idStep, values, form, customSteps);
114
115
  }
115
- url = "https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/ticket/").concat(internal ? form.apiKey : apiKey, "?idOrganization=").concat(domain);
116
116
  payload = {
117
117
  formValues: { steps: values },
118
118
  };
119
+ url = "/ticket/".concat(internal ? form.apiKey : apiKey);
119
120
  if (!(domain || internal)) return [3 /*break*/, 4];
120
- return [4 /*yield*/, axios.post(url, payload)];
121
+ return [4 /*yield*/, widgetInstance.post("".concat(url, "?idOrganization=").concat(domain), payload)];
121
122
  case 3:
122
123
  _b = _c.sent();
123
124
  return [3 /*break*/, 6];
124
- case 4: return [4 /*yield*/, axiosInstance.post("ticket/".concat(internal ? form.apiKey : apiKey), payload)];
125
+ case 4: return [4 /*yield*/, axiosInstance.post(url, payload)];
125
126
  case 5:
126
127
  _b = _c.sent();
127
128
  _c.label = 6;
@@ -219,7 +220,9 @@ var updateValue = function (idStep, values, form, customSteps) {
219
220
  break;
220
221
  }
221
222
  default:
223
+ console.log('CustomSteps:', customSteps);
222
224
  var custom = customSteps[idStep];
225
+ console.log('UPDATE:', custom);
223
226
  if (custom !== undefined) {
224
227
  custom.updateValue(idStep, values, form);
225
228
  }
@@ -36,6 +36,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
36
36
  };
37
37
  import axios from 'axios';
38
38
  import axiosInstance from '../AxiosAPI';
39
+ import widgetInstance from '../AxiosWidget';
39
40
  export function getUploadUrls(files, domain) {
40
41
  var _a;
41
42
  return __awaiter(this, void 0, void 0, function () {
@@ -48,7 +49,7 @@ export function getUploadUrls(files, domain) {
48
49
  extension: file.name.split('.').pop(),
49
50
  }); });
50
51
  if (!domain) return [3 /*break*/, 2];
51
- return [4 /*yield*/, axios.post("https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/uploadfile?idOrganization=").concat(domain), filesArray)];
52
+ return [4 /*yield*/, widgetInstance.post("/uploadfile?idOrganization=".concat(domain), filesArray)];
52
53
  case 1:
53
54
  response = _b.sent();
54
55
  return [3 /*break*/, 4];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arquimedes.co/eureka-forms",
3
3
  "repository": "git://github.com/Arquimede5/Eureka-Forms.git",
4
- "version": "1.0.1",
4
+ "version":"1.0.7-test",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
7
7
  "build": "react-scripts build",