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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-09 00:09:50 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-09 00:09:50 +0300
commit76358aee81a471a5e71eaf3e8c2d91b7c9a0a5a9 (patch)
treedf9ba3dcc09eb404de31e0d79cb8f0b77812e655 /app/assets/javascripts/custom_metrics/index.js
parent80e9fdc9682cfbcfb9202a2733605a6a6bd23f05 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/custom_metrics/index.js')
-rw-r--r--app/assets/javascripts/custom_metrics/index.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/app/assets/javascripts/custom_metrics/index.js b/app/assets/javascripts/custom_metrics/index.js
new file mode 100644
index 00000000000..4c279daf5f0
--- /dev/null
+++ b/app/assets/javascripts/custom_metrics/index.js
@@ -0,0 +1,47 @@
+import Vue from 'vue';
+import { parseBoolean } from '~/lib/utils/common_utils';
+import CustomMetricsForm from './components/custom_metrics_form.vue';
+
+export default () => {
+ // eslint-disable-next-line no-new
+ new Vue({
+ el: '#js-custom-metrics',
+ components: {
+ CustomMetricsForm,
+ },
+ render(createElement) {
+ const domEl = document.querySelector(this.$options.el);
+ const {
+ customMetricsPath,
+ editProjectServicePath,
+ validateQueryPath,
+ title,
+ query,
+ yLabel,
+ unit,
+ group,
+ legend,
+ } = domEl.dataset;
+ let { metricPersisted } = domEl.dataset;
+
+ metricPersisted = parseBoolean(metricPersisted);
+
+ return createElement('custom-metrics-form', {
+ props: {
+ customMetricsPath,
+ metricPersisted,
+ editProjectServicePath,
+ validateQueryPath,
+ formData: {
+ title,
+ query,
+ yLabel,
+ unit,
+ group,
+ legend,
+ },
+ },
+ });
+ },
+ });
+};