summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_nothing_to_merge.js
blob: 375a382615aeece6a7a4732fce4cac14d0be36ff (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
import emptyStateSVG from 'icons/_mr_widget_empty_state.svg';

export default {
  name: 'MRWidgetNothingToMerge',
  props: {
    mr: {
      type: Object,
      required: true,
    },
  },
  data() {
    return { emptyStateSVG };
  },
  template: `
    <div class="mr-widget-body empty-state">
      <div class="row">
        <div class="artwork col-sm-5 col-sm-push-7 col-xs-12 text-center">
          <span v-html="emptyStateSVG"></span>
        </div>
        <div class="text col-sm-7 col-sm-pull-5 col-xs-12">
          <span>
            Merge requests are a place to propose changes you have made to a project
            and discuss those changes with others.
          </span>
          <p>
            Interested parties can even contribute by pushing commits if they want to.
          </p>
          <p>
            Currently there are no changes in this merge request's source branch.
            Please push new commits or use a different branch.
          </p>
          <a
            v-if="mr.newBlobPath"
            :href="mr.newBlobPath"
            class="btn btn-inverted btn-save">
            Create file
          </a>
        </div>
      </div>
    </div>
  `,
};