summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/grafana_integration/components/grafana_integration.vue
blob: 7a991ac24559e0ff17f5a31d8812ccbe64dbf6bd (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<script>
import { GlButton, GlFormGroup, GlFormInput, GlFormCheckbox, GlIcon } from '@gitlab/ui';
import { mapState, mapActions } from 'vuex';

export default {
  components: {
    GlButton,
    GlFormCheckbox,
    GlFormGroup,
    GlFormInput,
    GlIcon,
  },
  data() {
    return { placeholderUrl: 'https://my-url.grafana.net/' };
  },
  computed: {
    ...mapState(['operationsSettingsEndpoint', 'grafanaToken', 'grafanaUrl', 'grafanaEnabled']),
    integrationEnabled: {
      get() {
        return this.grafanaEnabled;
      },
      set(grafanaEnabled) {
        this.setGrafanaEnabled(grafanaEnabled);
      },
    },
    localGrafanaToken: {
      get() {
        return this.grafanaToken;
      },
      set(token) {
        this.setGrafanaToken(token);
      },
    },
    localGrafanaUrl: {
      get() {
        return this.grafanaUrl;
      },
      set(url) {
        this.setGrafanaUrl(url);
      },
    },
  },
  methods: {
    ...mapActions([
      'setGrafanaUrl',
      'setGrafanaToken',
      'setGrafanaEnabled',
      'updateGrafanaIntegration',
    ]),
  },
};
</script>

<template>
  <section id="grafana" class="settings no-animate js-grafana-integration">
    <div class="settings-header">
      <h3 class="js-section-header h4">
        {{ s__('GrafanaIntegration|Grafana authentication') }}
      </h3>
      <gl-button class="js-settings-toggle">{{ __('Expand') }}</gl-button>
      <p class="js-section-sub-header">
        {{ s__('GrafanaIntegration|Embed Grafana charts in GitLab issues.') }}
      </p>
    </div>
    <div class="settings-content">
      <form>
        <gl-form-checkbox
          id="grafana-integration-enabled"
          v-model="integrationEnabled"
          class="mb-4"
        >
          {{ s__('GrafanaIntegration|Active') }}
        </gl-form-checkbox>
        <gl-form-group
          :label="s__('GrafanaIntegration|Grafana URL')"
          label-for="grafana-url"
          :description="s__('GrafanaIntegration|Enter the base URL of the Grafana instance.')"
        >
          <gl-form-input id="grafana-url" v-model="localGrafanaUrl" :placeholder="placeholderUrl" />
        </gl-form-group>
        <gl-form-group :label="s__('GrafanaIntegration|API Token')" label-for="grafana-token">
          <gl-form-input id="grafana-token" v-model="localGrafanaToken" />
          <p class="form-text text-muted">
            {{ s__('GrafanaIntegration|Enter the Grafana API Token.') }}
            <a
              href="https://grafana.com/docs/http_api/auth/#create-api-token"
              target="_blank"
              rel="noopener noreferrer"
            >
              {{ __('More information') }}
              <gl-icon name="external-link" class="vertical-align-middle" />
            </a>
          </p>
        </gl-form-group>
        <gl-button variant="success" category="primary" @click="updateGrafanaIntegration">
          {{ __('Save Changes') }}
        </gl-button>
      </form>
    </div>
  </section>
</template>