summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/pages/dashboard_page.vue
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>