-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.vue
163 lines (150 loc) · 4.38 KB
/
index.vue
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<template>
<section class="main">
<h1>Zoek je game!</h1>
<p class="description">Wil jij alle informatie over een game? Zoek hieronder de game via de naam op waar je informatie van wilt hebben, voer minimaal 3 karakters in.</p>
<input type="text" placeholder="GTA V" :class="{ 'rounded-input':Object.keys(searchResults).length||searching }" @input="searchGame()" v-model="searchInput">
<div class="results-wrapper" v-if="Object.keys(searchResults).length > 0 || searching">
<nuxt-link
v-for="(value, index) in searchResults"
:key="index"
:to="`/game/${value.slug}`"
>
<img :src="value.cover.url" width="50" height="50" alt="" v-if="value.cover">
<img src="/images/placeholder.png" width="50" height="50" alt="" v-else>
<span>{{ value.name }}</span>
</nuxt-link>
<p v-if="Object.keys(searchResults).length < 1 && !searching" class="no-results">Geen resultaten gevonden...</p>
<p v-if="searching" class="no-results">Zoeken...</p>
</div>
</section>
</template>
<style scoped>
/* Main styling */
.main {
width: 100%;
min-height: 100vh;
padding: 50px;
background-color: var(--background);
}
.main h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 30px;
text-align: center;
color: #FAF4D3;
}
.main .description {
font-size: 1.3rem;
line-height: 24px;
font-weight: 300;
text-align: center;
margin-bottom: 50px;
color: #FAF4D3;
}
.main input[type="text"] {
outline: none;
border: none;
padding: 10px;
width: 400px;
font-size: 1.1rem;
height: 40px;
background-color: var(--white);
border-radius: 10px;
margin: auto;
display: block;
}
.main input[type="text"].rounded-input {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
/* Results */
.main .results-wrapper {
width: 400px;
background-color: var(--white);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
transition: .55s ease-in-out;
margin: auto;
display: block;
padding: 10px;
}
.main .results-wrapper a {
text-decoration: none;
color: var(--black);
width: 100%;
display: flex;
align-items: center;
margin: 10px 0px;
line-height: 24px;
font-size: 1rem;
font-weight: 400;
border-radius: 10px;
transition: .2s ease-in-out;
}
.main .results-wrapper a:hover {
background-color: #FAF4D3;
}
.main .results-wrapper a img {
border-radius: 10px;
margin-right: 10px;
}
.main .no-results {
text-align: center;
margin: auto;
opacity: .7;
font-size: 1.1rem;
font-weight: 400;
}
/* Media queries */
@media only screen and (max-width: 500px) {
.main input[type="text"] {
width: 90%;
}
.main .results-wrapper {
width: 90%;
}
}
</style>
<script>
export default {
data() {
return {
searchInput: "",
searchResults: {},
abortController: null,
searching: false
}
},
head: {
title: "GameFinder - Een project door Finn Paes"
},
methods: {
// Handle incoming keyUP strokes
searchGame() {
if (this.searchInput.length === 0) this.searchResults = {}; // Make the results disappear
if (this.searchInput.length < 3) return; // Do not execute fetch request
if (this.abortController) this.abortController.abort(); // If the abort controller isn't empty, cancel previous API request so no double requests
this.searching = true; // Show search status text
// Make a new abort controller (https://developer.mozilla.org/en-US/docs/Web/API/AbortController)
this.abortController = new AbortController();
const signal = this.abortController.signal;
// Execute the fetch
$fetch(`/api/search`, {
method: "POST",
body: {
query: this.searchInput
},
signal
})
.then((response) => {
// Set the response into the results
this.searching = false;
this.searchResults = response;
})
.catch((error) => {
console.log(error);
})
}
}
}
</script>