summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/commit_sidebar/success_message.vue
blob: 5272c4310d8e955168d622586e57db2bfc8e8f85 (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
<script>
import { GlSafeHtmlDirective as SafeHtml } from '@gitlab/ui';
import { mapState } from 'vuex';

export default {
  directives: {
    SafeHtml,
  },
  computed: {
    ...mapState(['lastCommitMsg', 'committedStateSvgPath']),
  },
};
</script>

<template>
  <div class="multi-file-commit-panel-success-message" aria-live="assertive">
    <div class="svg-content svg-80">
      <img :src="committedStateSvgPath" :alt="s__('IDE|Successful commit')" />
    </div>
    <div class="gl-mr-3 gl-ml-3">
      <div class="text-content text-center">
        <h4>{{ __('All changes are committed') }}</h4>
        <p v-safe-html="lastCommitMsg"></p>
      </div>
    </div>
  </div>
</template>