summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/operation_settings/components/metrics_settings.vue
blob: 2e972dd71542a7b1a7ef993649982f0ce25997ce (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<script>
import { mapState, mapActions } from 'vuex';
import { GlButton, GlLink } from '@gitlab/ui';
import ExternalDashboard from './form_group/external_dashboard.vue';
import DashboardTimezone from './form_group/dashboard_timezone.vue';

export default {
  components: {
    GlButton,
    GlLink,
    ExternalDashboard,
    DashboardTimezone,
  },
  computed: {
    ...mapState(['helpPage']),
    userDashboardUrl: {
      get() {
        return this.externalDashboard.url;
      },
      set(url) {
        this.setExternalDashboardUrl(url);
      },
    },
  },
  methods: {
    ...mapActions(['saveChanges']),
  },
};
</script>

<template>
  <section class="settings no-animate">
    <div class="settings-header">
      <h3 class="js-section-header h4">
        {{ s__('MetricsSettings|Metrics dashboard') }}
      </h3>
      <gl-button class="js-settings-toggle">{{ __('Expand') }}</gl-button>
      <p class="js-section-sub-header">
        {{ s__('MetricsSettings|Manage Metrics Dashboard settings.') }}
        <gl-link :href="helpPage">{{ __('Learn more') }}</gl-link>
      </p>
    </div>
    <div class="settings-content">
      <form>
        <dashboard-timezone />
        <external-dashboard />
        <gl-button variant="success" category="primary" @click="saveChanges">
          {{ __('Save Changes') }}
        </gl-button>
      </form>
    </div>
  </section>
</template>