dobo 2.30.7 → 2.32.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.
Files changed (123) hide show
  1. package/.jsdoc.conf.json +1 -1
  2. package/docs/Dobo.html +1 -24
  3. package/docs/DoboAction.html +13 -0
  4. package/docs/DoboAdapter.html +3 -0
  5. package/docs/DoboConnection.html +3 -0
  6. package/docs/DoboFeature.html +3 -0
  7. package/docs/DoboModel.html +51 -0
  8. package/docs/data/search.json +1 -1
  9. package/docs/extend_bajo_hook-docs.js.html +241 -0
  10. package/docs/external-Tools.html +3 -0
  11. package/docs/global.html +1 -5
  12. package/docs/index.html +1 -1
  13. package/docs/index.js.html +434 -380
  14. package/docs/lib_factory_action.js.html +290 -0
  15. package/docs/lib_factory_adapter.js.html +1057 -0
  16. package/docs/lib_factory_connection.js.html +112 -0
  17. package/docs/lib_factory_feature.js.html +55 -0
  18. package/docs/lib_factory_model.js.html +503 -0
  19. package/docs/lib_factory_model_build.js.html +28 -0
  20. package/docs/lib_factory_model_clear-record.js.html +33 -0
  21. package/docs/lib_factory_model_count-record.js.html +45 -0
  22. package/docs/lib_factory_model_create-record.js.html +52 -0
  23. package/docs/lib_factory_model_drop.js.html +29 -0
  24. package/docs/lib_factory_model_exists.js.html +29 -0
  25. package/docs/lib_factory_model_find-all-record.js.html +115 -0
  26. package/docs/lib_factory_model_find-one-record.js.html +41 -0
  27. package/docs/lib_factory_model_find-record.js.html +85 -0
  28. package/docs/lib_factory_model_get-record.js.html +55 -0
  29. package/docs/lib_factory_model_helper.js.html +579 -0
  30. package/docs/lib_factory_model_remove-record.js.html +47 -0
  31. package/docs/lib_factory_model_sanitize-body.js.html +60 -0
  32. package/docs/lib_factory_model_sanitize-fixture.js.html +59 -0
  33. package/docs/lib_factory_model_sanitize-record.js.html +73 -0
  34. package/docs/lib_factory_model_update-record.js.html +61 -0
  35. package/docs/lib_factory_model_upsert-record.js.html +74 -0
  36. package/docs/{method_validate.js.html → lib_factory_model_validate.js.html} +109 -73
  37. package/docs/lib_helper.js.html +466 -0
  38. package/docs/module-Helper.html +3 -0
  39. package/docs/module-Helper_Model.html +3 -0
  40. package/docs/module-Hook.html +15 -0
  41. package/docs/scripts/core.js +477 -476
  42. package/docs/scripts/resize.js +36 -36
  43. package/docs/scripts/search.js +105 -105
  44. package/docs/scripts/third-party/fuse.js +1 -1
  45. package/docs/scripts/third-party/hljs-line-num-original.js +285 -282
  46. package/docs/scripts/third-party/hljs-line-num.js +1 -1
  47. package/docs/scripts/third-party/hljs-original.js +1202 -1195
  48. package/docs/scripts/third-party/hljs.js +1 -1
  49. package/docs/scripts/third-party/popper.js +1 -1
  50. package/docs/scripts/third-party/tippy.js +1 -1
  51. package/docs/scripts/third-party/tocbot.js +509 -508
  52. package/docs/static/home.md +3 -1
  53. package/extend/bajo/hook-docs.js +238 -0
  54. package/extend/bajo/intl/en-US.json +9 -9
  55. package/extend/bajo/intl/id.json +9 -9
  56. package/extend/bajoCli/applet/rebuild-model.js +2 -2
  57. package/extend/dobo/{driver → adapter}/memory.js +6 -6
  58. package/extend/dobo/feature/immutable.js +2 -2
  59. package/extend/dobo/feature/removed-at.js +1 -1
  60. package/index.js +33 -30
  61. package/lib/factory/action.js +145 -18
  62. package/lib/factory/adapter.js +1054 -0
  63. package/lib/factory/connection.js +46 -22
  64. package/lib/factory/feature.js +23 -3
  65. package/lib/factory/model/build.js +11 -2
  66. package/lib/factory/model/bulk-create-record.js +2 -2
  67. package/lib/factory/model/clear-record.js +13 -3
  68. package/lib/factory/model/count-record.js +13 -2
  69. package/lib/factory/model/create-aggregate.js +2 -2
  70. package/lib/factory/model/create-attachment.js +1 -1
  71. package/lib/factory/model/create-histogram.js +2 -2
  72. package/lib/factory/model/create-record.js +15 -2
  73. package/lib/factory/model/drop.js +12 -2
  74. package/lib/factory/model/exists.js +10 -6
  75. package/lib/factory/model/find-all-record.js +14 -3
  76. package/lib/factory/model/find-attachment.js +1 -1
  77. package/lib/factory/model/find-one-record.js +13 -1
  78. package/lib/factory/model/find-record.js +17 -53
  79. package/lib/factory/model/get-record.js +11 -39
  80. package/lib/factory/model/{_util.js → helper.js} +176 -16
  81. package/lib/factory/model/remove-attachment.js +1 -1
  82. package/lib/factory/model/remove-record.js +11 -28
  83. package/lib/factory/model/sanitize-body.js +14 -12
  84. package/lib/factory/model/sanitize-fixture.js +17 -4
  85. package/lib/factory/model/sanitize-record.js +9 -6
  86. package/lib/factory/model/transaction.js +2 -2
  87. package/lib/factory/model/update-record.js +12 -40
  88. package/lib/factory/model/upsert-record.js +13 -42
  89. package/lib/factory/model/validate.js +47 -14
  90. package/lib/factory/model.js +301 -23
  91. package/lib/{collect-models.js → helper.js} +463 -364
  92. package/package.json +1 -1
  93. package/wiki/CHANGES.md +17 -7
  94. package/wiki/ECOSYSTEM.md +7 -7
  95. package/wiki/GETTING-STARTED.md +3 -3
  96. package/wiki/QUERY-LANGUAGE.md +1 -1
  97. package/docs/lib_collect-connections.js.html +0 -39
  98. package/docs/lib_collect-drivers.js.html +0 -52
  99. package/docs/lib_collect-features.js.html +0 -36
  100. package/docs/lib_collect-schemas.js.html +0 -94
  101. package/docs/lib_index.js.html +0 -6
  102. package/docs/method_model_create.js.html +0 -35
  103. package/docs/method_model_drop.js.html +0 -34
  104. package/docs/method_model_exists.js.html +0 -40
  105. package/docs/method_record_count.js.html +0 -69
  106. package/docs/method_record_create.js.html +0 -114
  107. package/docs/method_record_find-all.js.html +0 -44
  108. package/docs/method_record_find-one.js.html +0 -73
  109. package/docs/method_record_find.js.html +0 -118
  110. package/docs/method_record_get.js.html +0 -92
  111. package/docs/method_record_remove.js.html +0 -75
  112. package/docs/method_record_update.js.html +0 -107
  113. package/docs/method_record_upsert.js.html +0 -54
  114. package/docs/method_sanitize_body.js.html +0 -88
  115. package/docs/method_sanitize_date.js.html +0 -30
  116. package/docs/method_sanitize_id.js.html +0 -20
  117. package/docs/module-Lib.html +0 -3
  118. package/lib/collect-connections.js +0 -56
  119. package/lib/collect-drivers.js +0 -35
  120. package/lib/collect-features.js +0 -40
  121. package/lib/factory/driver.js +0 -574
  122. package/lib/factory/model/sanitize-id.js +0 -7
  123. package/lib/index.js +0 -3
@@ -0,0 +1,290 @@
1
+ <!DOCTYPE html><html lang="en" style="font-size:16px"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Source: lib/factory/action.js</title><!--[if lt IE 9]>
2
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
3
+ <![endif]--><script src="scripts/third-party/hljs.js" defer="defer"></script><script src="scripts/third-party/hljs-line-num.js" defer="defer"></script><script src="scripts/third-party/popper.js" defer="defer"></script><script src="scripts/third-party/tippy.js" defer="defer"></script><script src="scripts/third-party/tocbot.min.js"></script><script>var baseURL="/",locationPathname="";baseURL=(locationPathname=document.location.pathname).substr(0,locationPathname.lastIndexOf("/")+1)</script><link rel="stylesheet" href="styles/clean-jsdoc-theme.min.css"><svg aria-hidden="true" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none"><defs><symbol id="copy-icon" viewbox="0 0 488.3 488.3"><g><path d="M314.25,85.4h-227c-21.3,0-38.6,17.3-38.6,38.6v325.7c0,21.3,17.3,38.6,38.6,38.6h227c21.3,0,38.6-17.3,38.6-38.6V124 C352.75,102.7,335.45,85.4,314.25,85.4z M325.75,449.6c0,6.4-5.2,11.6-11.6,11.6h-227c-6.4,0-11.6-5.2-11.6-11.6V124 c0-6.4,5.2-11.6,11.6-11.6h227c6.4,0,11.6,5.2,11.6,11.6V449.6z"/><path d="M401.05,0h-227c-21.3,0-38.6,17.3-38.6,38.6c0,7.5,6,13.5,13.5,13.5s13.5-6,13.5-13.5c0-6.4,5.2-11.6,11.6-11.6h227 c6.4,0,11.6,5.2,11.6,11.6v325.7c0,6.4-5.2,11.6-11.6,11.6c-7.5,0-13.5,6-13.5,13.5s6,13.5,13.5,13.5c21.3,0,38.6-17.3,38.6-38.6 V38.6C439.65,17.3,422.35,0,401.05,0z"/></g></symbol><symbol id="search-icon" viewBox="0 0 512 512"><g><g><path d="M225.474,0C101.151,0,0,101.151,0,225.474c0,124.33,101.151,225.474,225.474,225.474 c124.33,0,225.474-101.144,225.474-225.474C450.948,101.151,349.804,0,225.474,0z M225.474,409.323 c-101.373,0-183.848-82.475-183.848-183.848S124.101,41.626,225.474,41.626s183.848,82.475,183.848,183.848 S326.847,409.323,225.474,409.323z"/></g></g><g><g><path d="M505.902,476.472L386.574,357.144c-8.131-8.131-21.299-8.131-29.43,0c-8.131,8.124-8.131,21.306,0,29.43l119.328,119.328 c4.065,4.065,9.387,6.098,14.715,6.098c5.321,0,10.649-2.033,14.715-6.098C514.033,497.778,514.033,484.596,505.902,476.472z"/></g></g></symbol><symbol id="font-size-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M11.246 15H4.754l-2 5H.6L7 4h2l6.4 16h-2.154l-2-5zm-.8-2L8 6.885 5.554 13h4.892zM21 12.535V12h2v8h-2v-.535a4 4 0 1 1 0-6.93zM19 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/></symbol><symbol id="add-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2z"/></symbol><symbol id="minus-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M5 11h14v2H5z"/></symbol><symbol id="dark-theme-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M10 7a7 7 0 0 0 12 4.9v.1c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2h.1A6.979 6.979 0 0 0 10 7zm-6 5a8 8 0 0 0 15.062 3.762A9 9 0 0 1 8.238 4.938 7.999 7.999 0 0 0 4 12z"/></symbol><symbol id="light-theme-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12zm0-2a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM11 1h2v3h-2V1zm0 19h2v3h-2v-3zM3.515 4.929l1.414-1.414L7.05 5.636 5.636 7.05 3.515 4.93zM16.95 18.364l1.414-1.414 2.121 2.121-1.414 1.414-2.121-2.121zm2.121-14.85l1.414 1.415-2.121 2.121-1.414-1.414 2.121-2.121zM5.636 16.95l1.414 1.414-2.121 2.121-1.414-1.414 2.121-2.121zM23 11v2h-3v-2h3zM4 11v2H1v-2h3z"/></symbol><symbol id="reset-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M18.537 19.567A9.961 9.961 0 0 1 12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10c0 2.136-.67 4.116-1.81 5.74L17 12h3a8 8 0 1 0-2.46 5.772l.997 1.795z"/></symbol><symbol id="down-icon" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7803 6.21967C13.0732 6.51256 13.0732 6.98744 12.7803 7.28033L8.53033 11.5303C8.23744 11.8232 7.76256 11.8232 7.46967 11.5303L3.21967 7.28033C2.92678 6.98744 2.92678 6.51256 3.21967 6.21967C3.51256 5.92678 3.98744 5.92678 4.28033 6.21967L8 9.93934L11.7197 6.21967C12.0126 5.92678 12.4874 5.92678 12.7803 6.21967Z"></path></symbol><symbol id="codepen-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M16.5 13.202L13 15.535v3.596L19.197 15 16.5 13.202zM14.697 12L12 10.202 9.303 12 12 13.798 14.697 12zM20 10.869L18.303 12 20 13.131V10.87zM19.197 9L13 4.869v3.596l3.5 2.333L19.197 9zM7.5 10.798L11 8.465V4.869L4.803 9 7.5 10.798zM4.803 15L11 19.131v-3.596l-3.5-2.333L4.803 15zM4 13.131L5.697 12 4 10.869v2.262zM2 9a1 1 0 0 1 .445-.832l9-6a1 1 0 0 1 1.11 0l9 6A1 1 0 0 1 22 9v6a1 1 0 0 1-.445.832l-9 6a1 1 0 0 1-1.11 0l-9-6A1 1 0 0 1 2 15V9z"/></symbol><symbol id="close-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M12 10.586l4.95-4.95 1.414 1.414-4.95 4.95 4.95 4.95-1.414 1.414-4.95-4.95-4.95 4.95-1.414-1.414 4.95-4.95-4.95-4.95L7.05 5.636z"/></symbol><symbol id="menu-icon" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M3 4h18v2H3V4zm0 7h18v2H3v-2zm0 7h18v2H3v-2z"/></symbol></defs></svg></head><body data-theme="light"><div class="sidebar-container"><div class="sidebar" id="sidebar"><a href="/" class="sidebar-title sidebar-title-anchor">Dobo API</a><div class="sidebar-items-container"><div class="sidebar-section-title with-arrow" data-isopen="false" id="sidebar-classes"><div>Classes</div><svg><use xlink:href="#down-icon"></use></svg></div><div class="sidebar-section-children-container"><div class="sidebar-section-children"><a href="Dobo.html">Dobo</a></div><div class="sidebar-section-children"><a href="DoboAction.html">DoboAction</a></div><div class="sidebar-section-children"><a href="DoboAdapter.html">DoboAdapter</a></div><div class="sidebar-section-children"><a href="DoboConnection.html">DoboConnection</a></div><div class="sidebar-section-children"><a href="DoboFeature.html">DoboFeature</a></div><div class="sidebar-section-children"><a href="DoboModel.html">DoboModel</a></div></div><div class="sidebar-section-title with-arrow" data-isopen="false" id="sidebar-modules"><div>Modules</div><svg><use xlink:href="#down-icon"></use></svg></div><div class="sidebar-section-children-container"><div class="sidebar-section-children"><a href="module-Helper.html">Helper</a></div><div class="sidebar-section-children"><a href="module-Helper_Model.html">Helper/Model</a></div><div class="sidebar-section-children"><a href="module-Hook.html">Hook</a></div></div><div class="sidebar-section-title with-arrow" data-isopen="false" id="sidebar-externals"><div>Externals</div><svg><use xlink:href="#down-icon"></use></svg></div><div class="sidebar-section-children-container"><div class="sidebar-section-children"><a href="external-Tools.html">Tools</a></div></div><div class="sidebar-section-title with-arrow" data-isopen="false" id="sidebar-global"><div>Global</div><svg><use xlink:href="#down-icon"></use></svg></div><div class="sidebar-section-children-container"><div class="sidebar-section-children"><a href="global.html#actionFactory">actionFactory</a></div><div class="sidebar-section-children"><a href="global.html#adapterFactory">adapterFactory</a></div><div class="sidebar-section-children"><a href="global.html#connectionFactory">connectionFactory</a></div><div class="sidebar-section-children"><a href="global.html#featureFactory">featureFactory</a></div><div class="sidebar-section-children"><a href="global.html#modelFactory">modelFactory</a></div><div class="sidebar-section-children"><a href="global.html#pluginFactory">pluginFactory</a></div></div></div></div></div><div class="navbar-container" id="VuAckcnZhf"><nav class="navbar"><div class="navbar-left-items"><div class="navbar-item"><a id="" href="https://www.npmjs.com/package/dobo" target="">NPM</a></div><div class="navbar-item"><a id="" href="https://github.com/ardhi/dobo" target="">Github</a></div><div class="navbar-item"><a id="" href="https://dobo.bajo.app/" target="">Dobo</a></div><div class="navbar-item"><a id="" href="https://bajo.app/" target="">Bajo</a></div></div><div class="navbar-right-items"><div class="navbar-right-item"><button class="icon-button search-button" aria-label="open-search"><svg><use xlink:href="#search-icon"></use></svg></button></div><div class="navbar-right-item"><button class="icon-button theme-toggle" aria-label="toggle-theme"><svg><use class="theme-svg-use" xlink:href="#dark-theme-icon"></use></svg></button></div><div class="navbar-right-item"><button class="icon-button font-size" aria-label="change-font-size"><svg><use xlink:href="#font-size-icon"></use></svg></button></div></div><nav></nav></nav></div><div class="toc-container"><div class="toc-content"><span class="bold">On this page</span><div id="eed4d2a0bfd64539bb9df78095dec881"></div></div></div><div class="body-wrapper"><div class="main-content"><div class="main-wrapper"><section id="source-page" class="source-page"><header><h1 id="title" class="has-anchor">lib_factory_action.js</h1></header><article><pre class="prettyprint source lang-js"><code>/**
4
+ * Dobo model's chainable methods. Only the keys listed here are allowed to be called in chainable methods.
5
+ * The values are the only allowed arguments for the corresponding chainable methods.
6
+ * @typedef {Object} TMethods
7
+ * @type {Object}
8
+ * @memberof DoboAction
9
+ * @property {string[]} [createRecord=['body']]
10
+ * @property {string[]} [updateRecord=['id', 'body']]
11
+ * @property {string[]} [upsertRecord=['body']]
12
+ * @property {string[]} [removeRecord=['id']]
13
+ * @property {string[]} [getRecord=['id']]
14
+ * @property {string[]} [findRecord=['filter']]
15
+ * @property {string[]} [findOneRecord=['filter']]
16
+ * @property {string[]} [findAllRecord=['filter']]
17
+ * @property {string[]} [findAllRecords=['filter']] - Alias of `findAllRecord`
18
+ * @property {string[]} [countRecord=['params']]
19
+ * @property {string[]} [createAggregate=['params']]
20
+ * @property {string[]} [createHistogram=['params']]
21
+ * @property {string[]} [createAttachment=['id']]
22
+ * @property {string[]} [findAttachment=['id']]
23
+ * @property {string[]} [getAttachment=['id', 'field', 'file']]
24
+ * @property {string[]} [listAttachment=['params']]
25
+ * @property {string[]} [removeAttachment=['id', 'field', 'file']]
26
+ * @property {string[]} [updateAttachment=['id']]
27
+ */
28
+ const methods = {
29
+ createRecord: ['body'],
30
+ updateRecord: ['id', 'body'],
31
+ upsertRecord: ['body'],
32
+ removeRecord: ['id'],
33
+ getRecord: ['id'],
34
+ findRecord: ['filter'],
35
+ findOneRecord: ['filter'],
36
+ findAllRecord: ['filter'],
37
+ findAllRecords: ['filter'],
38
+ countRecord: ['params'],
39
+ createAggregate: ['params'],
40
+ createHistogram: ['params'],
41
+ createAttachment: ['id'],
42
+ findAttachment: ['id'],
43
+ getAttachment: ['id', 'field', 'file'],
44
+ listAttachment: ['params'],
45
+ removeAttachment: ['id', 'field', 'file'],
46
+ updateAttachment: ['id']
47
+ }
48
+
49
+ /**
50
+ * Allowed options for Dobo model's chainable methods. Only the keys listed here are allowed to be called
51
+ * in chainable methods. The values are the default values for the corresponding options.
52
+ * @typedef {Object} TOptions
53
+ * @type {Object}
54
+ * @memberof DoboAction
55
+ * @property {boolean} [truncateString=true]
56
+ * @property {boolean} [noResult=false]
57
+ * @property {boolean} [noBodySanitizer=false]
58
+ * @property {boolean} [noResultSanitizer=false]
59
+ * @property {boolean} [noValidation=false]
60
+ * @property {boolean} [dataOnly=true]
61
+ * @property {boolean} [noHook=false]
62
+ * @property {boolean} [noModelHook=false]
63
+ * @property {boolean} [noDynHook=false]
64
+ * @property {Array} [extFields=[]]
65
+ * @property {Array} [fields=[]]
66
+ * @property {boolean} [noFlash=false]
67
+ * @property {Array} [hidden=[]]
68
+ * @property {Array} [refs=[]]
69
+ * @property {Array} [types=[]]
70
+ * @property {string|undefined} [type=undefined]
71
+ * @property {string|undefined} [group=undefined]
72
+ * @property {Array} [aggregates=[]]
73
+ * @property {string|undefined} [field=undefined]
74
+ * @property {string|undefined} [queryHandler=undefined]
75
+ * @property {boolean} [count=true]
76
+ * @property {boolean} [noCache=true]
77
+ * @property {boolean} [partial=true]
78
+ * @property {boolean} [mimeType=true]
79
+ * @property {boolean} [fullPath=true]
80
+ * @property {boolean} [stats=true]
81
+ * @property {boolean} [dirOnly=true]
82
+ * @property {string|undefined} [setField=undefined]
83
+ * @property {string|undefined} [setFile=undefined]
84
+ * @property {string|undefined} [source=undefined]
85
+ * @property {boolean} [uriEncoded=true]
86
+ */
87
+ const options = {
88
+ truncateString: true,
89
+ noResult: false,
90
+ noBodySanitizer: false,
91
+ noResultSanitizer: false,
92
+ noValidation: false,
93
+ dataOnly: true,
94
+ noHook: false,
95
+ noModelHook: false,
96
+ noDynHook: false,
97
+ extFields: [],
98
+ fields: [],
99
+ noFlash: false,
100
+ hidden: [],
101
+ refs: [],
102
+ types: [],
103
+ type: undefined,
104
+ group: undefined,
105
+ aggregates: [],
106
+ field: undefined,
107
+ queryHandler: undefined,
108
+ count: true,
109
+ noCache: true,
110
+ partial: true,
111
+ // attachment
112
+ mimeType: true,
113
+ fullPath: true,
114
+ stats: true,
115
+ dirOnly: true,
116
+ setField: undefined,
117
+ setFile: undefined,
118
+ source: undefined,
119
+ uriEncoded: true
120
+ }
121
+
122
+ /**
123
+ * Action factory function
124
+ *
125
+ * @async
126
+ * @returns {Promise&lt;void>}
127
+ */
128
+ async function actionFactory () {
129
+ const { Tools } = this.app.baseClass
130
+
131
+ /**
132
+ * Action class enables you to call model's method with all parameters and options in chainable methods
133
+ * in addition of the normal call.
134
+ *
135
+ * Action class is created by calling model method without any parameter.
136
+ * The resulted class instance can be used to call model's method with all parameters and options
137
+ * in chainable methods.
138
+ *
139
+ * Action class can also be created by calling `model.action()` method, with or without parameters.
140
+ * Please see the example below:
141
+ *
142
+ * You always need to call the `run()` method as the last step. The `run()` method will return the result
143
+ * of the model's method call.
144
+ *
145
+ * @class
146
+ * @example
147
+ * // method 1:
148
+ * const action = await model.getRecord() // Important: no parameter passed
149
+ * const result = action.id('rec-id').noHook().dataOnly(false).run()
150
+ * // method 2:
151
+ * const result = await model.action().getRecord('rec-id').noHook().dataOnly(false).run()
152
+ * // method 3:
153
+ * const result = await model.action('getRecord').id('rec-id').noHook().dataOnly(false).run()
154
+ * // method 4:
155
+ * const result = await model.action('getRecord', 'rec-id').noHook().dataOnly(false).run()
156
+ * // Instead of chaining options as methods, you can also pass options object as the parameter to the run() method
157
+ * const result = await model.action('getRecord', 'rec-id').run({ noHook: true, dataOnly: false })
158
+ */
159
+ class DoboAction extends Tools {
160
+ constructor (model, name, ...args) {
161
+ super(model.plugin)
162
+ this.model = model
163
+ this.name = name
164
+ this._options = {}
165
+ if (name) this._setArgs(name, args)
166
+ // create methods
167
+ for (const method in methods) {
168
+ this[method] = (...args) => {
169
+ this.name = method
170
+ this._setArgs(method, args)
171
+ this._options = {}
172
+ return this
173
+ }
174
+ }
175
+ // create options builder methods
176
+ for (const option in options) {
177
+ this[option] = (value) => {
178
+ this._options[option] = value ?? options[option]
179
+ return this
180
+ }
181
+ }
182
+ }
183
+
184
+ /**
185
+ * Internal method to set the arguments to the instance properties based on the method name
186
+ * and the arguments passed.
187
+ * @internal
188
+ * @method
189
+ * @param {string} method - The name of the method being called
190
+ * @param {Array} args - The arguments passed to the method
191
+ * @returns {void}
192
+ */
193
+ _setArgs = (method, args) => {
194
+ if (args.length === 0) return
195
+ for (const idx in methods[method]) {
196
+ this['_' + methods[method][idx]] = args[idx]
197
+ }
198
+ }
199
+
200
+ /**
201
+ * Set the ID for the corresponding record. You need this for `updateRecord` or `removeRecord`
202
+ * operations. This method is chainable.
203
+ * @method
204
+ * @param {string|number} value - The ID value to set
205
+ * @returns {DoboAction} The current instance for chaining
206
+ */
207
+ id = value => {
208
+ this._id = value
209
+ return this
210
+ }
211
+
212
+ /**
213
+ * Set the body for the corresponding record. You need this for `createRecord`, `updateRecord`
214
+ * or `upsertRecord` operations. This method is chainable.
215
+ * @method
216
+ * @param {object} value - The body value to set
217
+ * @returns {DoboAction} The current instance for chaining
218
+ */
219
+ body = value => {
220
+ this._body = value
221
+ return this
222
+ }
223
+
224
+ /**
225
+ * Set the filter for the corresponding record. You optionally need this for `findRecord`,
226
+ * `findOneRecord` or `findAllRecord` operations. This method is chainable.
227
+ * @method
228
+ * @param {object} value - The filter value to set
229
+ * @returns {DoboAction} The current instance for chaining
230
+ */
231
+ filter = value => {
232
+ this._filter = value
233
+ return this
234
+ }
235
+
236
+ field = value => {
237
+ this._field = value
238
+ return this
239
+ }
240
+
241
+ file = value => {
242
+ this._file = value
243
+ return this
244
+ }
245
+
246
+ /**
247
+ * Set the options for the corresponding method. This method is chainable.
248
+ * @method
249
+ * @param {DoboAction.TOptions} value - The options to set
250
+ * @returns {DoboAction} The current instance for chaining
251
+ */
252
+ options = (value = {}) => {
253
+ for (const k in value) {
254
+ this._options[k] = value
255
+ }
256
+ return this
257
+ }
258
+
259
+ /**
260
+ * Execute the corresponding method with the set arguments and options. This method is chainable.
261
+ * @async
262
+ * @method
263
+ * @param {DoboAction.TOptions} value - If set, it will override the options set by the `options()` method. This is useful if you want to set options at the last step.
264
+ * @returns {Promise&lt;*>} The result of the method execution
265
+ */
266
+ run = async (value = {}) => {
267
+ this.options(value)
268
+ const args = methods[this.name].map(item => this['_' + item])
269
+ args.push(this._options)
270
+ return await this.model[this.name](...args)
271
+ }
272
+
273
+ /**
274
+ * Dispose the instance and clean up resources.
275
+ * @async
276
+ * @method
277
+ * @returns {Promise&lt;void>}
278
+ */
279
+ dispose = async () => {
280
+ await super.dispose()
281
+ this.model = null
282
+ this._options = null
283
+ }
284
+ }
285
+
286
+ this.app.baseClass.DoboAction = DoboAction
287
+ }
288
+
289
+ export default actionFactory
290
+ </code></pre></article></section></div></div></div><div class="search-container" id="PkfLWpAbet" style="display:none"><div class="wrapper" id="iCxFxjkHbP"><button class="icon-button search-close-button" id="VjLlGakifb" aria-label="close search"><svg><use xlink:href="#close-icon"></use></svg></button><div class="search-box-c"><svg><use xlink:href="#search-icon"></use></svg> <input type="text" id="vpcKVYIppa" class="search-input" placeholder="Search..." autofocus></div><div class="search-result-c" id="fWwVHRuDuN"><span class="search-result-c-text">Type anything to view search result</span></div></div></div><div class="mobile-menu-icon-container"><button class="icon-button" id="mobile-menu" data-isopen="false" aria-label="menu"><svg><use xlink:href="#menu-icon"></use></svg></button></div><div id="mobile-sidebar" class="mobile-sidebar-container"><div class="mobile-sidebar-wrapper"><a href="/" class="sidebar-title sidebar-title-anchor">Dobo API</a><div class="mobile-nav-links"><div class="navbar-item"><a id="" href="https://www.npmjs.com/package/dobo" target="">NPM</a></div><div class="navbar-item"><a id="" href="https://github.com/ardhi/dobo" target="">Github</a></div><div class="navbar-item"><a id="" href="https://dobo.bajo.app/" target="">Dobo</a></div><div class="navbar-item"><a id="" href="https://bajo.app/" target="">Bajo</a></div></div><div class="mobile-sidebar-items-c"><div class="sidebar-section-title with-arrow" data-isopen="false" id="sidebar-classes"><div>Classes</div><svg><use xlink:href="#down-icon"></use></svg></div><div class="sidebar-section-children-container"><div class="sidebar-section-children"><a href="Dobo.html">Dobo</a></div><div class="sidebar-section-children"><a href="DoboAction.html">DoboAction</a></div><div class="sidebar-section-children"><a href="DoboAdapter.html">DoboAdapter</a></div><div class="sidebar-section-children"><a href="DoboConnection.html">DoboConnection</a></div><div class="sidebar-section-children"><a href="DoboFeature.html">DoboFeature</a></div><div class="sidebar-section-children"><a href="DoboModel.html">DoboModel</a></div></div><div class="sidebar-section-title with-arrow" data-isopen="false" id="sidebar-modules"><div>Modules</div><svg><use xlink:href="#down-icon"></use></svg></div><div class="sidebar-section-children-container"><div class="sidebar-section-children"><a href="module-Helper.html">Helper</a></div><div class="sidebar-section-children"><a href="module-Helper_Model.html">Helper/Model</a></div><div class="sidebar-section-children"><a href="module-Hook.html">Hook</a></div></div><div class="sidebar-section-title with-arrow" data-isopen="false" id="sidebar-externals"><div>Externals</div><svg><use xlink:href="#down-icon"></use></svg></div><div class="sidebar-section-children-container"><div class="sidebar-section-children"><a href="external-Tools.html">Tools</a></div></div><div class="sidebar-section-title with-arrow" data-isopen="false" id="sidebar-global"><div>Global</div><svg><use xlink:href="#down-icon"></use></svg></div><div class="sidebar-section-children-container"><div class="sidebar-section-children"><a href="global.html#actionFactory">actionFactory</a></div><div class="sidebar-section-children"><a href="global.html#adapterFactory">adapterFactory</a></div><div class="sidebar-section-children"><a href="global.html#connectionFactory">connectionFactory</a></div><div class="sidebar-section-children"><a href="global.html#featureFactory">featureFactory</a></div><div class="sidebar-section-children"><a href="global.html#modelFactory">modelFactory</a></div><div class="sidebar-section-children"><a href="global.html#pluginFactory">pluginFactory</a></div></div></div><div class="mobile-navbar-actions"><div class="navbar-right-item"><button class="icon-button search-button" aria-label="open-search"><svg><use xlink:href="#search-icon"></use></svg></button></div><div class="navbar-right-item"><button class="icon-button theme-toggle" aria-label="toggle-theme"><svg><use class="theme-svg-use" xlink:href="#dark-theme-icon"></use></svg></button></div><div class="navbar-right-item"><button class="icon-button font-size" aria-label="change-font-size"><svg><use xlink:href="#font-size-icon"></use></svg></button></div></div></div></div><script type="text/javascript" src="scripts/core.min.js"></script><script src="scripts/search.min.js" defer="defer"></script><script src="scripts/third-party/fuse.js" defer="defer"></script><script type="text/javascript">var tocbotInstance=tocbot.init({tocSelector:"#eed4d2a0bfd64539bb9df78095dec881",contentSelector:".main-content",headingSelector:"h1, h2, h3",hasInnerContainers:!0,scrollContainer:".main-content",headingsOffset:130,onClick:bringLinkToView})</script></body></html>