@arquimedes.co/eureka-forms 0.2.48-test → 1.0.0-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.
@@ -1,16 +1,19 @@
1
1
  export interface Organization {
2
2
  /** The Organization's id */
3
- domain: string;
3
+ idOrganization: string;
4
4
  /** The Organization's name */
5
5
  name: string;
6
6
  /** The organization Logo url */
7
- completeLogoUrl: string;
7
+ logoUrl: string;
8
8
  /** The organization Favicon url */
9
- partialLogoUrl?: string;
9
+ iconUrl?: string;
10
10
  /** The organization contact info */
11
11
  contactInfo?: Array<Record<string, string>>;
12
12
  /** The organization web page url*/
13
13
  webUrl: string;
14
- /** The color of the navbar */
15
- navbarColor: string;
14
+ styles?: {
15
+ primaryColor: string;
16
+ secondaryColor: string;
17
+ contrastColor: string;
18
+ };
16
19
  }
package/dist/App.js CHANGED
@@ -67,11 +67,11 @@ import StepTypes from './constants/FormStepTypes';
67
67
  import axiosInstance from './AxiosAPI';
68
68
  function App(_a) {
69
69
  var _this = this;
70
- var _b, _c;
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
- var _d = useState(undefined), form = _d[0], setForm = _d[1];
73
- var _e = useState({}), originalValues = _e[0], setOriginalValues = _e[1];
74
- var _f = useState(undefined), organizationInfo = _f[0], setOrganizationInfo = _f[1];
72
+ var _f = useState(undefined), form = _f[0], setForm = _f[1];
73
+ var _g = useState({}), originalValues = _g[0], setOriginalValues = _g[1];
74
+ var _h = useState(undefined), organizationInfo = _h[0], setOrganizationInfo = _h[1];
75
75
  function fetchPreview(formData) {
76
76
  return __awaiter(this, void 0, void 0, function () {
77
77
  var response;
@@ -127,7 +127,7 @@ function App(_a) {
127
127
  case 0:
128
128
  _b.trys.push([0, 5, , 6]);
129
129
  if (!domain) return [3 /*break*/, 2];
130
- return [4 /*yield*/, axios.get("https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/organization?domain=").concat(domain))];
130
+ return [4 /*yield*/, axios.get("https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/organization?idOrganization=").concat(domain))];
131
131
  case 1:
132
132
  _a = _b.sent();
133
133
  return [3 /*break*/, 4];
@@ -169,7 +169,7 @@ function App(_a) {
169
169
  switch (_a.label) {
170
170
  case 0:
171
171
  _a.trys.push([0, 2, , 3]);
172
- url = "https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/form/").concat(apiKey, "?domain=").concat(domain);
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
174
  ? axios.get(url)
175
175
  : axiosInstance.get("/form/".concat(apiKey)))];
@@ -193,9 +193,9 @@ function App(_a) {
193
193
  }); };
194
194
  if (form === undefined || organizationInfo === undefined) {
195
195
  if (isWidget) {
196
- return (_jsx("div", __assign({ className: styles.widgetContainer }, { children: _jsx("div", __assign({ className: styles.curtain }, { children: _jsx(Loader, { size: 50, color: (_b = organizationInfo === null || organizationInfo === void 0 ? void 0 : organizationInfo.navbarColor) !== null && _b !== void 0 ? _b : '#b8b8b8' }, void 0) }), void 0) }), void 0));
196
+ return (_jsx("div", __assign({ className: styles.widgetContainer }, { children: _jsx("div", __assign({ className: styles.curtain }, { children: _jsx(Loader, { size: 50, color: (_c = (_b = organizationInfo === null || organizationInfo === void 0 ? void 0 : organizationInfo.styles) === null || _b === void 0 ? void 0 : _b.primaryColor) !== null && _c !== void 0 ? _c : '#b8b8b8' }, void 0) }), void 0) }), void 0));
197
197
  }
198
- return (_jsx("div", __assign({ className: styles.curtain }, { children: _jsx(Loader, { size: 50, color: (_c = organizationInfo === null || organizationInfo === void 0 ? void 0 : organizationInfo.navbarColor) !== null && _c !== void 0 ? _c : '#b8b8b8' }, void 0) }), void 0));
198
+ return (_jsx("div", __assign({ className: styles.curtain }, { children: _jsx(Loader, { size: 50, color: (_e = (_d = organizationInfo === null || organizationInfo === void 0 ? void 0 : organizationInfo.styles) === null || _d === void 0 ? void 0 : _d.primaryColor) !== null && _e !== void 0 ? _e : '#b8b8b8' }, void 0) }), void 0));
199
199
  }
200
200
  else if (form === null) {
201
201
  if (organizationInfo === null) {
@@ -112,7 +112,7 @@ function ColumnForm(_a) {
112
112
  idStep = _a[_i];
113
113
  updateValue(idStep, values, form, customSteps);
114
114
  }
115
- url = "https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/ticket?apiKey=").concat(internal ? form.apiKey : apiKey, "&domain=").concat(domain);
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
  };
@@ -121,7 +121,7 @@ function ColumnForm(_a) {
121
121
  case 3:
122
122
  _b = _c.sent();
123
123
  return [3 /*break*/, 6];
124
- case 4: return [4 /*yield*/, axiosInstance.post("ticket?apiKey=".concat(internal ? form.apiKey : apiKey), payload)];
124
+ case 4: return [4 /*yield*/, axiosInstance.post("ticket/".concat(internal ? form.apiKey : apiKey), payload)];
125
125
  case 5:
126
126
  _b = _c.sent();
127
127
  _c.label = 6;
@@ -51,9 +51,9 @@ var blockSize = 210;
51
51
  var spacingSize = 20;
52
52
  var blockNum = 4;
53
53
  function FormComponent(_a) {
54
- var _b;
54
+ var _b, _c;
55
55
  var form = _a.form, internal = _a.internal, postview = _a.postview, organization = _a.organization, containerRef = _a.containerRef, others = __rest(_a, ["form", "internal", "postview", "organization", "containerRef"]);
56
- var _c = useState(undefined), widthStats = _c[0], setWidthStats = _c[1];
56
+ var _d = useState(undefined), widthStats = _d[0], setWidthStats = _d[1];
57
57
  /** Calcs the currentBreakPoint and if is mobile */
58
58
  var handleResize = function () {
59
59
  var _a;
@@ -89,7 +89,7 @@ function FormComponent(_a) {
89
89
  }
90
90
  else if (organization && widthStats !== undefined) {
91
91
  //Standalone cant have widget
92
- return (_jsxs(React.Fragment, { children: [_jsx(Navbar, { logo: organization.completeLogoUrl, color: organization.navbarColor }, void 0), _jsx("div", __assign({ className: styles.standAloneFormContainer, ref: containerRef }, { children: _jsx("div", __assign({ className: widthStats.isMobile
92
+ return (_jsxs(React.Fragment, { children: [_jsx(Navbar, { logo: organization.logoUrl, color: (_c = organization.styles) === null || _c === void 0 ? void 0 : _c.primaryColor }, void 0), _jsx("div", __assign({ className: styles.standAloneFormContainer, ref: containerRef }, { children: _jsx("div", __assign({ className: widthStats.isMobile
93
93
  ? styles.fullScreenStandAloneForm
94
94
  : styles.standAloneFormCard, style: { backgroundColor: form.style.backgroundColor } }, { children: _jsx(FormTypeComponent, __assign({}, others, { internal: internal, postview: postview, widthStats: widthStats, form: form, formStyle: form.style }), void 0) }), void 0) }), void 0)] }, void 0));
95
95
  }
@@ -48,10 +48,7 @@ export function getUploadUrls(files, domain) {
48
48
  extension: file.name.split('.').pop(),
49
49
  }); });
50
50
  if (!domain) return [3 /*break*/, 2];
51
- return [4 /*yield*/, axios.post("https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/uploadfile"), {
52
- domain: domain,
53
- files: filesArray,
54
- })];
51
+ return [4 /*yield*/, axios.post("https://".concat(domain, ".forms.").concat(process.env.REACT_APP_DOMAIN, "/api/uploadfile?idOrganization=").concat(domain), filesArray)];
55
52
  case 1:
56
53
  response = _b.sent();
57
54
  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":"0.2.48-test",
4
+ "version":"1.0.0-test",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
7
7
  "build": "react-scripts build",
@@ -81,5 +81,5 @@
81
81
  "files": [
82
82
  "/dist"
83
83
  ],
84
- "proxy": "https://arquimedes.forms.eureka-test.click"
84
+ "proxy": "https://api.forms.capta.co"
85
85
  }