pict-section-form 1.0.104 → 1.0.106
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/example_applications/postcard_example/Pict-Application-Postcard.js +1 -0
- package/package.json +2 -2
- package/source/Pict-Section-Form.js +1 -1
- package/source/services/{Pict-Service-DynamicApplication.js → Pict-Service-DynamicFormDependencyManager.js} +3 -3
- package/source/views/Pict-View-DynamicForm.js +3 -40
- package/source/views/Pict-View-Form-Metacontroller.js +7 -2
- package/test/PictSectionForm-Basic_tests.js +1 -1
- package/types/source/Pict-Section-Form.d.ts +1 -1
- package/types/source/services/{Pict-Service-DynamicApplication.d.ts → Pict-Service-DynamicFormDependencyManager.d.ts} +4 -4
- package/types/source/services/Pict-Service-DynamicFormDependencyManager.d.ts.map +1 -0
- package/types/source/views/Pict-View-DynamicForm.d.ts.map +1 -1
- package/types/source/views/Pict-View-Form-Metacontroller.d.ts.map +1 -1
- package/types/source/services/Pict-Service-DynamicApplication.d.ts.map +0 -1
|
@@ -76,6 +76,7 @@ class PostcardApplication extends libPictApplication
|
|
|
76
76
|
|
|
77
77
|
// Set a custom address for all the views to marshal to.
|
|
78
78
|
// This can also be set on specific views (same property)
|
|
79
|
+
this.pict.AppData.PostKard = { };
|
|
79
80
|
this.pict.views.PictFormMetacontroller.viewMarshalDestination = 'AppData.PostKard';
|
|
80
81
|
|
|
81
82
|
this.pict.views.PostcardNavigation.render()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pict-section-form",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.106",
|
|
4
4
|
"description": "Pict dynamic form sections",
|
|
5
5
|
"main": "source/Pict-Section-Form.js",
|
|
6
6
|
"directories": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"browser-env": "^3.3.0",
|
|
32
32
|
"eslint": "^9.26.0",
|
|
33
33
|
"jquery": "^3.7.1",
|
|
34
|
-
"pict": "^1.0.
|
|
34
|
+
"pict": "^1.0.282",
|
|
35
35
|
"pict-application": "^1.0.27",
|
|
36
36
|
"pict-service-commandlineutility": "^1.0.15",
|
|
37
37
|
"quackage": "^1.0.42",
|
|
@@ -5,7 +5,7 @@ module.exports = require('./views/Pict-View-DynamicForm.js');
|
|
|
5
5
|
//module.exports.default_configuration = require('./views/Pict-View-DynamicForm-DefaultConfiguration.json');
|
|
6
6
|
|
|
7
7
|
// The dynamic application dependencies
|
|
8
|
-
module.exports.
|
|
8
|
+
module.exports.PictDynamicFormDependencyManager = require('./services/Pict-Service-DynamicFormDependencyManager.js');
|
|
9
9
|
|
|
10
10
|
// The base provider class for form section templates; meant to be subclassed
|
|
11
11
|
module.exports.PictFormTemplateProvider = require('./providers/Pict-Provider-DynamicTemplates.js');
|
|
@@ -23,7 +23,7 @@ const libPictLayoutCustom = require('../providers/layouts/Pict-Layout-Custom.js'
|
|
|
23
23
|
|
|
24
24
|
const libInformary = require('../providers/Pict-Provider-Informary.js');
|
|
25
25
|
|
|
26
|
-
class
|
|
26
|
+
class PictDynamicFormDependencyManager extends libFableServiceProviderBase
|
|
27
27
|
{
|
|
28
28
|
constructor(pFable, pOptions, pServiceHash)
|
|
29
29
|
{
|
|
@@ -63,7 +63,7 @@ class PictDynamicApplication extends libFableServiceProviderBase
|
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
module.exports =
|
|
66
|
+
module.exports = PictDynamicFormDependencyManager;
|
|
67
67
|
|
|
68
68
|
/** @type {Record<string, any>} */
|
|
69
|
-
|
|
69
|
+
PictDynamicFormDependencyManager.default_configuration = { };
|
|
@@ -63,7 +63,7 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
63
63
|
/** @type {import('pict') & { PictApplication: import('pict-application'), log: any; instantiateServiceProviderWithoutRegistration: (hash: string) => any; }} */
|
|
64
64
|
this.pict;
|
|
65
65
|
|
|
66
|
-
if (!this.fable.
|
|
66
|
+
if (!this.fable.PictDynamicFormDependencyManager)
|
|
67
67
|
{
|
|
68
68
|
throw new Error('PictSectionForm instantiation attempt without a PictDynamicApplication service in fable -- cannot instantiate.');
|
|
69
69
|
}
|
|
@@ -389,18 +389,7 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
389
389
|
*/
|
|
390
390
|
getMarshalDestinationAddress()
|
|
391
391
|
{
|
|
392
|
-
|
|
393
|
-
{
|
|
394
|
-
return this.viewMarshalDestination;
|
|
395
|
-
}
|
|
396
|
-
else if (this.pict.views.PictFormMetacontroller && this.pict.views.PictFormMetacontroller.viewMarshalDestination)
|
|
397
|
-
{
|
|
398
|
-
return this.pict.views.PictFormMetacontroller.viewMarshalDestination;
|
|
399
|
-
}
|
|
400
|
-
else
|
|
401
|
-
{
|
|
402
|
-
return 'AppData';
|
|
403
|
-
}
|
|
392
|
+
return this.viewMarshalDestination || this.pict.providers.DataBroker.marshalDestination;
|
|
404
393
|
}
|
|
405
394
|
|
|
406
395
|
/**
|
|
@@ -410,33 +399,7 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
410
399
|
*/
|
|
411
400
|
getMarshalDestinationObject()
|
|
412
401
|
{
|
|
413
|
-
|
|
414
|
-
if (this.viewMarshalDestination)
|
|
415
|
-
{
|
|
416
|
-
tmpMarshalDestinationObject = this.sectionManifest.getValueByHash(this, this.viewMarshalDestination);
|
|
417
|
-
}
|
|
418
|
-
else if (this.pict.views.PictFormMetacontroller && this.pict.views.PictFormMetacontroller.viewMarshalDestination)
|
|
419
|
-
{
|
|
420
|
-
tmpMarshalDestinationObject = this.sectionManifest.getValueByHash(this, this.pict.views.PictFormMetacontroller.viewMarshalDestination);
|
|
421
|
-
|
|
422
|
-
if (!tmpMarshalDestinationObject)
|
|
423
|
-
{
|
|
424
|
-
// Try to create an empty object.
|
|
425
|
-
if (this.sectionManifest.setValueAtAddress(this, this.pict.views.PictFormMetacontroller.viewMarshalDestination, {}))
|
|
426
|
-
{
|
|
427
|
-
// And try to load it once more!
|
|
428
|
-
tmpMarshalDestinationObject = this.sectionManifest.getValueByHash(this, this.pict.views.PictFormMetacontroller.viewMarshalDestination);
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
if (typeof (tmpMarshalDestinationObject) !== 'object')
|
|
434
|
-
{
|
|
435
|
-
this.log.error(`Marshal destination object is not an object; if you initialize the view yourself you must set the viewMarshalDestination property to a valid address within the view. Falling back to AppData.`);
|
|
436
|
-
tmpMarshalDestinationObject = this.pict.AppData;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
return tmpMarshalDestinationObject;
|
|
402
|
+
return this.pict.providers.DataBroker.resolveMarshalDestinationObject(this.viewMarshalDestination);
|
|
440
403
|
}
|
|
441
404
|
|
|
442
405
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const libPictViewClass = require('pict-view');
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const libPictDynamicFormDependencyManager = require(`../services/Pict-Service-DynamicFormDependencyManager.js`);
|
|
4
4
|
const libPictViewDynamicForm = require('./Pict-View-DynamicForm.js');
|
|
5
5
|
|
|
6
6
|
// TODO: Potentially create an internalized list of views for this to manage, separate from the pict.views object
|
|
@@ -26,7 +26,7 @@ class PictFormMetacontroller extends libPictViewClass
|
|
|
26
26
|
this.serviceType = 'PictFormMetacontroller';
|
|
27
27
|
|
|
28
28
|
// Load the dynamic application dependencies if they don't exist
|
|
29
|
-
this.fable.addAndInstantiateSingletonService('
|
|
29
|
+
this.fable.addAndInstantiateSingletonService('PictDynamicFormDependencyManager', libPictDynamicFormDependencyManager.default_configuration, libPictDynamicFormDependencyManager);
|
|
30
30
|
|
|
31
31
|
this.lastRenderedViews = [];
|
|
32
32
|
|
|
@@ -535,6 +535,11 @@ class PictFormMetacontroller extends libPictViewClass
|
|
|
535
535
|
{
|
|
536
536
|
let tmpDescriptor = tmpManifest.elementDescriptors[tmpDescriptorKeys[i]];
|
|
537
537
|
|
|
538
|
+
if (tmpDescriptor && tmpDescriptor.PictForm)
|
|
539
|
+
{
|
|
540
|
+
this.pict.manifest.addDescriptor(tmpDescriptorKeys[i], tmpDescriptor);
|
|
541
|
+
}
|
|
542
|
+
|
|
538
543
|
if (
|
|
539
544
|
// If there is an object in the descriptor
|
|
540
545
|
typeof(tmpDescriptor) == 'object' &&
|
|
@@ -78,7 +78,7 @@ suite
|
|
|
78
78
|
|
|
79
79
|
tmpViewConfiguration.Manifests = { Section: manifestPostcard };
|
|
80
80
|
|
|
81
|
-
_Pict.addAndInstantiateSingletonService('
|
|
81
|
+
_Pict.addAndInstantiateSingletonService('PictDynamicFormDependencyManager', libPictSectionForm.PictDynamicFormDependencyManager.default_configuration, libPictSectionForm.PictDynamicFormDependencyManager);
|
|
82
82
|
|
|
83
83
|
let _PictSectionForm = _Pict.addView(tmpViewHash, tmpViewConfiguration, libPictSectionForm);
|
|
84
84
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _exports: {
|
|
2
2
|
new (pFable: any, pOptions: any, pServiceHash: any): import("./views/Pict-View-DynamicForm.js");
|
|
3
3
|
default_configuration: Record<string, any>;
|
|
4
|
-
|
|
4
|
+
PictDynamicFormDependencyManager: typeof import("./services/Pict-Service-DynamicFormDependencyManager.js");
|
|
5
5
|
PictFormTemplateProvider: typeof import("./providers/Pict-Provider-DynamicTemplates.js");
|
|
6
6
|
PictInputExtensionProvider: typeof import("./providers/Pict-Provider-InputExtension.js");
|
|
7
7
|
PictFormMetacontroller: typeof import("./views/Pict-View-Form-Metacontroller.js");
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export =
|
|
2
|
-
declare class
|
|
1
|
+
export = PictDynamicFormDependencyManager;
|
|
2
|
+
declare class PictDynamicFormDependencyManager {
|
|
3
3
|
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
4
|
/** @type {import('pict') & { addAndInstantiateSingletonService: (hash: string, options: any, prototype: any) => any }} */
|
|
5
5
|
fable: import("pict") & {
|
|
@@ -10,7 +10,7 @@ declare class PictDynamicApplication {
|
|
|
10
10
|
/** @type {string} */
|
|
11
11
|
UUID: string;
|
|
12
12
|
}
|
|
13
|
-
declare namespace
|
|
13
|
+
declare namespace PictDynamicFormDependencyManager {
|
|
14
14
|
let default_configuration: Record<string, any>;
|
|
15
15
|
}
|
|
16
|
-
//# sourceMappingURL=Pict-Service-
|
|
16
|
+
//# sourceMappingURL=Pict-Service-DynamicFormDependencyManager.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Pict-Service-DynamicFormDependencyManager.d.ts","sourceRoot":"","sources":["../../../source/services/Pict-Service-DynamicFormDependencyManager.js"],"names":[],"mappings":";AAyBA;IAEC,2DAmCC;IA7BA,0HAA0H;IAC1H,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,iCAAiC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG,CAAA;KAAE,CAC5G;IACV,kBAAkB;IAClB,KADW,GAAG,CACN;IACR,qBAAqB;IACrB,MADW,MAAM,CACR;CAyBV;;+BAIU,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-View-DynamicForm.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-DynamicForm.js"],"names":[],"mappings":";AAUA;;;;;;;GAOG;AACH;IAEC,2DA6GC;IAnEA,gKAAgK;IAChK,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,eAAe,EAAE,OAAO,kBAAkB,CAAC,CAAC;QAAC,GAAG,EAAE,GAAG,CAAC;QAAC,6CAA6C,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG,CAAC;KAAE,CACnJ;IAUT,yEAAyE;IACzE,qBADW,OAAO,kDAAkD,CAAC,CACqC;IAE1G,kCAAkC;IAClC,kBADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CACO;IAIrC,uBAAqC;IAGrC,qBAA2H;IAG3H,sBAAwB;IAcxB,+BAA6D;IAmB7D,iCAAuC;IAEvC,eAAmD;IAEnD,4BAAkC;IAClC,6BAAgC;IAMjC;;;;OAIG;IACH,6BAFa,MAAM,CAgBlB;IAED;;;;;;;;OAQG;IACH,wBAFW,MAAM,QA+ChB;IAGD;;;;;;OAMG;IACH,gCAJW,MAAM,eACN,MAAM,aACN,MAAM,QAsDhB;IAED;;;;;;OAMG;IACH,uBAJW,MAAM,UACN,GAAG,GACD,OAAO,CA+BnB;IAED;;;;;;;;OAQG;IACH,kCANW,MAAM,cACN,MAAM,aACN,MAAM,UACN,GAAG,GACD,OAAO,CAmEnB;IAED;;;;OAIG;IACH,gCAFa,MAAM,
|
|
1
|
+
{"version":3,"file":"Pict-View-DynamicForm.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-DynamicForm.js"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-View-Form-Metacontroller.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-Form-Metacontroller.js"],"names":[],"mappings":";AASA;;GAEG;AAEH;;;;;;GAMG;AACH;IAEC,2DAaC;IALA,yBAA2B;IAE3B,wBAAsF;IAEtF,cAAkC;IAQnC,wCAGC;IARD,kCAGC;IAOD;;;;OAIG;IACH,qBAFa,GAAG,CAaf;IAED;;;;OAIG;IACH,mBAFa,GAAG,CAaf;IAED,yCAYC;IAED;;;;;OAKG;IACH,kCAHW,aAAa,GACX,IAAI,CAsBhB;IA2BD;;;;OAIG;IACH,WAFa,GAAG,CAMf;IAED,gDAGC;IAED,+CAGC;IAED;;;;;;;;OAQG;IACH,wDAHW,YAAY,SAmHtB;IAED;;;;;;;OAOG;IACH,4CAHW,MAAM,GACJ,IAAI,CAShB;IAED;;;;OAIG;IACH,6BAFa,IAAI,CAQhB;IAED;;;;;;;OAOG;IACH,+DAFW,YAAY,QAatB;IAED;;;;;OAKG;IACH,8EAFW,YAAY,QAmBtB;IAED;;;;;;OAMG;IACH,oEAHW,YAAY,GACV,IAAI,CAkDhB;IAED;;;;;OAKG;IACH,qCAHW,MAAM,GACJ,MAAM,GAAC,OAAO,CA2C1B;IAED;;;;;OAKG;IACH,
|
|
1
|
+
{"version":3,"file":"Pict-View-Form-Metacontroller.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-Form-Metacontroller.js"],"names":[],"mappings":";AASA;;GAEG;AAEH;;;;;;GAMG;AACH;IAEC,2DAaC;IALA,yBAA2B;IAE3B,wBAAsF;IAEtF,cAAkC;IAQnC,wCAGC;IARD,kCAGC;IAOD;;;;OAIG;IACH,qBAFa,GAAG,CAaf;IAED;;;;OAIG;IACH,mBAFa,GAAG,CAaf;IAED,yCAYC;IAED;;;;;OAKG;IACH,kCAHW,aAAa,GACX,IAAI,CAsBhB;IA2BD;;;;OAIG;IACH,WAFa,GAAG,CAMf;IAED,gDAGC;IAED,+CAGC;IAED;;;;;;;;OAQG;IACH,wDAHW,YAAY,SAmHtB;IAED;;;;;;;OAOG;IACH,4CAHW,MAAM,GACJ,IAAI,CAShB;IAED;;;;OAIG;IACH,6BAFa,IAAI,CAQhB;IAED;;;;;;;OAOG;IACH,+DAFW,YAAY,QAatB;IAED;;;;;OAKG;IACH,8EAFW,YAAY,QAmBtB;IAED;;;;;;OAMG;IACH,oEAHW,YAAY,GACV,IAAI,CAkDhB;IAED;;;;;OAKG;IACH,qCAHW,MAAM,GACJ,MAAM,GAAC,OAAO,CA2C1B;IAED;;;;;OAKG;IACH,qEAkIC;IA9GA,yBAAiD;IAgHlD;;;OAGG;IACH,gCAFW,MAAM,QAgBhB;IAED;;;;OAIG;IACH,4BAFa,OAAO,CAKnB;CACD;;;;;qCAGU,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;oBA5nBjB,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,KAAK,MAAM"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Service-DynamicApplication.d.ts","sourceRoot":"","sources":["../../../source/services/Pict-Service-DynamicApplication.js"],"names":[],"mappings":";AAyBA;IAEC,2DAmCC;IA7BA,0HAA0H;IAC1H,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,iCAAiC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG,CAAA;KAAE,CAC5G;IACV,kBAAkB;IAClB,KADW,GAAG,CACN;IACR,qBAAqB;IACrB,MADW,MAAM,CACR;CAyBV;;+BAIU,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC"}
|