Commit 0b278a93 authored by Phil Hughes's avatar Phil Hughes

style updates

[ci skip]
parent 524ebff5
...@@ -39,7 +39,7 @@ export default { ...@@ -39,7 +39,7 @@ export default {
</script> </script>
<template> <template>
<div class="dropdown-menu"> <div class="dropdown-menu ide-merge-requests-dropdown">
<tabs <tabs
stop-propagation stop-propagation
@changed="updateActiveTab" @changed="updateActiveTab"
...@@ -53,6 +53,7 @@ export default { ...@@ -53,6 +53,7 @@ export default {
:is-loading="isLoading" :is-loading="isLoading"
:items="mergeRequests" :items="mergeRequests"
:current-id="currentMergeRequestId" :current-id="currentMergeRequestId"
:empty-text="__('You have not created any merge requests')"
@search="fetchMergeRequests" @search="fetchMergeRequests"
/> />
</tab> </tab>
...@@ -62,6 +63,7 @@ export default { ...@@ -62,6 +63,7 @@ export default {
:is-loading="isLoading" :is-loading="isLoading"
:items="mergeRequests" :items="mergeRequests"
:current-id="currentMergeRequestId" :current-id="currentMergeRequestId"
:empty-text="__('You do not have any assigned merge requests')"
@search="fetchMergeRequests" @search="fetchMergeRequests"
/> />
</tab> </tab>
...@@ -71,7 +73,7 @@ export default { ...@@ -71,7 +73,7 @@ export default {
<style scoped> <style scoped>
.dropdown-menu { .dropdown-menu {
width: 400px; width: 350px;
padding: 0; padding: 0;
max-height: initial !important; max-height: initial !important;
} }
......
...@@ -21,12 +21,24 @@ export default { ...@@ -21,12 +21,24 @@ export default {
type: String, type: String,
required: true, required: true,
}, },
emptyText: {
type: String,
required: true,
},
}, },
data() { data() {
return { return {
search: '', search: '',
}; };
}, },
computed: {
hasMergeRequests() {
return this.items.length !== 0;
},
hasNoSearchResults() {
return this.search !== '' && !this.hasMergeRequests;
},
},
watch: { watch: {
isLoading() { isLoading() {
this.focusSearch(); this.focusSearch();
...@@ -72,8 +84,9 @@ export default { ...@@ -72,8 +84,9 @@ export default {
class="fa fa-search dropdown-input-search" class="fa fa-search dropdown-input-search"
></i> ></i>
</div> </div>
<div class="dropdown-content"> <div class="dropdown-content ide-merge-requests-dropdown-content">
<ul class="mb-3"> <ul class="mb-3">
<template v-if="hasMergeRequests">
<li <li
v-for="item in items" v-for="item in items"
:key="item.id" :key="item.id"
...@@ -84,8 +97,31 @@ export default { ...@@ -84,8 +97,31 @@ export default {
@click="viewMergeRequest" @click="viewMergeRequest"
/> />
</li> </li>
</template>
<li
v-else
class="ide-merge-requests-empty d-flex align-items-center justify-content-center"
>
<template v-if="hasNoSearchResults">
No merge requests found
</template>
<template v-else>
{{ emptyText }}
</template>
</li>
</ul> </ul>
</div> </div>
</template> </template>
</div> </div>
</template> </template>
<style scoped>
.ide-merge-requests-empty {
height: 230px;
}
.ide-merge-requests-dropdown-content {
min-height: 230px;
max-height: 470px;
}
</style>
...@@ -1274,3 +1274,17 @@ ...@@ -1274,3 +1274,17 @@
.ide-job-header { .ide-job-header {
min-height: 60px; min-height: 60px;
} }
.ide-merge-requests-dropdown {
.nav-links li {
width: 50%;
}
.nav-links li a {
text-align: center;
}
.nav-links li a:not(.active) {
background-color: #fafafa;
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment