mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-12-22 16:30:20 +00:00
add $youtube.autoComplete()
This commit is contained in:
parent
a260d115a3
commit
c05239f595
4 changed files with 36 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
node_modules
|
node_modules
|
||||||
nuxt/dist
|
nuxt/dist
|
||||||
dist
|
dist
|
||||||
|
package-lock.json
|
||||||
|
|
|
@ -3,6 +3,29 @@
|
||||||
<v-text-field
|
<v-text-field
|
||||||
label="Search"
|
label="Search"
|
||||||
outlined
|
outlined
|
||||||
|
v-model="text"
|
||||||
|
@input="textChanged"
|
||||||
/>
|
/>
|
||||||
|
{{ response }}
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
text: null,
|
||||||
|
response: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
textChanged() {
|
||||||
|
this.$youtube.autoComplete(this.text, (data) => {
|
||||||
|
this.response = data;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
|
import { Http } from '@capacitor-community/http';
|
||||||
|
|
||||||
const module = {
|
const module = {
|
||||||
test() {
|
async autoComplete(text, callback) {
|
||||||
return "success";
|
|
||||||
|
const options = {
|
||||||
|
url: 'https://suggestqueries-clients6.youtube.com/complete/search',
|
||||||
|
params: { client: 'youtube', q: text },
|
||||||
|
};
|
||||||
|
const response = await Http.request(options);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@capacitor-community/http": "^1.4.1",
|
||||||
"@capacitor/android": "^3.4.0",
|
"@capacitor/android": "^3.4.0",
|
||||||
"@capacitor/cli": "^3.4.0",
|
"@capacitor/cli": "^3.4.0",
|
||||||
"@capacitor/core": "^3.4.0"
|
"@capacitor/core": "^3.4.0"
|
||||||
|
|
Loading…
Reference in a new issue