@bigbinary/neeto-integrations-frontend 2.5.3 → 2.6.0
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/Daily.cjs.js +628 -0
- package/dist/Daily.cjs.js.map +1 -0
- package/dist/Daily.js +597 -0
- package/dist/Daily.js.map +1 -0
- package/dist/Twilio.cjs.js +363 -56
- package/dist/Twilio.cjs.js.map +1 -1
- package/dist/Twilio.js +364 -60
- package/dist/Twilio.js.map +1 -1
- package/dist/index.cjs.js +364 -73
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +362 -71
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +21 -0
- package/types.d.ts +9 -0
package/dist/index.js
CHANGED
|
@@ -1,19 +1,112 @@
|
|
|
1
1
|
export { default as Card } from '@bigbinary/neeto-molecules/IntegrationCard';
|
|
2
|
+
import DisconnectAlert from '@bigbinary/neeto-molecules/IntegrationDisconnectAlert';
|
|
2
3
|
export { default as DisconnectAlert } from '@bigbinary/neeto-molecules/IntegrationDisconnectAlert';
|
|
4
|
+
import WalkthroughModal from '@bigbinary/neeto-molecules/IntegrationWalkthroughModal';
|
|
3
5
|
export { default as WalkthroughModal } from '@bigbinary/neeto-molecules/IntegrationWalkthroughModal';
|
|
4
6
|
import * as React from 'react';
|
|
5
|
-
import React__default, { useEffect, useRef
|
|
6
|
-
import {
|
|
7
|
-
import
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import { prop, equals, isEmpty } from 'ramda';
|
|
11
|
-
import { useTranslation } from 'react-i18next';
|
|
12
|
-
import { useMutationWithInvalidation, useStateWithDependency } from '@bigbinary/neeto-commons-frontend/react-utils';
|
|
7
|
+
import React__default, { useState, useEffect, useRef } from 'react';
|
|
8
|
+
import i18next, { t as t$1 } from 'i18next';
|
|
9
|
+
import { isNotPresent, isPresent, noop, keysToSnakeCase, _findBy, isNotEmpty } from '@bigbinary/neeto-cist';
|
|
10
|
+
import { useMutationWithInvalidation, withTitle, withT, useStateWithDependency } from '@bigbinary/neeto-commons-frontend/react-utils';
|
|
11
|
+
import { DEFAULT_STALE_TIME } from '@bigbinary/neeto-commons-frontend/constants';
|
|
13
12
|
import { useQuery } from 'react-query';
|
|
14
13
|
import axios from 'axios';
|
|
15
|
-
import
|
|
14
|
+
import PageLoader from '@bigbinary/neeto-molecules/PageLoader';
|
|
15
|
+
import { Button, Typography, Modal as Modal$1 } from '@bigbinary/neetoui';
|
|
16
|
+
import { Form as Form$2, Input, Select, ActionBlock } from '@bigbinary/neetoui/formik';
|
|
17
|
+
import { useTranslation, Trans } from 'react-i18next';
|
|
16
18
|
import classnames from 'classnames';
|
|
19
|
+
import { prop, equals, isEmpty } from 'ramda';
|
|
20
|
+
import * as yup from 'yup';
|
|
21
|
+
|
|
22
|
+
function _typeof(obj) {
|
|
23
|
+
"@babel/helpers - typeof";
|
|
24
|
+
|
|
25
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
|
26
|
+
return typeof obj;
|
|
27
|
+
} : function (obj) {
|
|
28
|
+
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
29
|
+
}, _typeof(obj);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function _toPrimitive(input, hint) {
|
|
33
|
+
if (_typeof(input) !== "object" || input === null) return input;
|
|
34
|
+
var prim = input[Symbol.toPrimitive];
|
|
35
|
+
if (prim !== undefined) {
|
|
36
|
+
var res = prim.call(input, hint || "default");
|
|
37
|
+
if (_typeof(res) !== "object") return res;
|
|
38
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
39
|
+
}
|
|
40
|
+
return (hint === "string" ? String : Number)(input);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function _toPropertyKey(arg) {
|
|
44
|
+
var key = _toPrimitive(arg, "string");
|
|
45
|
+
return _typeof(key) === "symbol" ? key : String(key);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function _defineProperty(obj, key, value) {
|
|
49
|
+
key = _toPropertyKey(key);
|
|
50
|
+
if (key in obj) {
|
|
51
|
+
Object.defineProperty(obj, key, {
|
|
52
|
+
value: value,
|
|
53
|
+
enumerable: true,
|
|
54
|
+
configurable: true,
|
|
55
|
+
writable: true
|
|
56
|
+
});
|
|
57
|
+
} else {
|
|
58
|
+
obj[key] = value;
|
|
59
|
+
}
|
|
60
|
+
return obj;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
var INTEGRATIONS_ENGINE_BASE_URL = "/neeto_integrations";
|
|
64
|
+
var TWILIO_CONFIGURATION_BASE_URL = "".concat(INTEGRATIONS_ENGINE_BASE_URL, "/twilio/sms_configurations");
|
|
65
|
+
var INTEGRATIONS_ENGINE_DAILY_URL = "".concat(INTEGRATIONS_ENGINE_BASE_URL, "/daily");
|
|
66
|
+
|
|
67
|
+
var create = function create(payload) {
|
|
68
|
+
return axios.post(INTEGRATIONS_ENGINE_DAILY_URL, {
|
|
69
|
+
daily: payload
|
|
70
|
+
});
|
|
71
|
+
};
|
|
72
|
+
var show = function show() {
|
|
73
|
+
return axios.get(INTEGRATIONS_ENGINE_DAILY_URL);
|
|
74
|
+
};
|
|
75
|
+
var destroy = function destroy() {
|
|
76
|
+
return axios["delete"](INTEGRATIONS_ENGINE_DAILY_URL);
|
|
77
|
+
};
|
|
78
|
+
var dailiesApi = {
|
|
79
|
+
create: create,
|
|
80
|
+
show: show,
|
|
81
|
+
destroy: destroy
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
var QUERY_KEYS = {
|
|
85
|
+
TWILIO_SMS_CONFIGURATION: "twilio-sms-configuration",
|
|
86
|
+
TWILIO_PHONE_NUMBERS: "twilio-phone-numbers",
|
|
87
|
+
DAILY_CO_DETAILS: "daily-co-details"
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
function ownKeys$3(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
91
|
+
function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$3(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$3(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
92
|
+
var useCreateDaily = function useCreateDaily() {
|
|
93
|
+
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
94
|
+
return useMutationWithInvalidation(dailiesApi.create, _objectSpread$3({
|
|
95
|
+
keysToInvalidate: [QUERY_KEYS.DAILY_CO_DETAILS]
|
|
96
|
+
}, options));
|
|
97
|
+
};
|
|
98
|
+
var useFetchDaily = function useFetchDaily() {
|
|
99
|
+
return useQuery(QUERY_KEYS.DAILY_CO_DETAILS, dailiesApi.show, {
|
|
100
|
+
staleTime: DEFAULT_STALE_TIME
|
|
101
|
+
});
|
|
102
|
+
};
|
|
103
|
+
var useDestroyDaily = function useDestroyDaily(_ref) {
|
|
104
|
+
var onSuccess = _ref.onSuccess;
|
|
105
|
+
return useMutationWithInvalidation(dailiesApi.destroy, {
|
|
106
|
+
keysToInvalidate: [QUERY_KEYS.DAILY_CO_DETAILS],
|
|
107
|
+
onSuccess: onSuccess
|
|
108
|
+
});
|
|
109
|
+
};
|
|
17
110
|
|
|
18
111
|
function _arrayWithHoles(arr) {
|
|
19
112
|
if (Array.isArray(arr)) return arr;
|
|
@@ -70,53 +163,273 @@ function _slicedToArray(arr, i) {
|
|
|
70
163
|
return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
|
|
71
164
|
}
|
|
72
165
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
87
|
-
}, _typeof(obj);
|
|
166
|
+
function _extends$1() {
|
|
167
|
+
_extends$1 = Object.assign ? Object.assign.bind() : function (target) {
|
|
168
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
169
|
+
var source = arguments[i];
|
|
170
|
+
for (var key in source) {
|
|
171
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
172
|
+
target[key] = source[key];
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
return target;
|
|
177
|
+
};
|
|
178
|
+
return _extends$1.apply(this, arguments);
|
|
88
179
|
}
|
|
89
180
|
|
|
90
|
-
function
|
|
91
|
-
if (
|
|
92
|
-
var
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
181
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
182
|
+
if (source == null) return {};
|
|
183
|
+
var target = {};
|
|
184
|
+
var sourceKeys = Object.keys(source);
|
|
185
|
+
var key, i;
|
|
186
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
187
|
+
key = sourceKeys[i];
|
|
188
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
189
|
+
target[key] = source[key];
|
|
97
190
|
}
|
|
98
|
-
return
|
|
191
|
+
return target;
|
|
99
192
|
}
|
|
100
193
|
|
|
101
|
-
function
|
|
102
|
-
|
|
103
|
-
|
|
194
|
+
function _objectWithoutProperties(source, excluded) {
|
|
195
|
+
if (source == null) return {};
|
|
196
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
197
|
+
var key, i;
|
|
198
|
+
if (Object.getOwnPropertySymbols) {
|
|
199
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
200
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
201
|
+
key = sourceSymbolKeys[i];
|
|
202
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
203
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
204
|
+
target[key] = source[key];
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
return target;
|
|
104
208
|
}
|
|
105
209
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
210
|
+
var _excluded = ["className", "children"];
|
|
211
|
+
var ExternalLink = function ExternalLink(_ref) {
|
|
212
|
+
var _ref$className = _ref.className,
|
|
213
|
+
className = _ref$className === void 0 ? "" : _ref$className,
|
|
214
|
+
_ref$children = _ref.children,
|
|
215
|
+
children = _ref$children === void 0 ? null : _ref$children,
|
|
216
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
217
|
+
return /*#__PURE__*/React__default.createElement("a", _extends$1({
|
|
218
|
+
className: classnames(["neeto-ui-text-primary-800 hover:neeto-ui-text-primary-800 visited:neeto-ui-text-primary-600 font-medium", className])
|
|
219
|
+
}, props), children);
|
|
220
|
+
};
|
|
221
|
+
var ExternalLink$1 = /*#__PURE__*/React__default.memo(ExternalLink);
|
|
222
|
+
|
|
223
|
+
var MANAGE_DAILY_CO_FORM_INITIAL_VALUES = {
|
|
224
|
+
apiKey: ""
|
|
225
|
+
};
|
|
226
|
+
var DAILY_CO_VALIDATION_SCHEMA = yup.object().shape({
|
|
227
|
+
apiKey: yup.string().trim().required(t$1("neetoIntegrations.errors.required", {
|
|
228
|
+
entity: t$1("neetoIntegrations.daily.apiKey")
|
|
229
|
+
}))
|
|
230
|
+
});
|
|
231
|
+
|
|
232
|
+
var Form = function Form(_ref) {
|
|
233
|
+
var helpDocUrl = _ref.helpDocUrl,
|
|
234
|
+
videoUrl = _ref.videoUrl,
|
|
235
|
+
onConnect = _ref.onConnect;
|
|
236
|
+
var _useTranslation = useTranslation(),
|
|
237
|
+
t = _useTranslation.t;
|
|
238
|
+
var _useState = useState(false),
|
|
239
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
240
|
+
isDemoModalOpen = _useState2[0],
|
|
241
|
+
setIsDemoModalOpen = _useState2[1];
|
|
242
|
+
var _useCreateDaily = useCreateDaily({
|
|
243
|
+
onSuccess: function onSuccess() {
|
|
244
|
+
return onConnect === null || onConnect === void 0 ? void 0 : onConnect();
|
|
245
|
+
}
|
|
246
|
+
}),
|
|
247
|
+
createDaily = _useCreateDaily.mutate,
|
|
248
|
+
isConnecting = _useCreateDaily.isLoading;
|
|
249
|
+
var handleSubmit = function handleSubmit(payload) {
|
|
250
|
+
return createDaily(payload);
|
|
251
|
+
};
|
|
252
|
+
if (isConnecting) {
|
|
253
|
+
return /*#__PURE__*/React__default.createElement(PageLoader, null);
|
|
254
|
+
}
|
|
255
|
+
return /*#__PURE__*/React__default.createElement("div", {
|
|
256
|
+
className: "mx-auto w-full max-w-md"
|
|
257
|
+
}, /*#__PURE__*/React__default.createElement(Form$2, {
|
|
258
|
+
formikProps: {
|
|
259
|
+
initialValues: MANAGE_DAILY_CO_FORM_INITIAL_VALUES,
|
|
260
|
+
validationSchema: DAILY_CO_VALIDATION_SCHEMA,
|
|
261
|
+
onSubmit: handleSubmit
|
|
262
|
+
}
|
|
263
|
+
}, function (_ref2) {
|
|
264
|
+
var dirty = _ref2.dirty;
|
|
265
|
+
return /*#__PURE__*/React__default.createElement("div", {
|
|
266
|
+
className: "mt-10 w-full space-y-5"
|
|
267
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
|
268
|
+
className: "block"
|
|
269
|
+
}, /*#__PURE__*/React__default.createElement(Input, {
|
|
270
|
+
autoFocus: true,
|
|
271
|
+
required: true,
|
|
272
|
+
label: t("neetoIntegrations.daily.apiKey"),
|
|
273
|
+
name: "apiKey",
|
|
274
|
+
helpText: /*#__PURE__*/React__default.createElement(Trans, {
|
|
275
|
+
i18nKey: "neetoIntegrations.daily.helpDoc",
|
|
276
|
+
components: {
|
|
277
|
+
externalLink: /*#__PURE__*/React__default.createElement(ExternalLink$1, {
|
|
278
|
+
href: helpDocUrl,
|
|
279
|
+
rel: "noreferrer",
|
|
280
|
+
target: "_blank"
|
|
281
|
+
})
|
|
282
|
+
}
|
|
283
|
+
})
|
|
284
|
+
}), /*#__PURE__*/React__default.createElement(Button, {
|
|
285
|
+
className: "mt-8",
|
|
286
|
+
label: t("neetoIntegrations.daily.walkthroughText"),
|
|
287
|
+
style: "link",
|
|
288
|
+
onClick: function onClick() {
|
|
289
|
+
return setIsDemoModalOpen(true);
|
|
290
|
+
}
|
|
291
|
+
})), /*#__PURE__*/React__default.createElement("div", null, /*#__PURE__*/React__default.createElement(Button, {
|
|
292
|
+
disabled: isConnecting || !dirty,
|
|
293
|
+
label: t("neetoIntegrations.common.connect"),
|
|
294
|
+
loading: isConnecting,
|
|
295
|
+
type: "submit"
|
|
296
|
+
})));
|
|
297
|
+
}), /*#__PURE__*/React__default.createElement(WalkthroughModal, {
|
|
298
|
+
isOpen: isDemoModalOpen,
|
|
299
|
+
videoUrl: videoUrl,
|
|
300
|
+
onClose: function onClose() {
|
|
301
|
+
return setIsDemoModalOpen(false);
|
|
302
|
+
}
|
|
303
|
+
}));
|
|
304
|
+
};
|
|
305
|
+
var Form$1 = withTitle(Form, i18next.t("neetoIntegrations.browserTitles.integrations.dailyco"));
|
|
306
|
+
|
|
307
|
+
var Manage$1 = withT(function (_ref) {
|
|
308
|
+
var t = _ref.t,
|
|
309
|
+
title = _ref.title,
|
|
310
|
+
description = _ref.description,
|
|
311
|
+
integration = _ref.integration,
|
|
312
|
+
isDisconnectAlertOpen = _ref.isDisconnectAlertOpen,
|
|
313
|
+
setIsDisconnectAlertOpen = _ref.setIsDisconnectAlertOpen,
|
|
314
|
+
isDisconnecting = _ref.isDisconnecting,
|
|
315
|
+
onDisconnect = _ref.onDisconnect,
|
|
316
|
+
onClose = _ref.onClose;
|
|
317
|
+
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("div", {
|
|
318
|
+
className: "mx-auto w-full max-w-md"
|
|
319
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
|
320
|
+
className: "mt-10 w-full space-y-4"
|
|
321
|
+
}, /*#__PURE__*/React__default.createElement(Typography, {
|
|
322
|
+
className: "neeto-ui-text-gray-800 mb-0.5",
|
|
323
|
+
style: "h3",
|
|
324
|
+
weight: "semibold"
|
|
325
|
+
}, title), /*#__PURE__*/React__default.createElement(Typography, {
|
|
326
|
+
className: "neeto-ui-text-gray-600 break-all",
|
|
327
|
+
style: "body1",
|
|
328
|
+
weight: "normal"
|
|
329
|
+
}, description), /*#__PURE__*/React__default.createElement(Button, {
|
|
330
|
+
label: t("neetoIntegrations.common.disconnect"),
|
|
331
|
+
style: "danger",
|
|
332
|
+
onClick: function onClick() {
|
|
333
|
+
return setIsDisconnectAlertOpen(true);
|
|
334
|
+
}
|
|
335
|
+
}))), /*#__PURE__*/React__default.createElement(DisconnectAlert, {
|
|
336
|
+
isDisconnecting: isDisconnecting,
|
|
337
|
+
onClose: onClose,
|
|
338
|
+
onDisconnect: onDisconnect,
|
|
339
|
+
isOpen: isDisconnectAlertOpen,
|
|
340
|
+
message: t("neetoIntegrations.".concat(integration, ".disconnect.message")),
|
|
341
|
+
title: t("neetoIntegrations.".concat(integration, ".disconnect.title"))
|
|
342
|
+
}));
|
|
343
|
+
});
|
|
344
|
+
|
|
345
|
+
var Manage = function Manage(_ref) {
|
|
346
|
+
var onDisconnect = _ref.onDisconnect;
|
|
347
|
+
var _useState = useState(false),
|
|
348
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
349
|
+
isDisconnectAlertOpen = _useState2[0],
|
|
350
|
+
setIsDisconnectAlertOpen = _useState2[1];
|
|
351
|
+
var _useFetchDaily = useFetchDaily(),
|
|
352
|
+
_useFetchDaily$data = _useFetchDaily.data,
|
|
353
|
+
_useFetchDaily$data2 = _useFetchDaily$data === void 0 ? {} : _useFetchDaily$data,
|
|
354
|
+
_useFetchDaily$data2$ = _useFetchDaily$data2.metadata,
|
|
355
|
+
metadata = _useFetchDaily$data2$ === void 0 ? {} : _useFetchDaily$data2$,
|
|
356
|
+
isLoading = _useFetchDaily.isLoading;
|
|
357
|
+
var _ref2 = metadata || {},
|
|
358
|
+
_ref2$apiKey = _ref2.apiKey,
|
|
359
|
+
apiKey = _ref2$apiKey === void 0 ? null : _ref2$apiKey;
|
|
360
|
+
var _useTranslation = useTranslation(),
|
|
361
|
+
t = _useTranslation.t;
|
|
362
|
+
var _useDestroyDaily = useDestroyDaily({
|
|
363
|
+
onSuccess: function onSuccess() {
|
|
364
|
+
setIsDisconnectAlertOpen(false);
|
|
365
|
+
onDisconnect === null || onDisconnect === void 0 ? void 0 : onDisconnect();
|
|
366
|
+
}
|
|
367
|
+
}),
|
|
368
|
+
destroyIntegration = _useDestroyDaily.mutate,
|
|
369
|
+
isDisconnecting = _useDestroyDaily.isLoading;
|
|
370
|
+
var handleDisconnect = function handleDisconnect() {
|
|
371
|
+
return destroyIntegration("daily");
|
|
372
|
+
};
|
|
373
|
+
if (isLoading || isDisconnecting) {
|
|
374
|
+
return /*#__PURE__*/React__default.createElement(PageLoader, null);
|
|
375
|
+
}
|
|
376
|
+
if (isNotPresent(apiKey)) {
|
|
377
|
+
onDisconnect === null || onDisconnect === void 0 ? void 0 : onDisconnect();
|
|
378
|
+
}
|
|
379
|
+
return /*#__PURE__*/React__default.createElement(Manage$1, {
|
|
380
|
+
isDisconnectAlertOpen: isDisconnectAlertOpen,
|
|
381
|
+
isDisconnecting: isDisconnecting,
|
|
382
|
+
setIsDisconnectAlertOpen: setIsDisconnectAlertOpen,
|
|
383
|
+
description: t("neetoIntegrations.daily.yourApiKey", {
|
|
384
|
+
apiKey: apiKey
|
|
385
|
+
}),
|
|
386
|
+
integration: "daily",
|
|
387
|
+
title: t("neetoIntegrations.daily.connected"),
|
|
388
|
+
onClose: function onClose() {
|
|
389
|
+
return setIsDisconnectAlertOpen(false);
|
|
390
|
+
},
|
|
391
|
+
onDisconnect: handleDisconnect
|
|
392
|
+
});
|
|
393
|
+
};
|
|
394
|
+
|
|
395
|
+
var Daily = function Daily(_ref) {
|
|
396
|
+
var _ref$isOnboarding = _ref.isOnboarding,
|
|
397
|
+
isOnboarding = _ref$isOnboarding === void 0 ? false : _ref$isOnboarding,
|
|
398
|
+
_ref$helpDocUrl = _ref.helpDocUrl,
|
|
399
|
+
helpDocUrl = _ref$helpDocUrl === void 0 ? "" : _ref$helpDocUrl,
|
|
400
|
+
_ref$videoUrl = _ref.videoUrl,
|
|
401
|
+
videoUrl = _ref$videoUrl === void 0 ? "" : _ref$videoUrl,
|
|
402
|
+
_ref$onConnect = _ref.onConnect,
|
|
403
|
+
onConnect = _ref$onConnect === void 0 ? noop : _ref$onConnect,
|
|
404
|
+
_ref$onDisconnect = _ref.onDisconnect,
|
|
405
|
+
onDisconnect = _ref$onDisconnect === void 0 ? noop : _ref$onDisconnect;
|
|
406
|
+
var _useFetchDaily = useFetchDaily(),
|
|
407
|
+
_useFetchDaily$data = _useFetchDaily.data,
|
|
408
|
+
_useFetchDaily$data2 = _useFetchDaily$data === void 0 ? {} : _useFetchDaily$data,
|
|
409
|
+
_useFetchDaily$data2$ = _useFetchDaily$data2.metadata,
|
|
410
|
+
metadata = _useFetchDaily$data2$ === void 0 ? {} : _useFetchDaily$data2$;
|
|
411
|
+
var _ref2 = metadata || {},
|
|
412
|
+
_ref2$apiKey = _ref2.apiKey,
|
|
413
|
+
apiKey = _ref2$apiKey === void 0 ? null : _ref2$apiKey;
|
|
414
|
+
if (isPresent(apiKey) && !isOnboarding) {
|
|
415
|
+
return /*#__PURE__*/React__default.createElement(Manage, {
|
|
416
|
+
onDisconnect: onDisconnect
|
|
114
417
|
});
|
|
115
|
-
} else {
|
|
116
|
-
obj[key] = value;
|
|
117
418
|
}
|
|
118
|
-
return
|
|
119
|
-
|
|
419
|
+
return /*#__PURE__*/React__default.createElement(Form$1, {
|
|
420
|
+
onConnect: onConnect,
|
|
421
|
+
helpDocUrl: helpDocUrl,
|
|
422
|
+
videoUrl: videoUrl
|
|
423
|
+
});
|
|
424
|
+
};
|
|
425
|
+
var index = withTitle(Daily, i18next.t("neetoIntegrations.browserTitles.integrations.dailyco"));
|
|
426
|
+
|
|
427
|
+
var TWILIO_INTEGRATION_STEPS = [{
|
|
428
|
+
step: "1",
|
|
429
|
+
label: i18next.t("neetoIntegrations.steps.configure"),
|
|
430
|
+
isActive: true,
|
|
431
|
+
isCompleted: false
|
|
432
|
+
}];
|
|
120
433
|
|
|
121
434
|
function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
122
435
|
function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$2(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$2(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
@@ -191,8 +504,6 @@ function _toConsumableArray(arr) {
|
|
|
191
504
|
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
|
|
192
505
|
}
|
|
193
506
|
|
|
194
|
-
var TWILIO_CONFIGURATION_BASE_URL = "/neeto_integrations/twilio/sms_configurations";
|
|
195
|
-
|
|
196
507
|
var twilioApi = {
|
|
197
508
|
fetchTwilioSmsConfiguration: function fetchTwilioSmsConfiguration() {
|
|
198
509
|
return axios.get(TWILIO_CONFIGURATION_BASE_URL);
|
|
@@ -210,11 +521,6 @@ var twilioApi = {
|
|
|
210
521
|
}
|
|
211
522
|
};
|
|
212
523
|
|
|
213
|
-
var QUERY_KEYS = {
|
|
214
|
-
TWILIO_SMS_CONFIGURATION: "twilio-sms-configuration",
|
|
215
|
-
TWILIO_PHONE_NUMBERS: "twilio-phone-numbers"
|
|
216
|
-
};
|
|
217
|
-
|
|
218
524
|
var useFetchTwilioSmsConfiguration = function useFetchTwilioSmsConfiguration() {
|
|
219
525
|
return useQuery(QUERY_KEYS.TWILIO_SMS_CONFIGURATION, twilioApi.fetchTwilioSmsConfiguration, {
|
|
220
526
|
select: function select(response) {
|
|
@@ -401,7 +707,7 @@ var TwilioConfiguration = function TwilioConfiguration(_ref) {
|
|
|
401
707
|
selectedPhoneNumber: selectedPhoneNumber
|
|
402
708
|
});
|
|
403
709
|
};
|
|
404
|
-
return /*#__PURE__*/React__default.createElement(Form, {
|
|
710
|
+
return /*#__PURE__*/React__default.createElement(Form$2, {
|
|
405
711
|
className: "mx-auto flex w-full max-w-md flex-col",
|
|
406
712
|
formikProps: {
|
|
407
713
|
enableReinitialize: true,
|
|
@@ -504,21 +810,6 @@ var Modal = function Modal(_ref) {
|
|
|
504
810
|
}, children)));
|
|
505
811
|
};
|
|
506
812
|
|
|
507
|
-
function _extends$1() {
|
|
508
|
-
_extends$1 = Object.assign ? Object.assign.bind() : function (target) {
|
|
509
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
510
|
-
var source = arguments[i];
|
|
511
|
-
for (var key in source) {
|
|
512
|
-
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
513
|
-
target[key] = source[key];
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
return target;
|
|
518
|
-
};
|
|
519
|
-
return _extends$1.apply(this, arguments);
|
|
520
|
-
}
|
|
521
|
-
|
|
522
813
|
var propTypes = {exports: {}};
|
|
523
814
|
|
|
524
815
|
/**
|
|
@@ -829,5 +1120,5 @@ function n(n, r) {
|
|
|
829
1120
|
var css = ".intrinsic-container{height:0;overflow:hidden;position:relative}.intrinsic-container-16x9{padding-bottom:56.25%}.intrinsic-container-4x3{padding-bottom:75%}.intrinsic-container iframe{height:100%;left:0;position:absolute;top:0;width:100%}";
|
|
830
1121
|
n(css,{});
|
|
831
1122
|
|
|
832
|
-
export { Connect, Demo, Finish, Modal, Twilio };
|
|
1123
|
+
export { Connect, index as Daily, Demo, Finish, Modal, Twilio };
|
|
833
1124
|
//# sourceMappingURL=index.js.map
|