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,579 @@
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/model/helper.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_model_helper.js</h1></header><article><pre class="prettyprint source lang-js"><code>import path from 'path'
4
+
5
+ /**
6
+ * Helper functions for model operations in the Dobo framework.
7
+ *
8
+ * @module Helper/Model
9
+ */
10
+
11
+ /**
12
+ * Clone options object and omit some keys to avoid reference issues
13
+ *
14
+ * @method
15
+ * @name cloneOptions
16
+ * @memberof module:Helper/Model
17
+ * @param {DoboModel.TOptions} [options={}]
18
+ * @returns {DoboModel.TOptions} Cloned options object
19
+ */
20
+ export function cloneOptions (options = {}) {
21
+ const { cloneDeep, omit } = this.app.lib._
22
+ const omittedOptionsKeys = ['req', 'reply', 'trx']
23
+ const nOptions = cloneDeep(omit(options, omittedOptionsKeys))
24
+ for (const key of omittedOptionsKeys) {
25
+ nOptions[key] = options[key]
26
+ }
27
+ return nOptions
28
+ }
29
+
30
+ /**
31
+ * Executes a hook function with the provided name and arguments.
32
+ * @async
33
+ * @memberof module:Helper/Model
34
+ * @method
35
+ * @name execHook
36
+ * @param {string} name - The name of the hook to execute.
37
+ * @param {...any} args - Arguments to pass to the hook function.
38
+ * @returns {Promise&lt;void>}
39
+ */
40
+ export async function execHook (name, ...args) {
41
+ const { runHook } = this.app.bajo
42
+ const { camelCase, last, kebabCase } = this.app.lib._
43
+ const { noHook } = last(args)
44
+ const { ns } = this.app.dobo
45
+ let [prefix, ...action] = kebabCase(name).split('-')
46
+ action = camelCase(action.join(' '))
47
+ if (!noHook) {
48
+ if (prefix === 'before') await runHook(`${ns}:beforeAction`, action, this.name, ...args)
49
+ await runHook(`${ns}:${name}`, this.name, ...args)
50
+ if (prefix === 'after') await runHook(`${ns}:afterAction`, action, this.name, ...args)
51
+ if (prefix === 'before') await runHook(`${ns}.${camelCase(this.name)}:beforeAction`, action, ...args)
52
+ await runHook(`${ns}.${camelCase(this.name)}:${name}`, ...args)
53
+ if (prefix === 'after') await runHook(`${ns}.${camelCase(this.name)}:afterAction`, action, ...args)
54
+ }
55
+ }
56
+
57
+ /**
58
+ * Executes a model hook function with the provided name and arguments.
59
+ * @async
60
+ * @memberof module:Helper/Model
61
+ * @method
62
+ * @name execModelHook
63
+ * @param {string} name - The name of the model hook to execute.
64
+ * @param {...any} args - Arguments to pass to the model hook function.
65
+ * @returns {Promise&lt;void>}
66
+ */
67
+ export async function execModelHook (name, ...args) {
68
+ const { last } = this.app.lib._
69
+ const { runModelHook } = this.app.dobo
70
+ const { noModelHook } = last(args)
71
+ if (!noModelHook) await runModelHook(this, name, ...args)
72
+ }
73
+
74
+ /**
75
+ * Executes a dynamic hook function with the provided name and arguments.
76
+ * @async
77
+ * @memberof module:Helper/Model
78
+ * @method
79
+ * @name execDynHook
80
+ * @param {string} name - The name of the dynamic hook to execute.
81
+ * @param {...any} args - Arguments to pass to the dynamic hook function.
82
+ * @returns {Promise&lt;void>}
83
+ */
84
+ export async function execDynHook (name, ...args) {
85
+ const { last, orderBy } = this.app.lib._
86
+ const opts = last(args)
87
+ const results = []
88
+ if (!opts.noDynHook) {
89
+ const hooks = orderBy((opts.dynHooks ?? []).filter(hook => hook.name === name), ['level'])
90
+ for (const hook of hooks) {
91
+ if (hook.noWait) hook.handler.call(this, ...args)
92
+ else await hook.handler.call(this, ...args)
93
+ }
94
+ }
95
+ return results
96
+ }
97
+
98
+ /**
99
+ * Executes validation on the provided body with the given options.
100
+ * @async
101
+ * @memberof module:Helper/Model
102
+ * @method
103
+ * @name execValidation
104
+ * @param {Object} body - The data to validate.
105
+ * @param {DoboModel.TOptions} [options={}] - Validation options.
106
+ * @returns {Promise&lt;Object>} The result of the validation.
107
+ */
108
+ export async function execValidation (body, options = {}) {
109
+ const { uniq } = this.app.lib._
110
+ const { validation = {} } = options
111
+ const fields = uniq([...Object.keys(body), ...(options.fields ?? [])])
112
+ await execHook.call(this, 'beforeRecordValidation', body, options)
113
+ await execModelHook.call(this, 'beforeRecordValidation', body, options)
114
+ const result = await this.validate(body, validation, { fields, ...options })
115
+ await execModelHook.call(this, 'afterRecordValidation', body, result, options)
116
+ await execHook.call(this, 'afterRecordValidation', body, result, options)
117
+ return result
118
+ }
119
+
120
+ /**
121
+ * Prepares and returns the filter and options for a given action.
122
+ * @async
123
+ * @memberof module:Helper/Model
124
+ * @method
125
+ * @name getFilterAndOptions
126
+ * @param {DoboModel.TFilter} filter - The filter criteria.
127
+ * @param {DoboModel.TOptions} options - The options for the action.
128
+ * @param {string} action - The action being performed.
129
+ * @returns {Promise&lt;{filter: DoboModel.TFilter, options: DoboModel.TOptions}>} The prepared filter and options.
130
+ */
131
+ export async function getFilterAndOptions (filter = {}, options = {}, action) {
132
+ const { cloneDeep } = this.app.lib._
133
+ const nFilter = cloneDeep(filter || {})
134
+ const nOptions = cloneOptions.call(this, options)
135
+ if (options.noMagic) {
136
+ nOptions.noHook = true
137
+ nOptions.noDynHook = true
138
+ nOptions.noValidation = true
139
+ nOptions.noCache = true
140
+ nOptions.throwNotFound = false
141
+ delete options.noMagic
142
+ delete nOptions.noMagic
143
+ }
144
+ nOptions.action = action
145
+ nOptions.dataOnly = false
146
+ nOptions.truncateString = nOptions.truncateString ?? false
147
+ nOptions.throwNotFound = nOptions.throwNotFound ?? true
148
+ nFilter.orgQuery = nFilter.query
149
+ nFilter.orgSearch = nFilter.search
150
+ nFilter.query = buildFilterQuery.call(this, nFilter) ?? {}
151
+ nFilter.search = buildFilterSearch.call(this, nFilter) ?? {}
152
+ const { limit, page, skip, sort } = preparePagination.call(this, nFilter, nOptions)
153
+ nFilter.limit = limit
154
+ nFilter.page = page
155
+ nFilter.skip = skip
156
+ nFilter.sort = sort
157
+ if (nOptions.queryHandler) {
158
+ const scope = nOptions.req ? this.app[nOptions.req.ns] : this.plugin
159
+ nFilter.query = await options.queryHandler.call(scope, nFilter.query, nOptions.req)
160
+ }
161
+ return { filter: nFilter, options: nOptions }
162
+ }
163
+
164
+ /**
165
+ * Handles a request for a given action trigger.
166
+ * @async
167
+ * @memberof module:Helper/Model
168
+ * @method
169
+ * @name handleReq
170
+ * @param {string|number} id - The ID of the record.
171
+ * @param {string} trigger - The action trigger (e.g., 'created', 'updated', 'removed').
172
+ * @param {DoboModel.TOptions} [options={}] - Additional options for handling the request.
173
+ * @returns {Promise&lt;void>}
174
+ */
175
+ export async function handleReq (id, trigger, options = {}) {
176
+ const { upperFirst } = this.app.lib._
177
+ if (options.req) {
178
+ if (options.req.file &amp;&amp; trigger !== 'removed') await handleAttachmentUpload.call(this, id, trigger, options)
179
+ if (options.req.flash &amp;&amp; !options.noFlash) options.req.flash('notify', options.req.t(`record${upperFirst(trigger)}`))
180
+ }
181
+ }
182
+
183
+ /**
184
+ * Merges attachment information into the given record.
185
+ * @async
186
+ * @memberof module:Helper/Model
187
+ * @method
188
+ * @name mergeAttachmentInfo
189
+ * @param {Object} rec - The record to merge attachment info into.
190
+ * @param {string} source - The source file path of the attachment.
191
+ * @param {Object} options - Additional options including mimeType, stats, and fullPath.
192
+ * @returns {Promise&lt;void>}
193
+ */
194
+ export async function mergeAttachmentInfo (rec, source, options = {}) {
195
+ if (!this.app.waibu) return
196
+ const { mimeType, stats, fullPath } = options
197
+ const { importPkg } = this.app.bajo
198
+ const { fs } = this.app.lib
199
+ const { pick } = this.app.lib._
200
+ const mime = await importPkg('waibu:mime')
201
+
202
+ if (mimeType) rec.mimeType = mime.getType(rec.file)
203
+ if (fullPath) rec.fullPath = source
204
+ if (stats) {
205
+ const s = fs.statSync(source)
206
+ rec.stats = pick(s, ['size', 'atime', 'ctime', 'mtime'])
207
+ }
208
+ }
209
+
210
+ /**
211
+ * Gets the attachment path for a given record and field.
212
+ * @async
213
+ * @memberof module:Helper/Model
214
+ * @method
215
+ * @name getAttachmentPath
216
+ * @param {string|number} id - The ID of the record.
217
+ * @param {string} field - The field name of the attachment.
218
+ * @param {string} file - The file name of the attachment.
219
+ * @param {Object} options - Additional options, including dirOnly.
220
+ * @returns {Promise&lt;string>} The path to the attachment.
221
+ */
222
+ export async function getAttachmentPath (id, field, file, options = {}) {
223
+ const { fs } = this.app.lib
224
+ const dir = `${this.app.getPluginDataDir(this.app.dobo.ns)}/attachment/${this.name}/${id}`
225
+ if (options.dirOnly) return dir
226
+ const path = field ? `${dir}/${field}/${file}` : `${dir}/${file}`
227
+ if (!fs.existsSync(path)) throw this.app.dobo.error('notFound')
228
+ return path
229
+ }
230
+
231
+ /**
232
+ * Copies attachments for a given record.
233
+ * @name copyAttachment
234
+ * @async
235
+ * @memberof module:Helper/Model
236
+ * @method
237
+ * @param {string|number} id - The ID of the record.
238
+ * @param {Object} options - Additional options for copying attachments.
239
+ * @returns {Promise&lt;Array>} The copied attachment records.
240
+ */
241
+ export async function copyAttachment (id, options = {}) {
242
+ if (!this.app.waibu) return
243
+ if (!this.options.attachment) return
244
+ const { fs } = this.app.lib
245
+ const { req, setField, setFile, mimeType, stats } = options
246
+ const { dir, files } = await this.app.waibu.getUploadedFiles(req.id, false, true)
247
+ const result = []
248
+ if (files.length === 0) return result
249
+ for (const f of files) {
250
+ let [field, ...parts] = path.basename(f).split('@')
251
+ if (parts.length === 0) continue
252
+ field = setField ?? field
253
+ const file = setFile ?? parts.join('@')
254
+ const opts = { source: f, field, file, mimeType, stats, req }
255
+ const rec = await this.createAttachment(id, opts)
256
+ if (!rec) continue
257
+ delete rec.dir
258
+ result.push(rec)
259
+ if (setField || setFile) break
260
+ }
261
+ fs.removeSync(dir)
262
+ return result
263
+ }
264
+
265
+ /**
266
+ * Handles attachment uploads for a given record and trigger.
267
+ * @async
268
+ * @memberof module:Helper/Model
269
+ * @method
270
+ * @name handleAttachmentUpload
271
+ * @param {string|number} id - The ID of the record.
272
+ * @param {string} trigger - The action trigger (e.g., 'added', 'removed').
273
+ * @param {Object} options - Additional options for handling the upload.
274
+ * @returns {Promise&lt;void>}
275
+ */
276
+ export async function handleAttachmentUpload (id, trigger, options = {}) {
277
+ if (!this.options.attachment) return
278
+ const { fs } = this.app.lib
279
+ const { req, mimeType, stats, setFile, setField } = options
280
+ if (trigger === 'removed') {
281
+ const dir = `${this.app.getPluginDataDir(this.app.dobo.ns)}/attachment/${this.name}/${id}`
282
+ await fs.remove(dir)
283
+ return
284
+ }
285
+ return copyAttachment.call(this, id, { req, mimeType, stats, setFile, setField })
286
+ }
287
+
288
+ /**
289
+ * Gets reference records for the given records.
290
+ * @async
291
+ * @memberof module:Helper/Model
292
+ * @method
293
+ * @name getRefs
294
+ * @param {Array&lt;Object>} records - The records to get references for.
295
+ * @param {Object} options - Additional options for fetching references.
296
+ * @returns {Promise&lt;void>}
297
+ */
298
+ export async function getRefs (records = [], options = {}) {
299
+ const { isSet } = this.app.lib.aneka
300
+ const { uniq, without, get } = this.app.lib._
301
+ const { parseQuery } = this.app.dobo
302
+ const props = this.getNonVirtualProperties().filter(p => isSet(p.ref) &amp;&amp; !(options.hidden ?? []).includes(p.name))
303
+ options.refs = options.refs ?? []
304
+ if (props.length > 0) {
305
+ for (const prop of props) {
306
+ for (const key in prop.ref) {
307
+ try {
308
+ if (records.length === 0) return
309
+ const isValues = Array.isArray(records[0][prop.name])
310
+ if (get(records, `0._ref.${key}`)) return
311
+ const ref = prop.ref[key]
312
+ const rModel = this.app.dobo.getModel(ref.model, true)
313
+ if (!rModel) return
314
+ let matches = []
315
+ for (const rec of records) {
316
+ const items = isValues ? [...(rec[prop.name] ?? [])] : (rec[prop.name] ? [rec[prop.name]] : [])
317
+ matches.push(...items.map(item => prop.name === 'id' ? rModel.sanitizeId(item) : item))
318
+ }
319
+ matches = uniq(without(matches, undefined, null, NaN)).map(i => i + '')
320
+ let query = {}
321
+ query[ref.field] = { $in: matches }
322
+
323
+ const siteIdProp = this.properties.find(item => item.name === 'siteId')
324
+ const siteIdRProp = rModel.properties.find(item => item.name === 'siteId')
325
+ if (siteIdProp &amp;&amp; siteIdRProp) query.siteId = records[0].siteId
326
+
327
+ if (ref.query) query = { $and: [query, parseQuery(ref.query, rModel)] }
328
+ const filter = { query, limit: matches.length }
329
+ if (!((typeof options.refs === 'string' &amp;&amp; ['*', 'all'].includes(options.refs)) || options.refs.includes(key))) return
330
+ if (ref.fields.length === 0) return
331
+ const { fmt, req } = options
332
+ const fields = [...ref.fields]
333
+ if (!fields.includes(prop.name)) fields.push(prop.name)
334
+ const rOptions = { dataOnly: true, refs: [], fmt, req, fields }
335
+ const results = await rModel.findRecord(filter, rOptions)
336
+ for (const i in records) {
337
+ records[i]._ref = records[i]._ref ?? {}
338
+ const rec = records[i]
339
+ let items = isValues ? [...(rec[prop.name] ?? [])] : (rec[prop.name] ? [rec[prop.name]] : [])
340
+ items = items.map(item => item + '')
341
+ const res = results.filter(r => items.includes(r[ref.field] + ''))
342
+ if (res.length === 0) records[i]._ref[key] = isValues ? [] : {}
343
+ else records[i]._ref[key] = isValues ? res : res[0]
344
+ }
345
+ } catch (err) {
346
+ if (this.app.bajo.config.log.level === 'trace') console.error(err)
347
+ }
348
+ }
349
+ }
350
+ }
351
+ }
352
+
353
+ /**
354
+ * Builds a sanitized filter query for the given filter.
355
+ * @memberof module:Helper/Model
356
+ * @method
357
+ * @name buildFilterQuery
358
+ * @param {Object} filter - The filter object containing query parameters.
359
+ * @returns {Object} The sanitized query object.
360
+ */
361
+ export function buildFilterQuery (filter = {}) {
362
+ const { parseQuery } = this.app.dobo
363
+ const query = parseQuery(filter.query ?? {}, this, false)
364
+ return sanitizeQuery.call(this, query)
365
+ }
366
+
367
+ /**
368
+ * Sanitizes a query object by ensuring that its fields and values conform to the model's schema.
369
+ * @memberof module:Helper/Model
370
+ * @method
371
+ * @name sanitizeQuery
372
+ * @param {Object} query - The query object to sanitize.
373
+ * @param {string} parent - The parent field name, if applicable.
374
+ * @returns {Object} The sanitized query object.
375
+ */
376
+ export function sanitizeQuery (query = {}, parent) {
377
+ const { isPlainObject, isArray, find, cloneDeep } = this.app.lib._
378
+ const { isSet } = this.app.lib.aneka
379
+ const { dayjs } = this.app.lib
380
+ const obj = cloneDeep(query)
381
+ const keys = Object.keys(obj)
382
+
383
+ const sanitizeField = (prop, val) => {
384
+ if (!prop) return val
385
+ if (val instanceof RegExp) return val
386
+ if (['datetime'].includes(prop.type)) {
387
+ const dt = dayjs(val)
388
+ return dt.isValid() ? dt.toDate() : val
389
+ } else if (['smallint', 'integer'].includes(prop.type)) return parseInt(val) || val
390
+ else if (['float', 'double'].includes(prop.type)) return parseFloat(val) || val
391
+ else if (['boolean'].includes(prop.type)) return !!val
392
+ else if (['string', 'text'].includes(prop.type)) return val + ''
393
+ return val
394
+ }
395
+
396
+ const sanitizeChild = (key, val, p) => {
397
+ if (!isSet(val)) return val
398
+ const prop = find(this.properties, { name: key.startsWith('$') ? p : key })
399
+ if (!prop) return val
400
+ return sanitizeField(prop, val)
401
+ }
402
+
403
+ keys.forEach(k => {
404
+ const v = obj[k]
405
+ const props = this.getProperties({ noVirtual: true })
406
+ const fields = props.map(p => p.name)
407
+ const prop = find(props, { name: k })
408
+ if (k[0] !== '$' &amp;&amp; !fields.includes(k)) {
409
+ delete keys[k]
410
+ } else {
411
+ if (isPlainObject(v)) obj[k] = sanitizeQuery.call(this, v, k)
412
+ else if (isArray(v)) {
413
+ v.forEach((i, idx) => {
414
+ if (isPlainObject(i)) obj[k][idx] = sanitizeQuery.call(this, i, k)
415
+ else obj[k][idx] = sanitizeField(prop, i)
416
+ })
417
+ } else obj[k] = sanitizeChild(k, v, parent)
418
+ }
419
+ })
420
+ return obj
421
+ }
422
+
423
+ /**
424
+ * Builds a search filter from the given filter object.
425
+ * @memberof module:Helper/Model
426
+ * @method
427
+ * @name buildFilterSearch
428
+ * @param {Object} filter - The filter object containing search parameters.
429
+ * @returns {Object} The constructed search filter.
430
+ */
431
+ export function buildFilterSearch (filter = {}) {
432
+ const { isPlainObject, trim, has, uniq } = this.app.lib._
433
+ const search = filter.search ?? {}
434
+ let input = search
435
+ if (isPlainObject(input)) return input
436
+ const split = (value) => {
437
+ let [field, val] = value.split(':').map(i => i.trim())
438
+ if (!val) {
439
+ val = field
440
+ field = '*'
441
+ }
442
+ return { field, value: val }
443
+ }
444
+ input = trim(input)
445
+ let items = {}
446
+ if (isPlainObject(input)) items = input
447
+ else if (input[0] === '{') {
448
+ try {
449
+ items = JSON.parse(input)
450
+ } catch (err) {}
451
+ } else {
452
+ for (const item of input.split('+').map(i => i.trim())) {
453
+ const part = split(item, ' ')
454
+ if (!items[part.field]) items[part.field] = []
455
+ items[part.field].push(...part.value.split(' ').filter(v => ![''].includes(v)))
456
+ }
457
+ }
458
+ let s = {}
459
+ for (const index of this.indexes.filter(i => i.type === 'fulltext')) {
460
+ for (const f of index.fields) {
461
+ const value = []
462
+ if (typeof items[f] === 'string') items[f] = [items[f]]
463
+ if (has(items, f)) value.push(...items[f])
464
+ if (!s[f]) s[f] = []
465
+ s[f] = uniq([...s[f], ...value])
466
+ }
467
+ }
468
+ if (has(items, '*')) s['*'] = items['*']
469
+ if (this.adapter.idField.name !== 'id') {
470
+ const search = JSON.stringify(s).replaceAll('"id"', `"${this.adapter.idField.name}"`)
471
+ try {
472
+ s = JSON.parse(search)
473
+ } catch (err) {}
474
+ }
475
+ return s
476
+ }
477
+
478
+ /**
479
+ * Prepare pagination parameters for a query:
480
+ * - Ensures that the limit does not exceed the maximum allowed limit.
481
+ * - Ensures that the page number is within the allowed range.
482
+ * - Calculates the number of records to skip based on the page and limit.
483
+ * - Builds the sort order based on the provided sort input.
484
+ *
485
+ * @async
486
+ * @memberof module:Helper/Model
487
+ * @method
488
+ * @name preparePagination
489
+ * @param {DoboModel.TFilter} filter - The filter object containing pagination parameters.
490
+ * @param {DoboModel.TOptions} options - Additional options for pagination.
491
+ * @returns {Object} The prepared pagination parameters including limit, page, skip, and sort.
492
+ */
493
+ export function preparePagination (filter = {}, options = {}) {
494
+ const { isEmpty, map, each, isPlainObject, isString, trim, keys } = this.app.lib._
495
+ const { getDefaultValues, config } = this.app.dobo
496
+ const { limit: defLimit, maxLimit: defMaxLimit, maxPage: defMaxPage } = getDefaultValues(options)
497
+
498
+ const buildPageSkipLimit = (filter) => {
499
+ let limit = parseInt(filter.limit) || defLimit
500
+ if (limit === -1) limit = defMaxLimit
501
+ if (limit > defMaxLimit) {
502
+ options.warnings = options.warnings ?? []
503
+ options.warnings.push(options.req ? options.req.t('maxLimitWarning%s%s', limit, defMaxLimit) : this.plugin.t('maxLimitWarning%s', limit, defMaxLimit))
504
+ limit = defMaxLimit // TODO: notify as warning in response object
505
+ }
506
+ if (limit &lt; 1) limit = 1
507
+ let page = parseInt(filter.page) || 1
508
+ if (page &lt; 1) page = 1
509
+ if (page > defMaxPage) throw this.plugin.error('maxPageError%s%s', page, defMaxPage)
510
+ let skip = (page - 1) * limit
511
+ if (filter.skip) {
512
+ skip = parseInt(filter.skip) || skip
513
+ page = undefined
514
+ }
515
+ if (skip &lt; 0) skip = 0
516
+ return { page, skip, limit }
517
+ }
518
+
519
+ const buildSort = (input, allowSortUnindexed) => {
520
+ let sort
521
+ if (isEmpty(input)) {
522
+ const columns = map(this.properties ?? [], 'name')
523
+ each(config.default.filter.sort, s => {
524
+ const [col] = s.split(':')
525
+ if (columns.includes(col)) {
526
+ input = s
527
+ return false
528
+ }
529
+ })
530
+ }
531
+ if (!isEmpty(input)) {
532
+ if (isPlainObject(input)) sort = input
533
+ else if (isString(input)) {
534
+ const item = {}
535
+ each(input.split('+'), text => {
536
+ let [col, dir] = map(trim(text).split(':'), i => trim(i))
537
+ dir = (dir ?? '').toUpperCase()
538
+ dir = dir === 'DESC' ? -1 : parseInt(dir) || 1
539
+ item[col] = dir / Math.abs(dir)
540
+ })
541
+ sort = item
542
+ }
543
+ const items = keys(sort)
544
+ each(items, i => {
545
+ if (!this.sortables.includes(i) &amp;&amp; !allowSortUnindexed) throw this.app.dobo.error('sortOnUnindexedField%s%s', i, this.name)
546
+ // if (model.fullText.fields.includes(i)) throw this.error('Can\'t sort on full-text index: \'%s@%s\'', i, model.name)
547
+ })
548
+ }
549
+ return sort
550
+ }
551
+
552
+ const { page, skip, limit } = buildPageSkipLimit(filter)
553
+ let sortInput = filter.sort
554
+ try {
555
+ sortInput = JSON.parse(sortInput)
556
+ } catch (err) {
557
+ }
558
+ const sort = buildSort(sortInput, options.allowSortUnindexed)
559
+ return { limit, page, skip, sort }
560
+ }
561
+
562
+ /**
563
+ * Clears the cache for a specific record ID and related find operations.
564
+ * @async
565
+ * @memberof module:Helper/Model
566
+ * @method
567
+ * @name clearCache
568
+ * @param {string|number} id - The ID of the record for which to clear the cache.
569
+ * @returns {Promise&lt;void>}
570
+ */
571
+ export async function clearCache (id) {
572
+ const { clear } = this.app.bajoCache ?? {}
573
+ if (!clear) return
574
+ await clear({ key: `dobo|${this.name}|getRecord|${id}` })
575
+ await clear({ key: `dobo|${this.name}|findRecord` })
576
+ await clear({ key: `dobo|${this.name}|findAllRecord` })
577
+ await clear({ key: `dobo|${this.name}|findOneRecord` })
578
+ }
579
+ </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>