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

dashboard_page.vue « pages « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df0e2d7f8f6177824e1d646f628a67b62310e153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<script>
import { mapActions } from 'vuex';
import Dashboard from '../components/dashboard.vue';

export default {
  components: {
    Dashboard,
  },
  props: {
    dashboardProps: {
      type: Object,
      required: true,
    },
  },
  created() {
    // This is to support the older URL <project>/-/environments/:env_id/metrics?dashboard=:path
    // and the new format <project>/-/metrics/:dashboardPath
    const encodedDashboard = this.$route.query.dashboard || this.$route.params.dashboard;
    const currentDashboard = encodedDashboard ? decodeURIComponent(encodedDashboard) : null;
    this.setCurrentDashboard({ currentDashboard });
  },
  methods: {
    ...mapActions('monitoringDashboard', ['setCurrentDashboard']),
  },
};
</script>
<template>
  <dashboard v-bind="{ ...dashboardProps }" />
</template>