Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/assets/javascripts/vue-virtual-scroller/src/index.js')
-rw-r--r--vendor/assets/javascripts/vue-virtual-scroller/src/index.js60
1 files changed, 60 insertions, 0 deletions
diff --git a/vendor/assets/javascripts/vue-virtual-scroller/src/index.js b/vendor/assets/javascripts/vue-virtual-scroller/src/index.js
new file mode 100644
index 00000000000..aa9733338f6
--- /dev/null
+++ b/vendor/assets/javascripts/vue-virtual-scroller/src/index.js
@@ -0,0 +1,60 @@
+/**
+ * See https://gitlab.com/gitlab-org/gitlab/-/issues/331267 for more information on this vendored
+ * dependency
+ */
+
+import config from './config'
+
+import RecycleScroller from './components/RecycleScroller.vue'
+import DynamicScroller from './components/DynamicScroller.vue'
+import DynamicScrollerItem from './components/DynamicScrollerItem.vue'
+
+export { default as IdState } from './mixins/IdState'
+
+export {
+ RecycleScroller,
+ DynamicScroller,
+ DynamicScrollerItem,
+}
+
+function registerComponents (Vue, prefix) {
+ Vue.component(`${prefix}recycle-scroller`, RecycleScroller)
+ Vue.component(`${prefix}RecycleScroller`, RecycleScroller)
+ Vue.component(`${prefix}dynamic-scroller`, DynamicScroller)
+ Vue.component(`${prefix}DynamicScroller`, DynamicScroller)
+ Vue.component(`${prefix}dynamic-scroller-item`, DynamicScrollerItem)
+ Vue.component(`${prefix}DynamicScrollerItem`, DynamicScrollerItem)
+}
+
+const plugin = {
+ // eslint-disable-next-line no-undef
+ install (Vue, options) {
+ const finalOptions = Object.assign({}, {
+ installComponents: true,
+ componentsPrefix: '',
+ }, options)
+
+ for (const key in finalOptions) {
+ if (typeof finalOptions[key] !== 'undefined') {
+ config[key] = finalOptions[key]
+ }
+ }
+
+ if (finalOptions.installComponents) {
+ registerComponents(Vue, finalOptions.componentsPrefix)
+ }
+ },
+}
+
+export default plugin
+
+// Auto-install
+let GlobalVue = null
+if (typeof window !== 'undefined') {
+ GlobalVue = window.Vue
+} else if (typeof global !== 'undefined') {
+ GlobalVue = global.Vue
+}
+if (GlobalVue) {
+ GlobalVue.use(plugin)
+}