mftsccs-browser 1.1.25-beta → 1.1.27-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.
- package/dist/main.bundle.js +449 -29
- package/dist/main.bundle.js.map +1 -1
- package/dist/serviceWorker.bundle.js +447 -28
- package/dist/serviceWorker.bundle.js.map +1 -1
- package/dist/types/Widgets/BuilderStatefulWidget.d.ts +42 -0
- package/dist/types/Widgets/StatefulWidget.d.ts +4 -1
- package/dist/types/app.d.ts +1 -0
- package/package.json +1 -1
package/dist/main.bundle.js
CHANGED
|
@@ -1427,14 +1427,12 @@ function GetConceptBulk(passedConcepts) {
|
|
|
1427
1427
|
});
|
|
1428
1428
|
if (response.ok) {
|
|
1429
1429
|
result = yield response.json();
|
|
1430
|
-
console.log("got all the concepts", result);
|
|
1431
1430
|
if (result.length > 0) {
|
|
1432
1431
|
for (let i = 0; i < result.length; i++) {
|
|
1433
1432
|
let concept = result[i];
|
|
1434
1433
|
_DataStructures_ConceptData__WEBPACK_IMPORTED_MODULE_0__.ConceptsData.AddConcept(concept);
|
|
1435
1434
|
}
|
|
1436
1435
|
}
|
|
1437
|
-
console.log("added the concepts");
|
|
1438
1436
|
}
|
|
1439
1437
|
else {
|
|
1440
1438
|
console.log("Get Concept Bulk error", response.status);
|
|
@@ -7745,11 +7743,11 @@ class LocalSyncData {
|
|
|
7745
7743
|
this.connectionSyncArray = this.connectionSyncArray.filter(connection => !actions.connections.some(conn => connection.id == conn.id || connection.ghostId == conn.ghostId));
|
|
7746
7744
|
}
|
|
7747
7745
|
else {
|
|
7748
|
-
console.
|
|
7746
|
+
console.warn('Syncing this way has been Depreceted in service worker.');
|
|
7749
7747
|
console.info('Only if serive worker is not running');
|
|
7750
7748
|
conceptsArray = this.conceptsSyncArray.slice();
|
|
7751
7749
|
connectionsArray = this.connectionSyncArray.slice();
|
|
7752
|
-
return []
|
|
7750
|
+
// return []
|
|
7753
7751
|
}
|
|
7754
7752
|
this.connectionSyncArray = [];
|
|
7755
7753
|
this.conceptsSyncArray = [];
|
|
@@ -16088,7 +16086,6 @@ function FormatFromConnectionsAlteredArrayExternal(connections_1, compositionDat
|
|
|
16088
16086
|
}
|
|
16089
16087
|
}
|
|
16090
16088
|
}
|
|
16091
|
-
console.log("these are the main datas", compositionData);
|
|
16092
16089
|
for (let i = 0; i < mainComposition.length; i++) {
|
|
16093
16090
|
let mymainData = {};
|
|
16094
16091
|
mymainData["id"] = mainComposition[i];
|
|
@@ -17169,9 +17166,7 @@ function formatConnections(linkers, conceptIds, mainCompositionIds, reverse) {
|
|
|
17169
17166
|
let compositionData = [];
|
|
17170
17167
|
let newCompositionData = [];
|
|
17171
17168
|
compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.formatFunction)(prefetchConnections, compositionData, reverse);
|
|
17172
|
-
console.log("this is the format normal builders BEFORE", compositionData);
|
|
17173
17169
|
compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.formatFunctionForData)(prefetchConnections, compositionData, reverse);
|
|
17174
|
-
console.log("this is the format normal builders", compositionData);
|
|
17175
17170
|
let output = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatConceptsAndConnectionsNormalList)(prefetchConnections, compositionData, mainCompositionIds, newCompositionData, reverse);
|
|
17176
17171
|
return output;
|
|
17177
17172
|
});
|
|
@@ -17192,9 +17187,7 @@ function formatConnectionsDataId(linkers, conceptIds, mainCompositionIds, revers
|
|
|
17192
17187
|
let compositionData = [];
|
|
17193
17188
|
let newCompositionData = [];
|
|
17194
17189
|
compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFunctionData)(prefetchConnections, compositionData, reverse);
|
|
17195
|
-
console.log("this is the format data builders BEFORE", compositionData);
|
|
17196
17190
|
compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFunctionDataForData)(prefetchConnections, compositionData, reverse);
|
|
17197
|
-
console.log("this is the format data builders", compositionData);
|
|
17198
17191
|
let output = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFromConnectionsAlteredArrayExternal)(prefetchConnections, compositionData, newCompositionData, mainCompositionIds, reverse);
|
|
17199
17192
|
return output;
|
|
17200
17193
|
});
|
|
@@ -18070,6 +18063,413 @@ class BaseWidget extends _BaseObserver__WEBPACK_IMPORTED_MODULE_0__.BaseObserver
|
|
|
18070
18063
|
}
|
|
18071
18064
|
|
|
18072
18065
|
|
|
18066
|
+
/***/ }),
|
|
18067
|
+
|
|
18068
|
+
/***/ "./src/Widgets/BuilderStatefulWidget.ts":
|
|
18069
|
+
/*!**********************************************!*\
|
|
18070
|
+
!*** ./src/Widgets/BuilderStatefulWidget.ts ***!
|
|
18071
|
+
\**********************************************/
|
|
18072
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
18073
|
+
|
|
18074
|
+
__webpack_require__.r(__webpack_exports__);
|
|
18075
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18076
|
+
/* harmony export */ BuilderStatefulWidget: () => (/* binding */ BuilderStatefulWidget)
|
|
18077
|
+
/* harmony export */ });
|
|
18078
|
+
/* harmony import */ var _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./StatefulWidget */ "./src/Widgets/StatefulWidget.ts");
|
|
18079
|
+
/* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../app */ "./src/app.ts");
|
|
18080
|
+
/* harmony import */ var _Services_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Services/Common/ErrorPosting */ "./src/Services/Common/ErrorPosting.ts");
|
|
18081
|
+
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18082
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
18083
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
18084
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
18085
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
18086
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
18087
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
18088
|
+
});
|
|
18089
|
+
};
|
|
18090
|
+
|
|
18091
|
+
|
|
18092
|
+
|
|
18093
|
+
|
|
18094
|
+
class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__.StatefulWidget {
|
|
18095
|
+
constructor() {
|
|
18096
|
+
super(...arguments);
|
|
18097
|
+
this.childComponents = [];
|
|
18098
|
+
this.elementIdentifier = 0;
|
|
18099
|
+
this.componentMounted = false;
|
|
18100
|
+
this.parentElement = "";
|
|
18101
|
+
this.oldHtml = null;
|
|
18102
|
+
// subscribers: any = [];
|
|
18103
|
+
this.element = null;
|
|
18104
|
+
this.phonebooks = [];
|
|
18105
|
+
this.html = "";
|
|
18106
|
+
this.childWidgets = [];
|
|
18107
|
+
this.typeValueList = [];
|
|
18108
|
+
this.widgetType = "the_element_name";
|
|
18109
|
+
this.parentConceptList = [];
|
|
18110
|
+
}
|
|
18111
|
+
getWidgetCodeFromId(widgetId, token) {
|
|
18112
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18113
|
+
//console.log("getWidgetCodeFromId", widgetId, token);
|
|
18114
|
+
return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () {
|
|
18115
|
+
try {
|
|
18116
|
+
let searchFirst = new _app__WEBPACK_IMPORTED_MODULE_1__.SearchQuery();
|
|
18117
|
+
searchFirst.composition = widgetId;
|
|
18118
|
+
searchFirst.fullLinkers = [
|
|
18119
|
+
"the_widgetcode",
|
|
18120
|
+
"the_widgetcode_widget",
|
|
18121
|
+
"the_widgetcode_name",
|
|
18122
|
+
"the_widgetcode_html",
|
|
18123
|
+
"the_widgetcode_css",
|
|
18124
|
+
"the_widgetcode_js",
|
|
18125
|
+
"the_widgetcode_timestamp",
|
|
18126
|
+
"the_widgetcode_typevalue",
|
|
18127
|
+
"the_widgetcode_addevent",
|
|
18128
|
+
"the_widgetcode_onmount",
|
|
18129
|
+
"the_widgetcode_onupdate",
|
|
18130
|
+
"the_widgetcode_mountChildWidgets",
|
|
18131
|
+
"the_widgetcode_cleanhtml",
|
|
18132
|
+
"the_widgetcode_s_child",
|
|
18133
|
+
];
|
|
18134
|
+
searchFirst.inpage = 100;
|
|
18135
|
+
let searchSecond = new _app__WEBPACK_IMPORTED_MODULE_1__.SearchQuery();
|
|
18136
|
+
searchSecond.fullLinkers = [
|
|
18137
|
+
"the_childwidget",
|
|
18138
|
+
"the_childwidget_typevalue",
|
|
18139
|
+
"the_childwidget_widget",
|
|
18140
|
+
"the_childwidget_wrapperId",
|
|
18141
|
+
];
|
|
18142
|
+
searchSecond.inpage = 100;
|
|
18143
|
+
const queryParams = [searchFirst, searchSecond];
|
|
18144
|
+
const output = yield (0,_app__WEBPACK_IMPORTED_MODULE_1__.SearchLinkMultipleAll)(queryParams, token);
|
|
18145
|
+
//console.log("getWidgetCodeFromId output ->", output);
|
|
18146
|
+
resolve(output);
|
|
18147
|
+
return output;
|
|
18148
|
+
}
|
|
18149
|
+
catch (error) {
|
|
18150
|
+
console.error("error", error);
|
|
18151
|
+
if ((error === null || error === void 0 ? void 0 : error.status) === 401) {
|
|
18152
|
+
(0,_Services_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_2__.HandleHttpError)(error === null || error === void 0 ? void 0 : error.response);
|
|
18153
|
+
}
|
|
18154
|
+
reject(error);
|
|
18155
|
+
}
|
|
18156
|
+
}));
|
|
18157
|
+
});
|
|
18158
|
+
}
|
|
18159
|
+
getUserId() {
|
|
18160
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18161
|
+
const profileData = yield new Promise((resolve) => {
|
|
18162
|
+
let dataFromLocalStorage = (localStorage === null || localStorage === void 0 ? void 0 : localStorage.getItem("profile")) || "";
|
|
18163
|
+
if (dataFromLocalStorage) {
|
|
18164
|
+
const profileData = JSON.parse(dataFromLocalStorage);
|
|
18165
|
+
resolve(profileData);
|
|
18166
|
+
}
|
|
18167
|
+
else {
|
|
18168
|
+
resolve();
|
|
18169
|
+
}
|
|
18170
|
+
});
|
|
18171
|
+
const userId = profileData === null || profileData === void 0 ? void 0 : profileData.userId;
|
|
18172
|
+
return userId;
|
|
18173
|
+
});
|
|
18174
|
+
}
|
|
18175
|
+
getTypeValueList() {
|
|
18176
|
+
return __awaiter(this, arguments, void 0, function* (typeName = "") {
|
|
18177
|
+
return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {
|
|
18178
|
+
typeName = this.widgetType;
|
|
18179
|
+
// typeName e.g. "the_element_name"
|
|
18180
|
+
const match = typeName === null || typeName === void 0 ? void 0 : typeName.match(/^[a-z0-9]+_[a-z0-9]+/i);
|
|
18181
|
+
const mainComposition = match ? match[0] : "";
|
|
18182
|
+
// Output: "the_element"
|
|
18183
|
+
const nextMatch = typeName === null || typeName === void 0 ? void 0 : typeName.match(/^([a-z0-9]+).*_([a-z0-9]+)$/i);
|
|
18184
|
+
const typevalueKey = nextMatch ? `${nextMatch[1]}_${nextMatch[2]}` : "";
|
|
18185
|
+
// Output: "the_name"
|
|
18186
|
+
// const profileData: any = await getLocalStorageProfileData();
|
|
18187
|
+
// const token = profileData?.token;
|
|
18188
|
+
// const userId = profileData?.userId;
|
|
18189
|
+
// const compositionSerach: tsccs.SearchStructure = {
|
|
18190
|
+
// type: "",
|
|
18191
|
+
// search: "",
|
|
18192
|
+
// // composition: "the_element",
|
|
18193
|
+
// composition: mainComposition,
|
|
18194
|
+
// internalComposition: "",
|
|
18195
|
+
// userId: userId,
|
|
18196
|
+
// inpage: 100,
|
|
18197
|
+
// page: 1,
|
|
18198
|
+
// auth: true,
|
|
18199
|
+
// };
|
|
18200
|
+
// let searchFirst = new tsccs.SearchQuery();
|
|
18201
|
+
// // searchFirst.type = "the_element_name";
|
|
18202
|
+
// // searchFirst.fullLinkers = ["the_element_name"];
|
|
18203
|
+
// searchFirst.type = typeName;
|
|
18204
|
+
// searchFirst.fullLinkers = [typeName];
|
|
18205
|
+
// searchFirst.inpage = 100;
|
|
18206
|
+
// const queryParams = [searchFirst];
|
|
18207
|
+
// tsccs
|
|
18208
|
+
// .GetLinkListListener(
|
|
18209
|
+
// compositionSerach,
|
|
18210
|
+
// queryParams,
|
|
18211
|
+
// token,
|
|
18212
|
+
// tsccs.NORMAL
|
|
18213
|
+
// )
|
|
18214
|
+
// .subscribe((output: any) => {
|
|
18215
|
+
// if (output?.length) {
|
|
18216
|
+
// const result = output?.map((item: any, index: number) => {
|
|
18217
|
+
// const itemName =
|
|
18218
|
+
// item[mainComposition][typeName]?.[0]?.[typevalueKey];
|
|
18219
|
+
// return {
|
|
18220
|
+
// id: index,
|
|
18221
|
+
// name: itemName,
|
|
18222
|
+
// text: itemName,
|
|
18223
|
+
// };
|
|
18224
|
+
// });
|
|
18225
|
+
// this.typeValueList = result;
|
|
18226
|
+
// resolve(this.typeValueList);
|
|
18227
|
+
// return result;
|
|
18228
|
+
// }
|
|
18229
|
+
// });
|
|
18230
|
+
// NEW SEARCH WITH FILTER
|
|
18231
|
+
// filters
|
|
18232
|
+
let filters = [];
|
|
18233
|
+
let filter = new _app__WEBPACK_IMPORTED_MODULE_1__.FilterSearch();
|
|
18234
|
+
// filter.type = "the_email";
|
|
18235
|
+
filter.type = typevalueKey;
|
|
18236
|
+
filter.search = "1";
|
|
18237
|
+
filter.logicoperator = ">";
|
|
18238
|
+
filter.name = "emailfilter";
|
|
18239
|
+
filter.operateon = "entityEmail";
|
|
18240
|
+
filter.composition = false;
|
|
18241
|
+
filters.push(filter);
|
|
18242
|
+
let emailQuery = new _app__WEBPACK_IMPORTED_MODULE_1__.FreeschemaQuery();
|
|
18243
|
+
// emailQuery.typeConnection = "the_entity_email";
|
|
18244
|
+
emailQuery.typeConnection = typeName;
|
|
18245
|
+
emailQuery.name = "entityEmail";
|
|
18246
|
+
let freeschemaQuery = new _app__WEBPACK_IMPORTED_MODULE_1__.FreeschemaQuery();
|
|
18247
|
+
// freeschemaQuery.type = "the_entity",
|
|
18248
|
+
(freeschemaQuery.type = mainComposition),
|
|
18249
|
+
(freeschemaQuery.filterLogic = "( emailfilter )");
|
|
18250
|
+
freeschemaQuery.filters = filters;
|
|
18251
|
+
freeschemaQuery.name = "top";
|
|
18252
|
+
freeschemaQuery.inpage = 100;
|
|
18253
|
+
freeschemaQuery.freeschemaQueries = [emailQuery];
|
|
18254
|
+
freeschemaQuery.outputFormat = _app__WEBPACK_IMPORTED_MODULE_1__.DATAID;
|
|
18255
|
+
(0,_app__WEBPACK_IMPORTED_MODULE_1__.SchemaQueryListener)(freeschemaQuery, "")
|
|
18256
|
+
.subscribe((output) => {
|
|
18257
|
+
console.log("thgis is the output", output);
|
|
18258
|
+
console.log("this is the typeValuekey", typevalueKey, typeName, mainComposition);
|
|
18259
|
+
if (output === null || output === void 0 ? void 0 : output.length) {
|
|
18260
|
+
const result = output === null || output === void 0 ? void 0 : output.map((item) => {
|
|
18261
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
18262
|
+
const itemName = (_d = (_c = (_b = (_a = item.data) === null || _a === void 0 ? void 0 : _a[mainComposition]) === null || _b === void 0 ? void 0 : _b[typeName]) === null || _c === void 0 ? void 0 : _c.data) === null || _d === void 0 ? void 0 : _d[typevalueKey];
|
|
18263
|
+
const itemId = (_g = (_f = (_e = item.data) === null || _e === void 0 ? void 0 : _e[mainComposition]) === null || _f === void 0 ? void 0 : _f[typeName]) === null || _g === void 0 ? void 0 : _g.id;
|
|
18264
|
+
return {
|
|
18265
|
+
id: itemId,
|
|
18266
|
+
name: itemName,
|
|
18267
|
+
text: itemName,
|
|
18268
|
+
};
|
|
18269
|
+
});
|
|
18270
|
+
//console.log("result =>", result);
|
|
18271
|
+
this.typeValueList = result;
|
|
18272
|
+
resolve(this.typeValueList);
|
|
18273
|
+
return result;
|
|
18274
|
+
}
|
|
18275
|
+
});
|
|
18276
|
+
}));
|
|
18277
|
+
});
|
|
18278
|
+
}
|
|
18279
|
+
setTitle(title) {
|
|
18280
|
+
document.title = title;
|
|
18281
|
+
}
|
|
18282
|
+
getHtml() {
|
|
18283
|
+
return this.html;
|
|
18284
|
+
}
|
|
18285
|
+
createRandomNumber() {
|
|
18286
|
+
this.elementIdentifier = Math.random() * 10000;
|
|
18287
|
+
return this.elementIdentifier;
|
|
18288
|
+
}
|
|
18289
|
+
mountChildWidgets() {
|
|
18290
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18291
|
+
const AsyncFunction = Object.getPrototypeOf(function () {
|
|
18292
|
+
return __awaiter(this, void 0, void 0, function* () { });
|
|
18293
|
+
}).constructor;
|
|
18294
|
+
const renderOnmount = AsyncFunction("tsccs", this.mountChildWidgetsFunction);
|
|
18295
|
+
renderOnmount.call(this, _app__WEBPACK_IMPORTED_MODULE_1__);
|
|
18296
|
+
});
|
|
18297
|
+
}
|
|
18298
|
+
setProperty(widgetTypeName) {
|
|
18299
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18300
|
+
this.widgetType = widgetTypeName;
|
|
18301
|
+
this.getTypeValueList(this.widgetType).then(() => {
|
|
18302
|
+
var _a, _b, _c;
|
|
18303
|
+
(_a = this.element) === null || _a === void 0 ? void 0 : _a.setAttribute("data-type-value", this.widgetType);
|
|
18304
|
+
(_c = (_b = this.element) === null || _b === void 0 ? void 0 : _b.parentElement) === null || _c === void 0 ? void 0 : _c.setAttribute("data-type-value", this.widgetType);
|
|
18305
|
+
this.render();
|
|
18306
|
+
});
|
|
18307
|
+
return this;
|
|
18308
|
+
});
|
|
18309
|
+
}
|
|
18310
|
+
createTypeEditor(event) {
|
|
18311
|
+
if (event) {
|
|
18312
|
+
const inputVal = document.querySelector("#widget-properties .flex-column");
|
|
18313
|
+
console.log("This is the input val container", inputVal);
|
|
18314
|
+
const existedInputEl = inputVal === null || inputVal === void 0 ? void 0 : inputVal.querySelectorAll("input");
|
|
18315
|
+
existedInputEl === null || existedInputEl === void 0 ? void 0 : existedInputEl.forEach((inputItem) => {
|
|
18316
|
+
inputItem === null || inputItem === void 0 ? void 0 : inputItem.remove();
|
|
18317
|
+
});
|
|
18318
|
+
// const elementParent = event.target?.closest(".added-widget-container");
|
|
18319
|
+
// const elementDivParent = event.target?.closest("div");
|
|
18320
|
+
let typeValue = this.widgetType;
|
|
18321
|
+
// if (elementParent) {
|
|
18322
|
+
// typeValue = elementParent?.getAttribute("data-type-value");
|
|
18323
|
+
// } else if (elementDivParent) {
|
|
18324
|
+
// typeValue = elementDivParent?.getAttribute("data-type-value");
|
|
18325
|
+
// }
|
|
18326
|
+
const inputEl = document.createElement("input");
|
|
18327
|
+
inputEl.setAttribute("type", "text");
|
|
18328
|
+
inputEl.setAttribute("name", "input-widgetTypeValue");
|
|
18329
|
+
inputEl.setAttribute("of", this.elementIdentifier.toString());
|
|
18330
|
+
inputEl.setAttribute("class", "form-control");
|
|
18331
|
+
inputEl.setAttribute("id", "widgetTypeValue");
|
|
18332
|
+
if (typeValue) {
|
|
18333
|
+
inputEl.value = this.widgetType;
|
|
18334
|
+
}
|
|
18335
|
+
else {
|
|
18336
|
+
inputEl.setAttribute("placeholder", "e.g. the_entity_type");
|
|
18337
|
+
}
|
|
18338
|
+
let that = this;
|
|
18339
|
+
inputEl.onchange = function (event) {
|
|
18340
|
+
var _a;
|
|
18341
|
+
event.preventDefault();
|
|
18342
|
+
event.stopPropagation();
|
|
18343
|
+
//console.log("THAT ->", that);
|
|
18344
|
+
const inputValue = (_a = event === null || event === void 0 ? void 0 : event.target) === null || _a === void 0 ? void 0 : _a.value;
|
|
18345
|
+
console.log("this is the input change", inputValue);
|
|
18346
|
+
that.widgetType = inputValue;
|
|
18347
|
+
//console.log("inputValue", inputValue);
|
|
18348
|
+
//that.setProperty(inputValue);
|
|
18349
|
+
that.componentDidMount();
|
|
18350
|
+
that.mountChildWidgets();
|
|
18351
|
+
};
|
|
18352
|
+
inputVal === null || inputVal === void 0 ? void 0 : inputVal.appendChild(inputEl);
|
|
18353
|
+
}
|
|
18354
|
+
}
|
|
18355
|
+
/**
|
|
18356
|
+
*
|
|
18357
|
+
* @param parent This is the function that creates a new div and then mounts the html element to the parent.
|
|
18358
|
+
*/
|
|
18359
|
+
mount(parent) {
|
|
18360
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18361
|
+
//console.log('mount parent',)
|
|
18362
|
+
if (parent) {
|
|
18363
|
+
this.element = document.createElement("div");
|
|
18364
|
+
let that = this;
|
|
18365
|
+
this.element.onclick = function (event) {
|
|
18366
|
+
event.preventDefault();
|
|
18367
|
+
event.stopPropagation();
|
|
18368
|
+
that.createTypeEditor(event);
|
|
18369
|
+
};
|
|
18370
|
+
this.element.id = this.createWidgetWrapperIdentifier();
|
|
18371
|
+
this.element.className = "p-2";
|
|
18372
|
+
this.element.innerHTML = this.getHtml();
|
|
18373
|
+
parent.appendChild(this.element);
|
|
18374
|
+
this.childWidgetElement = this.getElementByClassName("added-widget-container");
|
|
18375
|
+
this.parentElement = parent.id;
|
|
18376
|
+
if (this.componentMounted == false || this.widgetMounted == false) {
|
|
18377
|
+
// Simulate componentDidMount by calling it after the component is inserted into the DOM
|
|
18378
|
+
this.componentDidMount();
|
|
18379
|
+
this.mountChildWidgets();
|
|
18380
|
+
this.widgetMounted = true;
|
|
18381
|
+
this.componentMounted = true;
|
|
18382
|
+
}
|
|
18383
|
+
else {
|
|
18384
|
+
this.render();
|
|
18385
|
+
}
|
|
18386
|
+
}
|
|
18387
|
+
});
|
|
18388
|
+
}
|
|
18389
|
+
/**
|
|
18390
|
+
* This function will be called after the component mounts.
|
|
18391
|
+
*/
|
|
18392
|
+
componentDidMount(onmountVal = "") {
|
|
18393
|
+
//console.log("onmountVal", onmountVal);
|
|
18394
|
+
const AsyncFunction = Object.getPrototypeOf(function () {
|
|
18395
|
+
return __awaiter(this, void 0, void 0, function* () { });
|
|
18396
|
+
}).constructor;
|
|
18397
|
+
const renderOnmount = AsyncFunction("tsccs", this.componentDidMountFunction);
|
|
18398
|
+
renderOnmount.call(this, _app__WEBPACK_IMPORTED_MODULE_1__);
|
|
18399
|
+
}
|
|
18400
|
+
addEvents() {
|
|
18401
|
+
const AsyncFunction = Object.getPrototypeOf(function () {
|
|
18402
|
+
return __awaiter(this, void 0, void 0, function* () { });
|
|
18403
|
+
}).constructor;
|
|
18404
|
+
const renderOnmount = AsyncFunction("tsccs", this.addEventFunction);
|
|
18405
|
+
renderOnmount.call(this, _app__WEBPACK_IMPORTED_MODULE_1__);
|
|
18406
|
+
}
|
|
18407
|
+
getWidgetClassFunction(widgetId) {
|
|
18408
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18409
|
+
return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {
|
|
18410
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4;
|
|
18411
|
+
const profileData = yield new Promise((resolve2) => {
|
|
18412
|
+
let dataFromLocalStorage = (localStorage === null || localStorage === void 0 ? void 0 : localStorage.getItem("profile")) || "";
|
|
18413
|
+
if (dataFromLocalStorage) {
|
|
18414
|
+
const profileData = JSON.parse(dataFromLocalStorage);
|
|
18415
|
+
resolve2(profileData);
|
|
18416
|
+
}
|
|
18417
|
+
else {
|
|
18418
|
+
resolve2();
|
|
18419
|
+
}
|
|
18420
|
+
});
|
|
18421
|
+
const token = profileData === null || profileData === void 0 ? void 0 : profileData.token;
|
|
18422
|
+
let output = yield this.getWidgetCodeFromId(widgetId, token);
|
|
18423
|
+
const widgetInfo = (_a = output === null || output === void 0 ? void 0 : output.data) === null || _a === void 0 ? void 0 : _a.the_widgetcode;
|
|
18424
|
+
const widgetName = (_d = (_c = (_b = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_name) === null || _b === void 0 ? void 0 : _b[0]) === null || _c === void 0 ? void 0 : _c.data) === null || _d === void 0 ? void 0 : _d.the_name;
|
|
18425
|
+
const widgetHTML = (_g = (_f = (_e = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_html) === null || _e === void 0 ? void 0 : _e[0]) === null || _f === void 0 ? void 0 : _f.data) === null || _g === void 0 ? void 0 : _g.the_html;
|
|
18426
|
+
const widgetCSS = (_k = (_j = (_h = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_css) === null || _h === void 0 ? void 0 : _h[0]) === null || _j === void 0 ? void 0 : _j.data) === null || _k === void 0 ? void 0 : _k.the_css;
|
|
18427
|
+
const widgetJS = (_o = (_m = (_l = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_js) === null || _l === void 0 ? void 0 : _l[0]) === null || _m === void 0 ? void 0 : _m.data) === null || _o === void 0 ? void 0 : _o.the_js;
|
|
18428
|
+
const widgetTimestamp = (_r = (_q = (_p = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_timestamp) === null || _p === void 0 ? void 0 : _p[0]) === null || _q === void 0 ? void 0 : _q.data) === null || _r === void 0 ? void 0 : _r.the_timestamp;
|
|
18429
|
+
const widgetPackageId = (_s = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_widget) === null || _s === void 0 ? void 0 : _s[0].id;
|
|
18430
|
+
const widgetAddEvent = (_v = (_u = (_t = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_addevent) === null || _t === void 0 ? void 0 : _t[0]) === null || _u === void 0 ? void 0 : _u.data) === null || _v === void 0 ? void 0 : _v.the_addevent;
|
|
18431
|
+
const widgetOnmount = (_y = (_x = (_w = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_onmount) === null || _w === void 0 ? void 0 : _w[0]) === null || _x === void 0 ? void 0 : _x.data) === null || _y === void 0 ? void 0 : _y.the_onmount;
|
|
18432
|
+
const widgetOnupdate = (_1 = (_0 = (_z = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_onupdate) === null || _z === void 0 ? void 0 : _z[0]) === null || _0 === void 0 ? void 0 : _0.data) === null || _1 === void 0 ? void 0 : _1.the_onupdate;
|
|
18433
|
+
const widgetMountChildWidgets = (_4 = (_3 = (_2 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_mountChildWidgets) === null || _2 === void 0 ? void 0 : _2[0]) === null || _3 === void 0 ? void 0 : _3.data) === null || _4 === void 0 ? void 0 : _4.the_mountChildWidgets;
|
|
18434
|
+
const widgetData = {
|
|
18435
|
+
id: output === null || output === void 0 ? void 0 : output.id,
|
|
18436
|
+
name: widgetName,
|
|
18437
|
+
html: widgetHTML,
|
|
18438
|
+
css: widgetCSS,
|
|
18439
|
+
js: widgetJS,
|
|
18440
|
+
timestamp: widgetTimestamp,
|
|
18441
|
+
widgetId: widgetPackageId,
|
|
18442
|
+
addevent: widgetAddEvent,
|
|
18443
|
+
onmount: widgetOnmount,
|
|
18444
|
+
onupdate: widgetOnupdate,
|
|
18445
|
+
mountChildWidgets: widgetMountChildWidgets,
|
|
18446
|
+
};
|
|
18447
|
+
const widgetInstance = new BuilderStatefulWidget();
|
|
18448
|
+
widgetInstance.html = widgetData === null || widgetData === void 0 ? void 0 : widgetData.html;
|
|
18449
|
+
widgetInstance.componentDidMountFunction = widgetData === null || widgetData === void 0 ? void 0 : widgetData.onmount;
|
|
18450
|
+
widgetInstance.addEventFunction = widgetData === null || widgetData === void 0 ? void 0 : widgetData.addevent;
|
|
18451
|
+
widgetInstance.mountChildWidgetsFunction = widgetData === null || widgetData === void 0 ? void 0 : widgetData.mountChildWidgets;
|
|
18452
|
+
resolve(widgetInstance);
|
|
18453
|
+
}));
|
|
18454
|
+
});
|
|
18455
|
+
}
|
|
18456
|
+
CreateConnectionBetweenEntityLocal(concept1Data, concept2Data, linker) {
|
|
18457
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18458
|
+
var _a;
|
|
18459
|
+
const userId = concept1Data.userId;
|
|
18460
|
+
const sessionInformationId = 999;
|
|
18461
|
+
const sessionInformationUserId = 999;
|
|
18462
|
+
const prefix = (_a = concept1Data.type) === null || _a === void 0 ? void 0 : _a.characterValue;
|
|
18463
|
+
const linkerAdd = linker;
|
|
18464
|
+
const forwardLinker = prefix + "_" + linkerAdd;
|
|
18465
|
+
const connectionConcept = yield (0,_app__WEBPACK_IMPORTED_MODULE_1__.MakeTheTypeConceptLocal)(forwardLinker, sessionInformationId, sessionInformationUserId, userId);
|
|
18466
|
+
yield (0,_app__WEBPACK_IMPORTED_MODULE_1__.CreateTheConnectionLocal)(concept1Data.id, concept2Data.id, connectionConcept.id, 1000);
|
|
18467
|
+
return "connection created";
|
|
18468
|
+
});
|
|
18469
|
+
}
|
|
18470
|
+
}
|
|
18471
|
+
|
|
18472
|
+
|
|
18073
18473
|
/***/ }),
|
|
18074
18474
|
|
|
18075
18475
|
/***/ "./src/Widgets/StatefulWidget.ts":
|
|
@@ -18104,6 +18504,7 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
18104
18504
|
* These are the child widgets that need to be added to this widget
|
|
18105
18505
|
*/
|
|
18106
18506
|
this.childWidgets = [];
|
|
18507
|
+
this.childWidgetElement = [];
|
|
18107
18508
|
/**
|
|
18108
18509
|
* This is the id of the parentElement of this widget.
|
|
18109
18510
|
*/
|
|
@@ -18113,6 +18514,9 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
18113
18514
|
*/
|
|
18114
18515
|
this.element = null;
|
|
18115
18516
|
}
|
|
18517
|
+
getElement() {
|
|
18518
|
+
return this.element;
|
|
18519
|
+
}
|
|
18116
18520
|
setTitle(title) {
|
|
18117
18521
|
document.title = title;
|
|
18118
18522
|
}
|
|
@@ -18169,6 +18573,7 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
18169
18573
|
if (this.element) {
|
|
18170
18574
|
this.element.innerHTML = this.getHtml();
|
|
18171
18575
|
}
|
|
18576
|
+
//console.log("added-widget-container",this.childWidgetElement);
|
|
18172
18577
|
// addEvents is called after the element has been mounted.
|
|
18173
18578
|
this.addEvents();
|
|
18174
18579
|
// then after the child widgets are again loaded.
|
|
@@ -18176,10 +18581,21 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
18176
18581
|
this.loadChildWidgets();
|
|
18177
18582
|
}
|
|
18178
18583
|
}
|
|
18584
|
+
getElementByClassName(identifier) {
|
|
18585
|
+
let element = this.getComponent();
|
|
18586
|
+
if (element) {
|
|
18587
|
+
let myelement = element === null || element === void 0 ? void 0 : element.querySelectorAll('.' + identifier);
|
|
18588
|
+
console.log("this is the element", element, myelement, identifier);
|
|
18589
|
+
return myelement;
|
|
18590
|
+
}
|
|
18591
|
+
return [];
|
|
18592
|
+
}
|
|
18179
18593
|
/**
|
|
18180
18594
|
* This is the function that needs to be called.
|
|
18181
18595
|
*/
|
|
18182
18596
|
mountChildWidgets() {
|
|
18597
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18598
|
+
});
|
|
18183
18599
|
}
|
|
18184
18600
|
/**
|
|
18185
18601
|
*
|
|
@@ -18193,7 +18609,7 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
18193
18609
|
// assign an identifier to the element so that it does not conflict with others.
|
|
18194
18610
|
this.element.id = this.createWidgetWrapperIdentifier();
|
|
18195
18611
|
// then assign the html to the element.
|
|
18196
|
-
this.element.innerHTML =
|
|
18612
|
+
this.element.innerHTML = this.getHtml();
|
|
18197
18613
|
// mount the div with unique identifier to the parent element.
|
|
18198
18614
|
parent.appendChild(this.element);
|
|
18199
18615
|
// also save in the widget its parent identifier.
|
|
@@ -19243,9 +19659,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19243
19659
|
/* harmony export */ ADMIN: () => (/* reexport safe */ _Constants_AccessConstants__WEBPACK_IMPORTED_MODULE_66__.ADMIN),
|
|
19244
19660
|
/* harmony export */ ALLID: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_65__.ALLID),
|
|
19245
19661
|
/* harmony export */ AddGhostConcept: () => (/* reexport safe */ _Services_User_UserTranslation__WEBPACK_IMPORTED_MODULE_50__.AddGhostConcept),
|
|
19246
|
-
/* harmony export */ Anomaly: () => (/* reexport safe */
|
|
19662
|
+
/* harmony export */ Anomaly: () => (/* reexport safe */ _Anomaly_anomaly__WEBPACK_IMPORTED_MODULE_103__.Anomaly),
|
|
19247
19663
|
/* harmony export */ BaseUrl: () => (/* reexport safe */ _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_98__.BaseUrl),
|
|
19248
19664
|
/* harmony export */ BinaryTree: () => (/* reexport safe */ _DataStructures_BinaryTree__WEBPACK_IMPORTED_MODULE_83__.BinaryTree),
|
|
19665
|
+
/* harmony export */ BuilderStatefulWidget: () => (/* reexport safe */ _Widgets_BuilderStatefulWidget__WEBPACK_IMPORTED_MODULE_101__.BuilderStatefulWidget),
|
|
19249
19666
|
/* harmony export */ Composition: () => (/* reexport safe */ _DataStructures_Composition_Composition__WEBPACK_IMPORTED_MODULE_87__.Composition),
|
|
19250
19667
|
/* harmony export */ CompositionBinaryTree: () => (/* reexport safe */ _DataStructures_Composition_CompositionBinaryTree__WEBPACK_IMPORTED_MODULE_88__.CompositionBinaryTree),
|
|
19251
19668
|
/* harmony export */ CompositionNode: () => (/* reexport safe */ _DataStructures_Composition_CompositionNode__WEBPACK_IMPORTED_MODULE_89__.CompositionNode),
|
|
@@ -19272,13 +19689,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19272
19689
|
/* harmony export */ DeleteConceptById: () => (/* reexport safe */ _Services_DeleteConcept__WEBPACK_IMPORTED_MODULE_24__.DeleteConceptById),
|
|
19273
19690
|
/* harmony export */ DeleteConceptLocal: () => (/* reexport safe */ _Services_Local_DeleteConceptLocal__WEBPACK_IMPORTED_MODULE_61__.DeleteConceptLocal),
|
|
19274
19691
|
/* harmony export */ DeleteConnectionById: () => (/* reexport safe */ _Services_DeleteConnection__WEBPACK_IMPORTED_MODULE_25__.DeleteConnectionById),
|
|
19275
|
-
/* harmony export */ DeleteConnectionByType: () => (/* reexport safe */
|
|
19692
|
+
/* harmony export */ DeleteConnectionByType: () => (/* reexport safe */ _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_107__.DeleteConnectionByType),
|
|
19276
19693
|
/* harmony export */ DependencyObserver: () => (/* reexport safe */ _WrapperFunctions_DepenedencyObserver__WEBPACK_IMPORTED_MODULE_68__.DependencyObserver),
|
|
19277
19694
|
/* harmony export */ FilterSearch: () => (/* reexport safe */ _DataStructures_FilterSearch__WEBPACK_IMPORTED_MODULE_92__.FilterSearch),
|
|
19278
19695
|
/* harmony export */ FormatFromConnections: () => (/* reexport safe */ _Services_Search_SearchLinkMultiple__WEBPACK_IMPORTED_MODULE_51__.FormatFromConnections),
|
|
19279
19696
|
/* harmony export */ FormatFromConnectionsAltered: () => (/* reexport safe */ _Services_Search_SearchLinkMultiple__WEBPACK_IMPORTED_MODULE_51__.FormatFromConnectionsAltered),
|
|
19280
|
-
/* harmony export */ FreeschemaQuery: () => (/* reexport safe */
|
|
19281
|
-
/* harmony export */ FreeschemaQueryApi: () => (/* reexport safe */
|
|
19697
|
+
/* harmony export */ FreeschemaQuery: () => (/* reexport safe */ _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_108__.FreeschemaQuery),
|
|
19698
|
+
/* harmony export */ FreeschemaQueryApi: () => (/* reexport safe */ _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_109__.FreeschemaQueryApi),
|
|
19282
19699
|
/* harmony export */ GetAllConnectionsOfComposition: () => (/* reexport safe */ _Api_GetAllConnectionsOfComposition__WEBPACK_IMPORTED_MODULE_6__.GetAllConnectionsOfComposition),
|
|
19283
19700
|
/* harmony export */ GetAllConnectionsOfCompositionBulk: () => (/* reexport safe */ _Api_GetAllConnectionsOfCompositionBulk__WEBPACK_IMPORTED_MODULE_33__.GetAllConnectionsOfCompositionBulk),
|
|
19284
19701
|
/* harmony export */ GetComposition: () => (/* reexport safe */ _Services_GetComposition__WEBPACK_IMPORTED_MODULE_7__.GetComposition),
|
|
@@ -19332,7 +19749,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19332
19749
|
/* harmony export */ LISTNORMAL: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_65__.LISTNORMAL),
|
|
19333
19750
|
/* harmony export */ LocalConceptsData: () => (/* reexport safe */ _DataStructures_Local_LocalConceptData__WEBPACK_IMPORTED_MODULE_94__.LocalConceptsData),
|
|
19334
19751
|
/* harmony export */ LocalSyncData: () => (/* reexport safe */ _DataStructures_Local_LocalSyncData__WEBPACK_IMPORTED_MODULE_90__.LocalSyncData),
|
|
19335
|
-
/* harmony export */ LocalTransaction: () => (/* reexport safe */
|
|
19752
|
+
/* harmony export */ LocalTransaction: () => (/* reexport safe */ _Services_Transaction_LocalTransaction__WEBPACK_IMPORTED_MODULE_102__.LocalTransaction),
|
|
19336
19753
|
/* harmony export */ LoginToBackend: () => (/* reexport safe */ _Api_Login__WEBPACK_IMPORTED_MODULE_34__.LoginToBackend),
|
|
19337
19754
|
/* harmony export */ MakeTheInstanceConcept: () => (/* reexport safe */ _Services_MakeTheInstanceConcept__WEBPACK_IMPORTED_MODULE_13__["default"]),
|
|
19338
19755
|
/* harmony export */ MakeTheInstanceConceptLocal: () => (/* reexport safe */ _Services_Local_MakeTheInstanceConceptLocal__WEBPACK_IMPORTED_MODULE_14__.MakeTheInstanceConceptLocal),
|
|
@@ -19350,7 +19767,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19350
19767
|
/* harmony export */ RecursiveSearchApiRaw: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApiRaw),
|
|
19351
19768
|
/* harmony export */ RecursiveSearchApiRawFullLinker: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApiRawFullLinker),
|
|
19352
19769
|
/* harmony export */ RecursiveSearchListener: () => (/* reexport safe */ _WrapperFunctions_RecursiveSearchObservable__WEBPACK_IMPORTED_MODULE_74__.RecursiveSearchListener),
|
|
19353
|
-
/* harmony export */ SchemaQueryListener: () => (/* reexport safe */
|
|
19770
|
+
/* harmony export */ SchemaQueryListener: () => (/* reexport safe */ _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_110__.SchemaQueryListener),
|
|
19354
19771
|
/* harmony export */ SearchAllConcepts: () => (/* reexport safe */ _Api_Search_Search__WEBPACK_IMPORTED_MODULE_39__.SearchAllConcepts),
|
|
19355
19772
|
/* harmony export */ SearchLinkInternal: () => (/* reexport safe */ _Services_Search_SearchLinkInternal__WEBPACK_IMPORTED_MODULE_59__.SearchLinkInternal),
|
|
19356
19773
|
/* harmony export */ SearchLinkInternalAll: () => (/* reexport safe */ _Services_Search_SearchLinkInternal__WEBPACK_IMPORTED_MODULE_59__.SearchLinkInternalAll),
|
|
@@ -19367,18 +19784,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19367
19784
|
/* harmony export */ Signup: () => (/* reexport safe */ _Api_Signup__WEBPACK_IMPORTED_MODULE_36__["default"]),
|
|
19368
19785
|
/* harmony export */ SignupEntity: () => (/* reexport safe */ _Api_Signup__WEBPACK_IMPORTED_MODULE_36__.SignupEntity),
|
|
19369
19786
|
/* harmony export */ SplitStrings: () => (/* reexport safe */ _Services_SplitStrings__WEBPACK_IMPORTED_MODULE_3__.SplitStrings),
|
|
19370
|
-
/* harmony export */ StatefulWidget: () => (/* reexport safe */
|
|
19787
|
+
/* harmony export */ StatefulWidget: () => (/* reexport safe */ _Widgets_StatefulWidget__WEBPACK_IMPORTED_MODULE_106__.StatefulWidget),
|
|
19371
19788
|
/* harmony export */ SyncData: () => (/* reexport safe */ _DataStructures_SyncData__WEBPACK_IMPORTED_MODULE_76__.SyncData),
|
|
19372
19789
|
/* harmony export */ TrashTheConcept: () => (/* reexport safe */ _Api_Delete_DeleteConceptInBackend__WEBPACK_IMPORTED_MODULE_26__.TrashTheConcept),
|
|
19373
19790
|
/* harmony export */ UpdateComposition: () => (/* reexport safe */ _Services_UpdateComposition__WEBPACK_IMPORTED_MODULE_38__["default"]),
|
|
19374
19791
|
/* harmony export */ UpdateCompositionLocal: () => (/* reexport safe */ _Services_Local_UpdateCompositionLocal__WEBPACK_IMPORTED_MODULE_53__.UpdateCompositionLocal),
|
|
19375
19792
|
/* harmony export */ UserBinaryTree: () => (/* reexport safe */ _DataStructures_User_UserBinaryTree__WEBPACK_IMPORTED_MODULE_91__.UserBinaryTree),
|
|
19376
|
-
/* harmony export */ Validator: () => (/* reexport safe */
|
|
19793
|
+
/* harmony export */ Validator: () => (/* reexport safe */ _Validator_validator__WEBPACK_IMPORTED_MODULE_104__.Validator),
|
|
19377
19794
|
/* harmony export */ ViewInternalData: () => (/* reexport safe */ _Services_View_ViewInternalData__WEBPACK_IMPORTED_MODULE_56__.ViewInternalData),
|
|
19378
19795
|
/* harmony export */ ViewInternalDataApi: () => (/* reexport safe */ _Api_View_ViewInternalDataApi__WEBPACK_IMPORTED_MODULE_57__.ViewInternalDataApi),
|
|
19379
19796
|
/* harmony export */ convertFromConceptToLConcept: () => (/* reexport safe */ _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_58__.convertFromConceptToLConcept),
|
|
19380
19797
|
/* harmony export */ convertFromLConceptToConcept: () => (/* reexport safe */ _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_58__.convertFromLConceptToConcept),
|
|
19381
|
-
/* harmony export */ createFormFieldData: () => (/* reexport safe */
|
|
19798
|
+
/* harmony export */ createFormFieldData: () => (/* reexport safe */ _Validator_utils__WEBPACK_IMPORTED_MODULE_105__.createFormFieldData),
|
|
19382
19799
|
/* harmony export */ dispatchIdEvent: () => (/* binding */ dispatchIdEvent),
|
|
19383
19800
|
/* harmony export */ getFromDatabaseWithType: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_15__.getFromDatabaseWithType),
|
|
19384
19801
|
/* harmony export */ getObjectsFromIndexDb: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_15__.getObjectsFromIndexDb),
|
|
@@ -19493,15 +19910,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19493
19910
|
/* harmony import */ var _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./DataStructures/BaseUrl */ "./src/DataStructures/BaseUrl.ts");
|
|
19494
19911
|
/* harmony import */ var _DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./DataStructures/Security/TokenStorage */ "./src/DataStructures/Security/TokenStorage.ts");
|
|
19495
19912
|
/* harmony import */ var _Constants_general_const__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./Constants/general.const */ "./src/Constants/general.const.ts");
|
|
19496
|
-
/* harmony import */ var
|
|
19497
|
-
/* harmony import */ var
|
|
19498
|
-
/* harmony import */ var
|
|
19499
|
-
/* harmony import */ var
|
|
19500
|
-
/* harmony import */ var
|
|
19501
|
-
/* harmony import */ var
|
|
19502
|
-
/* harmony import */ var
|
|
19503
|
-
/* harmony import */ var
|
|
19504
|
-
/* harmony import */ var
|
|
19913
|
+
/* harmony import */ var _Widgets_BuilderStatefulWidget__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./Widgets/BuilderStatefulWidget */ "./src/Widgets/BuilderStatefulWidget.ts");
|
|
19914
|
+
/* harmony import */ var _Services_Transaction_LocalTransaction__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./Services/Transaction/LocalTransaction */ "./src/Services/Transaction/LocalTransaction.ts");
|
|
19915
|
+
/* harmony import */ var _Anomaly_anomaly__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Anomaly/anomaly */ "./src/Anomaly/anomaly.ts");
|
|
19916
|
+
/* harmony import */ var _Validator_validator__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./Validator/validator */ "./src/Validator/validator.ts");
|
|
19917
|
+
/* harmony import */ var _Validator_utils__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./Validator/utils */ "./src/Validator/utils.ts");
|
|
19918
|
+
/* harmony import */ var _Widgets_StatefulWidget__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./Widgets/StatefulWidget */ "./src/Widgets/StatefulWidget.ts");
|
|
19919
|
+
/* harmony import */ var _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./Services/DeleteConnectionByType */ "./src/Services/DeleteConnectionByType.ts");
|
|
19920
|
+
/* harmony import */ var _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./DataStructures/Search/FreeschemaQuery */ "./src/DataStructures/Search/FreeschemaQuery.ts");
|
|
19921
|
+
/* harmony import */ var _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./Api/Search/FreeschemaQueryApi */ "./src/Api/Search/FreeschemaQueryApi.ts");
|
|
19922
|
+
/* harmony import */ var _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./WrapperFunctions/SchemaQueryObservable */ "./src/WrapperFunctions/SchemaQueryObservable.ts");
|
|
19505
19923
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
19506
19924
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
19507
19925
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -19627,6 +20045,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
19627
20045
|
|
|
19628
20046
|
|
|
19629
20047
|
|
|
20048
|
+
|
|
19630
20049
|
|
|
19631
20050
|
|
|
19632
20051
|
var serviceWorker;
|
|
@@ -20116,6 +20535,7 @@ function initConceptConnection() {
|
|
|
20116
20535
|
/******/ var __webpack_exports__Anomaly = __webpack_exports__.Anomaly;
|
|
20117
20536
|
/******/ var __webpack_exports__BaseUrl = __webpack_exports__.BaseUrl;
|
|
20118
20537
|
/******/ var __webpack_exports__BinaryTree = __webpack_exports__.BinaryTree;
|
|
20538
|
+
/******/ var __webpack_exports__BuilderStatefulWidget = __webpack_exports__.BuilderStatefulWidget;
|
|
20119
20539
|
/******/ var __webpack_exports__Composition = __webpack_exports__.Composition;
|
|
20120
20540
|
/******/ var __webpack_exports__CompositionBinaryTree = __webpack_exports__.CompositionBinaryTree;
|
|
20121
20541
|
/******/ var __webpack_exports__CompositionNode = __webpack_exports__.CompositionNode;
|
|
@@ -20261,7 +20681,7 @@ function initConceptConnection() {
|
|
|
20261
20681
|
/******/ var __webpack_exports__storeToDatabase = __webpack_exports__.storeToDatabase;
|
|
20262
20682
|
/******/ var __webpack_exports__subscribedListeners = __webpack_exports__.subscribedListeners;
|
|
20263
20683
|
/******/ var __webpack_exports__updateAccessToken = __webpack_exports__.updateAccessToken;
|
|
20264
|
-
/******/ export { __webpack_exports__ADMIN as ADMIN, __webpack_exports__ALLID as ALLID, __webpack_exports__AddGhostConcept as AddGhostConcept, __webpack_exports__Anomaly as Anomaly, __webpack_exports__BaseUrl as BaseUrl, __webpack_exports__BinaryTree as BinaryTree, __webpack_exports__Composition as Composition, __webpack_exports__CompositionBinaryTree as CompositionBinaryTree, __webpack_exports__CompositionNode as CompositionNode, __webpack_exports__Concept as Concept, __webpack_exports__ConceptsData as ConceptsData, __webpack_exports__Connection as Connection, __webpack_exports__ConnectionData as ConnectionData, __webpack_exports__CreateComposition as CreateComposition, __webpack_exports__CreateConnectionBetweenTwoConcepts as CreateConnectionBetweenTwoConcepts, __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral as CreateConnectionBetweenTwoConceptsGeneral, __webpack_exports__CreateConnectionBetweenTwoConceptsLocal as CreateConnectionBetweenTwoConceptsLocal, __webpack_exports__CreateDefaultConcept as CreateDefaultConcept, __webpack_exports__CreateDefaultLConcept as CreateDefaultLConcept, __webpack_exports__CreateSession as CreateSession, __webpack_exports__CreateSessionVisit as CreateSessionVisit, __webpack_exports__CreateTheCompositionLocal as CreateTheCompositionLocal, __webpack_exports__CreateTheCompositionWithCache as CreateTheCompositionWithCache, __webpack_exports__CreateTheConnection as CreateTheConnection, __webpack_exports__CreateTheConnectionGeneral as CreateTheConnectionGeneral, __webpack_exports__CreateTheConnectionLocal as CreateTheConnectionLocal, __webpack_exports__DATAID as DATAID, __webpack_exports__DATAIDDATE as DATAIDDATE, __webpack_exports__DelayFunctionExecution as DelayFunctionExecution, __webpack_exports__DeleteConceptById as DeleteConceptById, __webpack_exports__DeleteConceptLocal as DeleteConceptLocal, __webpack_exports__DeleteConnectionById as DeleteConnectionById, __webpack_exports__DeleteConnectionByType as DeleteConnectionByType, __webpack_exports__DependencyObserver as DependencyObserver, __webpack_exports__FilterSearch as FilterSearch, __webpack_exports__FormatFromConnections as FormatFromConnections, __webpack_exports__FormatFromConnectionsAltered as FormatFromConnectionsAltered, __webpack_exports__FreeschemaQuery as FreeschemaQuery, __webpack_exports__FreeschemaQueryApi as FreeschemaQueryApi, __webpack_exports__GetAllConnectionsOfComposition as GetAllConnectionsOfComposition, __webpack_exports__GetAllConnectionsOfCompositionBulk as GetAllConnectionsOfCompositionBulk, __webpack_exports__GetComposition as GetComposition, __webpack_exports__GetCompositionBulk as GetCompositionBulk, __webpack_exports__GetCompositionBulkWithDataId as GetCompositionBulkWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataId as GetCompositionFromConnectionsWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataIdInObject as GetCompositionFromConnectionsWithDataIdInObject, __webpack_exports__GetCompositionFromConnectionsWithDataIdIndex as GetCompositionFromConnectionsWithDataIdIndex, __webpack_exports__GetCompositionFromConnectionsWithIndex as GetCompositionFromConnectionsWithIndex, __webpack_exports__GetCompositionList as GetCompositionList, __webpack_exports__GetCompositionListAll as GetCompositionListAll, __webpack_exports__GetCompositionListAllWithId as GetCompositionListAllWithId, __webpack_exports__GetCompositionListListener as GetCompositionListListener, __webpack_exports__GetCompositionListLocal as GetCompositionListLocal, __webpack_exports__GetCompositionListLocalWithId as GetCompositionListLocalWithId, __webpack_exports__GetCompositionListWithId as GetCompositionListWithId, __webpack_exports__GetCompositionListWithIdUpdated as GetCompositionListWithIdUpdated, __webpack_exports__GetCompositionListener as GetCompositionListener, __webpack_exports__GetCompositionLocal as GetCompositionLocal, __webpack_exports__GetCompositionLocalWithId as GetCompositionLocalWithId, __webpack_exports__GetCompositionWithAllIds as GetCompositionWithAllIds, __webpack_exports__GetCompositionWithCache as GetCompositionWithCache, __webpack_exports__GetCompositionWithDataIdBulk as GetCompositionWithDataIdBulk, __webpack_exports__GetCompositionWithDataIdWithCache as GetCompositionWithDataIdWithCache, __webpack_exports__GetCompositionWithId as GetCompositionWithId, __webpack_exports__GetCompositionWithIdAndDateFromMemory as GetCompositionWithIdAndDateFromMemory, __webpack_exports__GetConceptBulk as GetConceptBulk, __webpack_exports__GetConceptByCharacter as GetConceptByCharacter, __webpack_exports__GetConceptByCharacterAndCategoryLocal as GetConceptByCharacterAndCategoryLocal, __webpack_exports__GetConceptByCharacterAndType as GetConceptByCharacterAndType, __webpack_exports__GetConnectionBetweenTwoConceptsLinker as GetConnectionBetweenTwoConceptsLinker, __webpack_exports__GetConnectionBulk as GetConnectionBulk, __webpack_exports__GetConnectionById as GetConnectionById, __webpack_exports__GetConnectionDataPrefetch as GetConnectionDataPrefetch, __webpack_exports__GetConnectionOfTheConcept as GetConnectionOfTheConcept, __webpack_exports__GetLink as GetLink, __webpack_exports__GetLinkListListener as GetLinkListListener, __webpack_exports__GetLinkListener as GetLinkListener, __webpack_exports__GetLinkRaw as GetLinkRaw, __webpack_exports__GetLinkerConnectionFromConcepts as GetLinkerConnectionFromConcepts, __webpack_exports__GetLinkerConnectionToConcepts as GetLinkerConnectionToConcepts, __webpack_exports__GetRelation as GetRelation, __webpack_exports__GetRelationLocal as GetRelationLocal, __webpack_exports__GetRelationRaw as GetRelationRaw, __webpack_exports__GetTheConcept as GetTheConcept, __webpack_exports__GetTheConceptLocal as GetTheConceptLocal, __webpack_exports__GetUserGhostId as GetUserGhostId, __webpack_exports__JUSTDATA as JUSTDATA, __webpack_exports__LConcept as LConcept, __webpack_exports__LConnection as LConnection, __webpack_exports__LISTNORMAL as LISTNORMAL, __webpack_exports__LocalConceptsData as LocalConceptsData, __webpack_exports__LocalSyncData as LocalSyncData, __webpack_exports__LocalTransaction as LocalTransaction, __webpack_exports__LoginToBackend as LoginToBackend, __webpack_exports__MakeTheInstanceConcept as MakeTheInstanceConcept, __webpack_exports__MakeTheInstanceConceptLocal as MakeTheInstanceConceptLocal, __webpack_exports__MakeTheTimestamp as MakeTheTimestamp, __webpack_exports__MakeTheTypeConcept as MakeTheTypeConcept, __webpack_exports__MakeTheTypeConceptApi as MakeTheTypeConceptApi, __webpack_exports__MakeTheTypeConceptLocal as MakeTheTypeConceptLocal, __webpack_exports__NORMAL as NORMAL, __webpack_exports__PRIVATE as PRIVATE, __webpack_exports__PUBLIC as PUBLIC, __webpack_exports__PatcherStructure as PatcherStructure, __webpack_exports__RAW as RAW, __webpack_exports__RecursiveSearchApi as RecursiveSearchApi, __webpack_exports__RecursiveSearchApiNewRawFullLinker as RecursiveSearchApiNewRawFullLinker, __webpack_exports__RecursiveSearchApiRaw as RecursiveSearchApiRaw, __webpack_exports__RecursiveSearchApiRawFullLinker as RecursiveSearchApiRawFullLinker, __webpack_exports__RecursiveSearchListener as RecursiveSearchListener, __webpack_exports__SchemaQueryListener as SchemaQueryListener, __webpack_exports__SearchAllConcepts as SearchAllConcepts, __webpack_exports__SearchLinkInternal as SearchLinkInternal, __webpack_exports__SearchLinkInternalAll as SearchLinkInternalAll, __webpack_exports__SearchLinkMultipleAll as SearchLinkMultipleAll, __webpack_exports__SearchLinkMultipleAllObservable as SearchLinkMultipleAllObservable, __webpack_exports__SearchLinkMultipleApi as SearchLinkMultipleApi, __webpack_exports__SearchQuery as SearchQuery, __webpack_exports__SearchStructure as SearchStructure, __webpack_exports__SearchWithLinker as SearchWithLinker, __webpack_exports__SearchWithTypeAndLinker as SearchWithTypeAndLinker, __webpack_exports__SearchWithTypeAndLinkerApi as SearchWithTypeAndLinkerApi, __webpack_exports__SessionData as SessionData, __webpack_exports__Signin as Signin, __webpack_exports__Signup as Signup, __webpack_exports__SignupEntity as SignupEntity, __webpack_exports__SplitStrings as SplitStrings, __webpack_exports__StatefulWidget as StatefulWidget, __webpack_exports__SyncData as SyncData, __webpack_exports__TrashTheConcept as TrashTheConcept, __webpack_exports__UpdateComposition as UpdateComposition, __webpack_exports__UpdateCompositionLocal as UpdateCompositionLocal, __webpack_exports__UserBinaryTree as UserBinaryTree, __webpack_exports__Validator as Validator, __webpack_exports__ViewInternalData as ViewInternalData, __webpack_exports__ViewInternalDataApi as ViewInternalDataApi, __webpack_exports__convertFromConceptToLConcept as convertFromConceptToLConcept, __webpack_exports__convertFromLConceptToConcept as convertFromLConceptToConcept, __webpack_exports__createFormFieldData as createFormFieldData, __webpack_exports__dispatchIdEvent as dispatchIdEvent, __webpack_exports__getFromDatabaseWithType as getFromDatabaseWithType, __webpack_exports__getObjectsFromIndexDb as getObjectsFromIndexDb, __webpack_exports__init as init, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendMessage as sendMessage, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken };
|
|
20684
|
+
/******/ export { __webpack_exports__ADMIN as ADMIN, __webpack_exports__ALLID as ALLID, __webpack_exports__AddGhostConcept as AddGhostConcept, __webpack_exports__Anomaly as Anomaly, __webpack_exports__BaseUrl as BaseUrl, __webpack_exports__BinaryTree as BinaryTree, __webpack_exports__BuilderStatefulWidget as BuilderStatefulWidget, __webpack_exports__Composition as Composition, __webpack_exports__CompositionBinaryTree as CompositionBinaryTree, __webpack_exports__CompositionNode as CompositionNode, __webpack_exports__Concept as Concept, __webpack_exports__ConceptsData as ConceptsData, __webpack_exports__Connection as Connection, __webpack_exports__ConnectionData as ConnectionData, __webpack_exports__CreateComposition as CreateComposition, __webpack_exports__CreateConnectionBetweenTwoConcepts as CreateConnectionBetweenTwoConcepts, __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral as CreateConnectionBetweenTwoConceptsGeneral, __webpack_exports__CreateConnectionBetweenTwoConceptsLocal as CreateConnectionBetweenTwoConceptsLocal, __webpack_exports__CreateDefaultConcept as CreateDefaultConcept, __webpack_exports__CreateDefaultLConcept as CreateDefaultLConcept, __webpack_exports__CreateSession as CreateSession, __webpack_exports__CreateSessionVisit as CreateSessionVisit, __webpack_exports__CreateTheCompositionLocal as CreateTheCompositionLocal, __webpack_exports__CreateTheCompositionWithCache as CreateTheCompositionWithCache, __webpack_exports__CreateTheConnection as CreateTheConnection, __webpack_exports__CreateTheConnectionGeneral as CreateTheConnectionGeneral, __webpack_exports__CreateTheConnectionLocal as CreateTheConnectionLocal, __webpack_exports__DATAID as DATAID, __webpack_exports__DATAIDDATE as DATAIDDATE, __webpack_exports__DelayFunctionExecution as DelayFunctionExecution, __webpack_exports__DeleteConceptById as DeleteConceptById, __webpack_exports__DeleteConceptLocal as DeleteConceptLocal, __webpack_exports__DeleteConnectionById as DeleteConnectionById, __webpack_exports__DeleteConnectionByType as DeleteConnectionByType, __webpack_exports__DependencyObserver as DependencyObserver, __webpack_exports__FilterSearch as FilterSearch, __webpack_exports__FormatFromConnections as FormatFromConnections, __webpack_exports__FormatFromConnectionsAltered as FormatFromConnectionsAltered, __webpack_exports__FreeschemaQuery as FreeschemaQuery, __webpack_exports__FreeschemaQueryApi as FreeschemaQueryApi, __webpack_exports__GetAllConnectionsOfComposition as GetAllConnectionsOfComposition, __webpack_exports__GetAllConnectionsOfCompositionBulk as GetAllConnectionsOfCompositionBulk, __webpack_exports__GetComposition as GetComposition, __webpack_exports__GetCompositionBulk as GetCompositionBulk, __webpack_exports__GetCompositionBulkWithDataId as GetCompositionBulkWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataId as GetCompositionFromConnectionsWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataIdInObject as GetCompositionFromConnectionsWithDataIdInObject, __webpack_exports__GetCompositionFromConnectionsWithDataIdIndex as GetCompositionFromConnectionsWithDataIdIndex, __webpack_exports__GetCompositionFromConnectionsWithIndex as GetCompositionFromConnectionsWithIndex, __webpack_exports__GetCompositionList as GetCompositionList, __webpack_exports__GetCompositionListAll as GetCompositionListAll, __webpack_exports__GetCompositionListAllWithId as GetCompositionListAllWithId, __webpack_exports__GetCompositionListListener as GetCompositionListListener, __webpack_exports__GetCompositionListLocal as GetCompositionListLocal, __webpack_exports__GetCompositionListLocalWithId as GetCompositionListLocalWithId, __webpack_exports__GetCompositionListWithId as GetCompositionListWithId, __webpack_exports__GetCompositionListWithIdUpdated as GetCompositionListWithIdUpdated, __webpack_exports__GetCompositionListener as GetCompositionListener, __webpack_exports__GetCompositionLocal as GetCompositionLocal, __webpack_exports__GetCompositionLocalWithId as GetCompositionLocalWithId, __webpack_exports__GetCompositionWithAllIds as GetCompositionWithAllIds, __webpack_exports__GetCompositionWithCache as GetCompositionWithCache, __webpack_exports__GetCompositionWithDataIdBulk as GetCompositionWithDataIdBulk, __webpack_exports__GetCompositionWithDataIdWithCache as GetCompositionWithDataIdWithCache, __webpack_exports__GetCompositionWithId as GetCompositionWithId, __webpack_exports__GetCompositionWithIdAndDateFromMemory as GetCompositionWithIdAndDateFromMemory, __webpack_exports__GetConceptBulk as GetConceptBulk, __webpack_exports__GetConceptByCharacter as GetConceptByCharacter, __webpack_exports__GetConceptByCharacterAndCategoryLocal as GetConceptByCharacterAndCategoryLocal, __webpack_exports__GetConceptByCharacterAndType as GetConceptByCharacterAndType, __webpack_exports__GetConnectionBetweenTwoConceptsLinker as GetConnectionBetweenTwoConceptsLinker, __webpack_exports__GetConnectionBulk as GetConnectionBulk, __webpack_exports__GetConnectionById as GetConnectionById, __webpack_exports__GetConnectionDataPrefetch as GetConnectionDataPrefetch, __webpack_exports__GetConnectionOfTheConcept as GetConnectionOfTheConcept, __webpack_exports__GetLink as GetLink, __webpack_exports__GetLinkListListener as GetLinkListListener, __webpack_exports__GetLinkListener as GetLinkListener, __webpack_exports__GetLinkRaw as GetLinkRaw, __webpack_exports__GetLinkerConnectionFromConcepts as GetLinkerConnectionFromConcepts, __webpack_exports__GetLinkerConnectionToConcepts as GetLinkerConnectionToConcepts, __webpack_exports__GetRelation as GetRelation, __webpack_exports__GetRelationLocal as GetRelationLocal, __webpack_exports__GetRelationRaw as GetRelationRaw, __webpack_exports__GetTheConcept as GetTheConcept, __webpack_exports__GetTheConceptLocal as GetTheConceptLocal, __webpack_exports__GetUserGhostId as GetUserGhostId, __webpack_exports__JUSTDATA as JUSTDATA, __webpack_exports__LConcept as LConcept, __webpack_exports__LConnection as LConnection, __webpack_exports__LISTNORMAL as LISTNORMAL, __webpack_exports__LocalConceptsData as LocalConceptsData, __webpack_exports__LocalSyncData as LocalSyncData, __webpack_exports__LocalTransaction as LocalTransaction, __webpack_exports__LoginToBackend as LoginToBackend, __webpack_exports__MakeTheInstanceConcept as MakeTheInstanceConcept, __webpack_exports__MakeTheInstanceConceptLocal as MakeTheInstanceConceptLocal, __webpack_exports__MakeTheTimestamp as MakeTheTimestamp, __webpack_exports__MakeTheTypeConcept as MakeTheTypeConcept, __webpack_exports__MakeTheTypeConceptApi as MakeTheTypeConceptApi, __webpack_exports__MakeTheTypeConceptLocal as MakeTheTypeConceptLocal, __webpack_exports__NORMAL as NORMAL, __webpack_exports__PRIVATE as PRIVATE, __webpack_exports__PUBLIC as PUBLIC, __webpack_exports__PatcherStructure as PatcherStructure, __webpack_exports__RAW as RAW, __webpack_exports__RecursiveSearchApi as RecursiveSearchApi, __webpack_exports__RecursiveSearchApiNewRawFullLinker as RecursiveSearchApiNewRawFullLinker, __webpack_exports__RecursiveSearchApiRaw as RecursiveSearchApiRaw, __webpack_exports__RecursiveSearchApiRawFullLinker as RecursiveSearchApiRawFullLinker, __webpack_exports__RecursiveSearchListener as RecursiveSearchListener, __webpack_exports__SchemaQueryListener as SchemaQueryListener, __webpack_exports__SearchAllConcepts as SearchAllConcepts, __webpack_exports__SearchLinkInternal as SearchLinkInternal, __webpack_exports__SearchLinkInternalAll as SearchLinkInternalAll, __webpack_exports__SearchLinkMultipleAll as SearchLinkMultipleAll, __webpack_exports__SearchLinkMultipleAllObservable as SearchLinkMultipleAllObservable, __webpack_exports__SearchLinkMultipleApi as SearchLinkMultipleApi, __webpack_exports__SearchQuery as SearchQuery, __webpack_exports__SearchStructure as SearchStructure, __webpack_exports__SearchWithLinker as SearchWithLinker, __webpack_exports__SearchWithTypeAndLinker as SearchWithTypeAndLinker, __webpack_exports__SearchWithTypeAndLinkerApi as SearchWithTypeAndLinkerApi, __webpack_exports__SessionData as SessionData, __webpack_exports__Signin as Signin, __webpack_exports__Signup as Signup, __webpack_exports__SignupEntity as SignupEntity, __webpack_exports__SplitStrings as SplitStrings, __webpack_exports__StatefulWidget as StatefulWidget, __webpack_exports__SyncData as SyncData, __webpack_exports__TrashTheConcept as TrashTheConcept, __webpack_exports__UpdateComposition as UpdateComposition, __webpack_exports__UpdateCompositionLocal as UpdateCompositionLocal, __webpack_exports__UserBinaryTree as UserBinaryTree, __webpack_exports__Validator as Validator, __webpack_exports__ViewInternalData as ViewInternalData, __webpack_exports__ViewInternalDataApi as ViewInternalDataApi, __webpack_exports__convertFromConceptToLConcept as convertFromConceptToLConcept, __webpack_exports__convertFromLConceptToConcept as convertFromLConceptToConcept, __webpack_exports__createFormFieldData as createFormFieldData, __webpack_exports__dispatchIdEvent as dispatchIdEvent, __webpack_exports__getFromDatabaseWithType as getFromDatabaseWithType, __webpack_exports__getObjectsFromIndexDb as getObjectsFromIndexDb, __webpack_exports__init as init, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendMessage as sendMessage, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken };
|
|
20265
20685
|
/******/
|
|
20266
20686
|
|
|
20267
20687
|
//# sourceMappingURL=main.bundle.js.map
|