@esri/hub-common 14.209.0 → 14.210.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/esm/content/_internal/ContentSchema.js +1 -0
- package/dist/esm/content/_internal/ContentSchema.js.map +1 -1
- package/dist/esm/content/_internal/getDownloadsSection.js +17 -10
- package/dist/esm/content/_internal/getDownloadsSection.js.map +1 -1
- package/dist/node/content/_internal/ContentSchema.js +1 -0
- package/dist/node/content/_internal/ContentSchema.js.map +1 -1
- package/dist/node/content/_internal/getDownloadsSection.js +17 -10
- package/dist/node/content/_internal/getDownloadsSection.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContentSchema.js","sourceRoot":"","sources":["../../../../src/content/_internal/ContentSchema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AAGpF,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,kBAAkB;IAClB,sBAAsB;IACtB,yBAAyB;CACjB,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAAyB,gCAC9C,mBAAmB,KACtB,UAAU,kCACL,mBAAmB,CAAC,UAAU,KACjC,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;SACf,EACD,uBAAuB,EAAE;YACvB,IAAI,EAAE,SAAS;
|
|
1
|
+
{"version":3,"file":"ContentSchema.js","sourceRoot":"","sources":["../../../../src/content/_internal/ContentSchema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AAGpF,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,kBAAkB;IAClB,sBAAsB;IACtB,yBAAyB;CACjB,CAAC;AAEX;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAAyB,gCAC9C,mBAAmB,KACtB,UAAU,kCACL,mBAAmB,CAAC,UAAU,KACjC,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;SACf,EACD,uBAAuB,EAAE;YACvB,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,EACD,QAAQ,EAAE;YACR,IAAI,EAAE,QAAQ;SACf,EACD,YAAY,EAAE;YACZ,IAAI,EAAE,OAAO;YACb,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,CAAC,IAAI,CAAC;aACb;SACF,EACD,eAAe,EAAE;YACf,IAAI,EAAE,OAAO;YACb,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;SACF,MAEoB,CAAC"}
|
|
@@ -13,9 +13,9 @@ import { isHostedFeatureServiceMainEntity } from "../hostedServiceUtils";
|
|
|
13
13
|
*/
|
|
14
14
|
export function getDownloadsSection(i18nScope, entity) {
|
|
15
15
|
const downloadSectionElements = [];
|
|
16
|
-
if (
|
|
17
|
-
const
|
|
18
|
-
downloadSectionElements.push(
|
|
16
|
+
if (shouldShowDownloadSystemElement(entity)) {
|
|
17
|
+
const downloadSystemElement = getDownloadSystemElement(i18nScope);
|
|
18
|
+
downloadSectionElements.push(downloadSystemElement);
|
|
19
19
|
}
|
|
20
20
|
const downloadFormatsElement = getDownloadFormatsElement(i18nScope, entity);
|
|
21
21
|
downloadSectionElements.push(downloadFormatsElement);
|
|
@@ -27,22 +27,29 @@ export function getDownloadsSection(i18nScope, entity) {
|
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
29
|
/**
|
|
30
|
-
* NOTE: we only show the
|
|
30
|
+
* NOTE: we only show the download system toggle for main entities of a hosted feature service
|
|
31
31
|
* since we can guarantee that the user will have the necessary permissions to enable
|
|
32
32
|
* extract capabilities on the service.
|
|
33
33
|
*/
|
|
34
|
-
function
|
|
34
|
+
function shouldShowDownloadSystemElement(entity) {
|
|
35
35
|
return isHostedFeatureServiceMainEntity(entity);
|
|
36
36
|
}
|
|
37
|
-
function
|
|
37
|
+
function getDownloadSystemElement(i18nScope) {
|
|
38
38
|
return {
|
|
39
39
|
labelKey: `${i18nScope}.fields.serverExtractCapability.label`,
|
|
40
40
|
scope: "/properties/serverExtractCapability",
|
|
41
41
|
type: "Control",
|
|
42
42
|
options: {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
control: "hub-field-input-tile-select",
|
|
44
|
+
labels: [
|
|
45
|
+
`{{${i18nScope}.fields.serverExtractCapability.exportDataSetting.label:translate}}`,
|
|
46
|
+
`{{${i18nScope}.fields.serverExtractCapability.defaultDownloadsSystem.label:translate}}`,
|
|
47
|
+
],
|
|
48
|
+
descriptions: [
|
|
49
|
+
`{{${i18nScope}.fields.serverExtractCapability.exportDataSetting.description:translate}}`,
|
|
50
|
+
`{{${i18nScope}.fields.serverExtractCapability.defaultDownloadsSystem.description:translate}}`,
|
|
51
|
+
],
|
|
52
|
+
layout: "vertical",
|
|
46
53
|
messages: [
|
|
47
54
|
{
|
|
48
55
|
type: UiSchemaMessageTypes.custom,
|
|
@@ -87,7 +94,7 @@ function getDownloadFormatsElement(i18nScope, entity) {
|
|
|
87
94
|
// Product has asked that if the extract capability toggle is present, we should disable
|
|
88
95
|
// the download formats control when the toggle is off. We hope this will encourage more
|
|
89
96
|
// users to opt into the hosted downloads experience.
|
|
90
|
-
if (
|
|
97
|
+
if (shouldShowDownloadSystemElement(entity)) {
|
|
91
98
|
result.rules.push({
|
|
92
99
|
effect: UiSchemaRuleEffects.DISABLE,
|
|
93
100
|
conditions: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDownloadsSection.js","sourceRoot":"","sources":["../../../../src/content/_internal/getDownloadsSection.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,oBAAoB,EACpB,mBAAmB,GACpB,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,eAAe,EAAE,MAAM,2CAA2C,CAAC;AAC5E,OAAO,EAAE,gCAAgC,EAAE,MAAM,uBAAuB,CAAC;AAEzE;;;;;;;;;GASG;AACH,MAAM,UAAU,mBAAmB,CACjC,SAAiB,EACjB,MAA2B;IAE3B,MAAM,uBAAuB,GAAuB,EAAE,CAAC;IAEvD,IAAI,
|
|
1
|
+
{"version":3,"file":"getDownloadsSection.js","sourceRoot":"","sources":["../../../../src/content/_internal/getDownloadsSection.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContentSchema.js","sourceRoot":"","sources":["../../../../src/content/_internal/ContentSchema.ts"],"names":[],"mappings":";;;AACA,uFAAoF;AAGvE,QAAA,kBAAkB,GAAG;IAChC,kBAAkB;IAClB,sBAAsB;IACtB,yBAAyB;CACjB,CAAC;AAEX;;GAEG;AACU,QAAA,aAAa,GAAyB,gCAC9C,yCAAmB,KACtB,UAAU,kCACL,yCAAmB,CAAC,UAAU,KACjC,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;SACf,EACD,uBAAuB,EAAE;YACvB,IAAI,EAAE,SAAS;
|
|
1
|
+
{"version":3,"file":"ContentSchema.js","sourceRoot":"","sources":["../../../../src/content/_internal/ContentSchema.ts"],"names":[],"mappings":";;;AACA,uFAAoF;AAGvE,QAAA,kBAAkB,GAAG;IAChC,kBAAkB;IAClB,sBAAsB;IACtB,yBAAyB;CACjB,CAAC;AAEX;;GAEG;AACU,QAAA,aAAa,GAAyB,gCAC9C,yCAAmB,KACtB,UAAU,kCACL,yCAAmB,CAAC,UAAU,KACjC,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;SACf,EACD,uBAAuB,EAAE;YACvB,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,EACD,QAAQ,EAAE;YACR,IAAI,EAAE,QAAQ;SACf,EACD,YAAY,EAAE;YACZ,IAAI,EAAE,OAAO;YACb,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,CAAC,IAAI,CAAC;aACb;SACF,EACD,eAAe,EAAE;YACf,IAAI,EAAE,OAAO;YACb,KAAK,EAAE;gBACL,IAAI,EAAE,QAAQ;aACf;SACF,MAEoB,CAAC"}
|
|
@@ -16,9 +16,9 @@ const hostedServiceUtils_1 = require("../hostedServiceUtils");
|
|
|
16
16
|
*/
|
|
17
17
|
function getDownloadsSection(i18nScope, entity) {
|
|
18
18
|
const downloadSectionElements = [];
|
|
19
|
-
if (
|
|
20
|
-
const
|
|
21
|
-
downloadSectionElements.push(
|
|
19
|
+
if (shouldShowDownloadSystemElement(entity)) {
|
|
20
|
+
const downloadSystemElement = getDownloadSystemElement(i18nScope);
|
|
21
|
+
downloadSectionElements.push(downloadSystemElement);
|
|
22
22
|
}
|
|
23
23
|
const downloadFormatsElement = getDownloadFormatsElement(i18nScope, entity);
|
|
24
24
|
downloadSectionElements.push(downloadFormatsElement);
|
|
@@ -31,22 +31,29 @@ function getDownloadsSection(i18nScope, entity) {
|
|
|
31
31
|
}
|
|
32
32
|
exports.getDownloadsSection = getDownloadsSection;
|
|
33
33
|
/**
|
|
34
|
-
* NOTE: we only show the
|
|
34
|
+
* NOTE: we only show the download system toggle for main entities of a hosted feature service
|
|
35
35
|
* since we can guarantee that the user will have the necessary permissions to enable
|
|
36
36
|
* extract capabilities on the service.
|
|
37
37
|
*/
|
|
38
|
-
function
|
|
38
|
+
function shouldShowDownloadSystemElement(entity) {
|
|
39
39
|
return hostedServiceUtils_1.isHostedFeatureServiceMainEntity(entity);
|
|
40
40
|
}
|
|
41
|
-
function
|
|
41
|
+
function getDownloadSystemElement(i18nScope) {
|
|
42
42
|
return {
|
|
43
43
|
labelKey: `${i18nScope}.fields.serverExtractCapability.label`,
|
|
44
44
|
scope: "/properties/serverExtractCapability",
|
|
45
45
|
type: "Control",
|
|
46
46
|
options: {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
control: "hub-field-input-tile-select",
|
|
48
|
+
labels: [
|
|
49
|
+
`{{${i18nScope}.fields.serverExtractCapability.exportDataSetting.label:translate}}`,
|
|
50
|
+
`{{${i18nScope}.fields.serverExtractCapability.defaultDownloadsSystem.label:translate}}`,
|
|
51
|
+
],
|
|
52
|
+
descriptions: [
|
|
53
|
+
`{{${i18nScope}.fields.serverExtractCapability.exportDataSetting.description:translate}}`,
|
|
54
|
+
`{{${i18nScope}.fields.serverExtractCapability.defaultDownloadsSystem.description:translate}}`,
|
|
55
|
+
],
|
|
56
|
+
layout: "vertical",
|
|
50
57
|
messages: [
|
|
51
58
|
{
|
|
52
59
|
type: types_1.UiSchemaMessageTypes.custom,
|
|
@@ -91,7 +98,7 @@ function getDownloadFormatsElement(i18nScope, entity) {
|
|
|
91
98
|
// Product has asked that if the extract capability toggle is present, we should disable
|
|
92
99
|
// the download formats control when the toggle is off. We hope this will encourage more
|
|
93
100
|
// users to opt into the hosted downloads experience.
|
|
94
|
-
if (
|
|
101
|
+
if (shouldShowDownloadSystemElement(entity)) {
|
|
95
102
|
result.rules.push({
|
|
96
103
|
effect: types_1.UiSchemaRuleEffects.DISABLE,
|
|
97
104
|
conditions: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDownloadsSection.js","sourceRoot":"","sources":["../../../../src/content/_internal/getDownloadsSection.ts"],"names":[],"mappings":";;;AAAA,oDAKkC;AAElC,+EAA4E;AAC5E,8DAAyE;AAEzE;;;;;;;;;GASG;AACH,SAAgB,mBAAmB,CACjC,SAAiB,EACjB,MAA2B;IAE3B,MAAM,uBAAuB,GAAuB,EAAE,CAAC;IAEvD,IAAI,
|
|
1
|
+
{"version":3,"file":"getDownloadsSection.js","sourceRoot":"","sources":["../../../../src/content/_internal/getDownloadsSection.ts"],"names":[],"mappings":"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"}
|