mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Add a search page.
This commit is contained in:
		
							parent
							
								
									b99120df39
								
							
						
					
					
						commit
						9f8a54a7da
					
				
					 3 changed files with 199 additions and 115 deletions
				
			
		| 
						 | 
					@ -52,6 +52,14 @@ export default {
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    methods: {
 | 
					    methods: {
 | 
				
			||||||
        onChange(e) {
 | 
					        onChange(e) {
 | 
				
			||||||
 | 
					            if (e.key === "Enter") {
 | 
				
			||||||
 | 
					                this.$router.push({
 | 
				
			||||||
 | 
					                    name: "SearchResults",
 | 
				
			||||||
 | 
					                    query: { search_query: this.searchText }
 | 
				
			||||||
 | 
					                });
 | 
				
			||||||
 | 
					                return;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            fetch(
 | 
					            fetch(
 | 
				
			||||||
                Constants.BASE_URL +
 | 
					                Constants.BASE_URL +
 | 
				
			||||||
                    "/suggestions?query=" +
 | 
					                    "/suggestions?query=" +
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										71
									
								
								src/components/SearchResults.vue
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										71
									
								
								src/components/SearchResults.vue
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,71 @@
 | 
				
			||||||
 | 
					<template>
 | 
				
			||||||
 | 
					    <h1 class="uk-text-center">
 | 
				
			||||||
 | 
					        {{ $route.query.search_query }}
 | 
				
			||||||
 | 
					    </h1>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <div v-if="results" class="uk-grid-xl" uk-grid="parallax: 0">
 | 
				
			||||||
 | 
					        <div
 | 
				
			||||||
 | 
					            style="background: #0b0e0f"
 | 
				
			||||||
 | 
					            class="uk-width-1-2 uk-width-1-3@s uk-width-1-4@m uk-width-1-5@l uk-width-1-6@xl"
 | 
				
			||||||
 | 
					            v-bind:key="result.url"
 | 
				
			||||||
 | 
					            v-for="result in results"
 | 
				
			||||||
 | 
					        >
 | 
				
			||||||
 | 
					            <div class="uk-text-secondary" style="background: #0b0e0f">
 | 
				
			||||||
 | 
					                <router-link
 | 
				
			||||||
 | 
					                    class="uk-text-emphasis"
 | 
				
			||||||
 | 
					                    v-bind:to="result.url || '/'"
 | 
				
			||||||
 | 
					                >
 | 
				
			||||||
 | 
					                    <img style="width: 100%" v-bind:src="result.thumbnail" />
 | 
				
			||||||
 | 
					                    <p>{{ result.name }}</p>
 | 
				
			||||||
 | 
					                </router-link>
 | 
				
			||||||
 | 
					                <router-link
 | 
				
			||||||
 | 
					                    class="uk-link-muted"
 | 
				
			||||||
 | 
					                    v-bind:to="result.uploaderUrl || '/'"
 | 
				
			||||||
 | 
					                >
 | 
				
			||||||
 | 
					                    <p>{{ result.uploaderName }}</p>
 | 
				
			||||||
 | 
					                </router-link>
 | 
				
			||||||
 | 
					                {{ result.duration ? timeFormat(result.duration) : "" }}
 | 
				
			||||||
 | 
					                <b v-if="result.views" class="uk-text-small uk-align-right">
 | 
				
			||||||
 | 
					                    <font-awesome-icon icon="eye"></font-awesome-icon>
 | 
				
			||||||
 | 
					                    {{ result.views }} views
 | 
				
			||||||
 | 
					                </b>
 | 
				
			||||||
 | 
					            </div>
 | 
				
			||||||
 | 
					        </div>
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<script>
 | 
				
			||||||
 | 
					import Constants from "@/Constants.js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export default {
 | 
				
			||||||
 | 
					    data() {
 | 
				
			||||||
 | 
					        return {
 | 
				
			||||||
 | 
					            results: null
 | 
				
			||||||
 | 
					        };
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    mounted() {
 | 
				
			||||||
 | 
					        this.updateResults();
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    watch: {
 | 
				
			||||||
 | 
					        "$route.query.search_query": function() {
 | 
				
			||||||
 | 
					            this.updateResults();
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    methods: {
 | 
				
			||||||
 | 
					        async fetchResults() {
 | 
				
			||||||
 | 
					            return await (
 | 
				
			||||||
 | 
					                await fetch(
 | 
				
			||||||
 | 
					                    Constants.BASE_URL +
 | 
				
			||||||
 | 
					                        "/search?q=" +
 | 
				
			||||||
 | 
					                        encodeURIComponent(this.$route.query.search_query)
 | 
				
			||||||
 | 
					                )
 | 
				
			||||||
 | 
					            ).json();
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        async updateResults() {
 | 
				
			||||||
 | 
					            this.results = this.fetchResults().then(
 | 
				
			||||||
 | 
					                json => (this.results = json)
 | 
				
			||||||
 | 
					            );
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					</script>
 | 
				
			||||||
| 
						 | 
					@ -3,6 +3,7 @@ import Watch from '../components/WatchVideo.vue'
 | 
				
			||||||
import Trending from '../components/TrendingPage.vue'
 | 
					import Trending from '../components/TrendingPage.vue'
 | 
				
			||||||
import Channel from '../components/Channel.vue'
 | 
					import Channel from '../components/Channel.vue'
 | 
				
			||||||
import Preferences from '../components/Preferences.vue'
 | 
					import Preferences from '../components/Preferences.vue'
 | 
				
			||||||
 | 
					import SearchResults from '../components/SearchResults.vue'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const routes = [{
 | 
					const routes = [{
 | 
				
			||||||
    path: '/watch',
 | 
					    path: '/watch',
 | 
				
			||||||
| 
						 | 
					@ -20,6 +21,10 @@ const routes = [{
 | 
				
			||||||
    path: '/preferences',
 | 
					    path: '/preferences',
 | 
				
			||||||
    name: 'Preferences',
 | 
					    name: 'Preferences',
 | 
				
			||||||
    component: Preferences
 | 
					    component: Preferences
 | 
				
			||||||
 | 
					}, {
 | 
				
			||||||
 | 
					    path: '/results',
 | 
				
			||||||
 | 
					    name: 'SearchResults',
 | 
				
			||||||
 | 
					    component: SearchResults
 | 
				
			||||||
}]
 | 
					}]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const router = createRouter({
 | 
					const router = createRouter({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue