|
@@ -10442,9 +10442,9 @@ var _user$project$Decoders$Item = F5(
|
10442
|
10442
|
function (a, b, c, d, e) {
|
10443
|
10443
|
return {key: a, location: b, sample: c, tags: d, uid: e};
|
10444
|
10444
|
});
|
10445
|
|
-var _user$project$Decoders$Location = F4(
|
10446
|
|
- function (a, b, c, d) {
|
10447
|
|
- return {ipAddress: a, ipPort: b, uid: c, right: d};
|
|
10445
|
+var _user$project$Decoders$Location = F5(
|
|
10446
|
+ function (a, b, c, d, e) {
|
|
10447
|
+ return {ipAddress: a, ipPort: b, scheme: c, uid: d, right: e};
|
10448
|
10448
|
});
|
10449
|
10449
|
var _user$project$Decoders$DataResponse = function (a) {
|
10450
|
10450
|
return {data: a};
|
|
@@ -10484,11 +10484,12 @@ var _user$project$Decoders$decodeDevices = _elm_lang$core$Json_Decode$list(_user
|
10484
|
10484
|
var _user$project$Decoders$Requesting = {ctor: 'Requesting'};
|
10485
|
10485
|
var _user$project$Decoders$RequestAccess = {ctor: 'RequestAccess'};
|
10486
|
10486
|
var _user$project$Decoders$Unknown = {ctor: 'Unknown'};
|
10487
|
|
-var _user$project$Decoders$decodeLocation = A5(
|
10488
|
|
- _elm_lang$core$Json_Decode$map4,
|
|
10487
|
+var _user$project$Decoders$decodeLocation = A6(
|
|
10488
|
+ _elm_lang$core$Json_Decode$map5,
|
10489
|
10489
|
_user$project$Decoders$Location,
|
10490
|
10490
|
A2(_elm_lang$core$Json_Decode$field, 'ip-address', _elm_lang$core$Json_Decode$string),
|
10491
|
10491
|
A2(_elm_lang$core$Json_Decode$field, 'port', _elm_lang$core$Json_Decode$int),
|
|
10492
|
+ A2(_elm_lang$core$Json_Decode$field, 'scheme', _elm_lang$core$Json_Decode$string),
|
10492
|
10493
|
A2(_elm_lang$core$Json_Decode$field, 'uid', _elm_lang$core$Json_Decode$string),
|
10493
|
10494
|
_elm_lang$core$Json_Decode$succeed(_user$project$Decoders$Unknown));
|
10494
|
10495
|
var _user$project$Decoders$decodeItem = A6(
|
|
@@ -10690,14 +10691,17 @@ var _user$project$Search$metadataURL = 'http://localhost:8081';
|
10690
|
10691
|
var _user$project$Search$nodeURLFromLocation = function (location) {
|
10691
|
10692
|
return A2(
|
10692
|
10693
|
_elm_lang$core$Basics_ops['++'],
|
10693
|
|
- 'http://',
|
|
10694
|
+ location.scheme,
|
10694
|
10695
|
A2(
|
10695
|
10696
|
_elm_lang$core$Basics_ops['++'],
|
10696
|
|
- location.ipAddress,
|
|
10697
|
+ '://',
|
10697
|
10698
|
A2(
|
10698
|
10699
|
_elm_lang$core$Basics_ops['++'],
|
10699
|
|
- ':',
|
10700
|
|
- _elm_lang$core$Basics$toString(location.ipPort))));
|
|
10700
|
+ location.ipAddress,
|
|
10701
|
+ A2(
|
|
10702
|
+ _elm_lang$core$Basics_ops['++'],
|
|
10703
|
+ ':',
|
|
10704
|
+ _elm_lang$core$Basics$toString(location.ipPort)))));
|
10701
|
10705
|
};
|
10702
|
10706
|
var _user$project$Search$initialModel = {all: _elm_lang$core$Maybe$Nothing, filter: _elm_lang$core$Maybe$Nothing};
|
10703
|
10707
|
var _user$project$Search$unsafeDrawGraph = _elm_lang$core$Native_Platform.outgoingPort(
|