Updated resultslist to grid layout and added No results text
This commit is contained in:
@@ -1,7 +1,19 @@
|
|||||||
<template>
|
<template>
|
||||||
<ul class="results" :class="{ shortList: shortList }">
|
<div>
|
||||||
<movies-list-item v-for="movie in results" :movie="movie" />
|
<ul
|
||||||
|
v-if="results && results.length"
|
||||||
|
class="results"
|
||||||
|
:class="{ shortList: shortList }"
|
||||||
|
>
|
||||||
|
<movies-list-item
|
||||||
|
v-for="movie in results"
|
||||||
|
:key="`${movie.type}-${movie.id}`"
|
||||||
|
:movie="movie"
|
||||||
|
/>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<span v-else class="no-results">No results found</span>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -23,43 +35,43 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
@import "./src/scss/media-queries";
|
@import "src/scss/media-queries";
|
||||||
|
@import "src/scss/main";
|
||||||
|
|
||||||
|
.no-results {
|
||||||
|
width: 100%;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
margin: 1.5rem;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
.results {
|
.results {
|
||||||
display: flex;
|
display: grid;
|
||||||
flex-wrap: wrap;
|
grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
|
||||||
|
grid-auto-rows: auto;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
|
||||||
&.shortList > li {
|
@include mobile {
|
||||||
display: none;
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
}
|
||||||
|
|
||||||
&:nth-child(-n + 4) {
|
&.shortList {
|
||||||
display: block;
|
overflow: auto;
|
||||||
}
|
grid-auto-flow: column;
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@include tablet-min {
|
@include noscrollbar;
|
||||||
.results.shortList > li:nth-child(-n + 6) {
|
|
||||||
display: block;
|
> li {
|
||||||
|
min-width: 225px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
@include tablet-landscape-min {
|
@include tablet-min {
|
||||||
.results.shortList > li:nth-child(-n + 8) {
|
max-width: calc(100vw - var(--header-size));
|
||||||
display: block;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
@include desktop-min {
|
|
||||||
.results.shortList > li:nth-child(-n + 10) {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@include desktop-lg-min {
|
|
||||||
.results.shortList > li:nth-child(-n + 16) {
|
|
||||||
display: block;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user