debian-mirror-gitlab/app/assets/javascripts/diffs/components/no_changes.vue

46 lines
1.2 KiB
Vue
Raw Normal View History

2018-11-08 19:23:39 +05:30
<script>
2019-02-15 15:39:39 +05:30
import { mapGetters } from 'vuex';
2020-11-24 15:15:51 +05:30
import { GlButton, GlSprintf } from '@gitlab/ui';
2018-11-08 19:23:39 +05:30
export default {
2019-02-15 15:39:39 +05:30
components: {
2020-07-28 23:09:34 +05:30
GlButton,
2020-11-24 15:15:51 +05:30
GlSprintf,
2019-02-15 15:39:39 +05:30
},
props: {
changesEmptyStateIllustration: {
type: String,
required: true,
},
2018-11-08 19:23:39 +05:30
},
computed: {
2019-02-15 15:39:39 +05:30
...mapGetters(['getNoteableData']),
2018-11-08 19:23:39 +05:30
},
};
</script>
<template>
2019-02-15 15:39:39 +05:30
<div class="row empty-state">
<div class="col-12">
<div class="svg-content svg-250"><img :src="changesEmptyStateIllustration" /></div>
2018-11-08 19:23:39 +05:30
</div>
2019-02-15 15:39:39 +05:30
<div class="col-12">
2018-11-08 19:23:39 +05:30
<div class="text-content text-center">
2020-11-24 15:15:51 +05:30
<gl-sprintf :message="__('No changes between %{sourceBranch} and %{targetBranch}')">
<template #sourceBranch>
<span class="ref-name">{{ getNoteableData.source_branch }}</span>
</template>
<template #targetBranch>
<span class="ref-name">{{ getNoteableData.target_branch }}</span>
</template>
</gl-sprintf>
2018-11-08 19:23:39 +05:30
<div class="text-center">
2020-07-28 23:09:34 +05:30
<gl-button :href="getNoteableData.new_blob_path" variant="success" category="primary">{{
2019-02-15 15:39:39 +05:30
__('Create commit')
2020-07-28 23:09:34 +05:30
}}</gl-button>
2018-11-08 19:23:39 +05:30
</div>
</div>
</div>
</div>
</template>