debian-mirror-gitlab/app/assets/javascripts/boards/components/modal/empty_state.vue

74 lines
1.8 KiB
Vue
Raw Normal View History

2018-11-08 19:23:39 +05:30
<script>
2018-10-15 14:42:47 +05:30
import ModalStore from '../../stores/modal_store';
import modalMixin from '../../mixins/modal_mixins';
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
export default {
2018-10-15 14:42:47 +05:30
mixins: [modalMixin],
2017-08-17 22:00:37 +05:30
props: {
2018-03-17 18:26:18 +05:30
newIssuePath: {
2017-08-17 22:00:37 +05:30
type: String,
required: true,
},
2018-03-17 18:26:18 +05:30
emptyStateSvg: {
2017-08-17 22:00:37 +05:30
type: String,
required: true,
},
},
2018-11-08 19:23:39 +05:30
data() {
return ModalStore.store;
},
2017-08-17 22:00:37 +05:30
computed: {
contents() {
const obj = {
title: 'You haven\'t added any issues to your project yet',
content: `
An issue can be a bug, a todo or a feature request that needs to be
discussed in a project. Besides, issues are searchable and filterable.
`,
};
if (this.activeTab === 'selected') {
obj.title = 'You haven\'t selected any issues yet';
obj.content = `
Go back to <strong>Open issues</strong> and select some issues
to add to your board.
`;
}
return obj;
},
},
2018-11-08 19:23:39 +05:30
};
</script>
<template>
<section class="empty-state">
<div class="row">
<div class="col-12 col-md-6 order-md-last">
<aside class="svg-content"><img :src="emptyStateSvg"/></aside>
</div>
<div class="col-12 col-md-6 order-md-first">
<div class="text-content">
<h4>{{ contents.title }}</h4>
<p v-html="contents.content"></p>
<a
v-if="activeTab === 'all'"
:href="newIssuePath"
class="btn btn-success btn-inverted"
>
New issue
</a>
<button
v-if="activeTab === 'selected'"
class="btn btn-default"
type="button"
@click="changeTab('all')"
>
Open issues
</button>
2017-08-17 22:00:37 +05:30
</div>
</div>
2018-11-08 19:23:39 +05:30
</div>
</section>
</template>