You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
3.9 KiB
145 lines
3.9 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" integrity="sha512-EZLkOqwILORob+p0BXZc+Vm3RgJBOe1Iq/0fiI7r/wJgzOFZMlsqTa29UEl6v6U6gsV4uIpsNZoV32YZqrCRCQ==" crossorigin="anonymous" />
|
|
<title>Add Podcast - PodGrab</title>
|
|
{{template "commoncss"}}
|
|
<style>
|
|
[v-cloak] { display: none }
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="container">
|
|
<section class="header">
|
|
<h1>{{ .title }}</h1>
|
|
</section>
|
|
{{template "navbar"}}
|
|
<br>
|
|
<div id="app" v-cloak>
|
|
<div class="row">
|
|
<h4>Add using the direct link to rss feed</h4>
|
|
<form action="/" method="post" @submit="addPodcastManual">
|
|
<div class="nine columns">
|
|
<input type="url" v-model="url" name="url" id="url" placeholder="Enter Podcast RSS feed to add" class="u-full-width">
|
|
</div>
|
|
<div class="three columns">
|
|
<input type="submit" value="Add Podcast" class="u-full-width button-primary">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<hr>
|
|
<div class="row" id="searchContainer">
|
|
<h4>Search for your favorite podcast</h4>
|
|
<p>Experimental: Uses gpodder API to show search results.</p>
|
|
<form action="/search" method="post" @submit="search">
|
|
<div class="nine columns">
|
|
<input type="search" name="search" id="search" placeholder="Search for your podcast" v-model="query" class="u-full-width">
|
|
</div>
|
|
<div class="three columns">
|
|
<input type="submit" value="Search" class="u-full-width button-primary">
|
|
</div>
|
|
</form>
|
|
<br>
|
|
<progress v-if="searching" class="u-full-width"></progress>
|
|
<div class="results">
|
|
|
|
<div v-for="item in results" :key="item.url" class="row">
|
|
<div class="columns two">
|
|
<img class="u-full-width" :src="item.scaled_logo_url" :alt="item.title">
|
|
</div>
|
|
<div class="columns nine">
|
|
<h5>${item.title}</h5>
|
|
|
|
<p>${ item.description }</p>
|
|
</div>
|
|
<div class="columns one">
|
|
<button v-if="!item.already_saved" v-on:click="addPodcast(item)" class="button button-primary">+ Add</button >
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "scripts"}}
|
|
|
|
<script>
|
|
var app = new Vue({
|
|
delimiters: ['${', '}'],
|
|
el: '#app',
|
|
data: {
|
|
results: [],
|
|
query:'',
|
|
searching:false,
|
|
url:''
|
|
},
|
|
methods:{
|
|
search:function(e){
|
|
e.preventDefault();
|
|
if(!this.query){
|
|
return;
|
|
}
|
|
var self=this;
|
|
self.searching=true;
|
|
axios.get("/search?q="+this.query)
|
|
.then(function(response){
|
|
self.results= response.data
|
|
})
|
|
.catch(function(error){
|
|
|
|
}).
|
|
then(function(){
|
|
self.searching=false;
|
|
})
|
|
|
|
},
|
|
addPodcastManual:function(e){
|
|
e.preventDefault();
|
|
if(!this.url){
|
|
return;
|
|
}
|
|
this.addPodcast({url:this.url})
|
|
|
|
}
|
|
,
|
|
addPodcast:function(item){
|
|
// console.log(item);
|
|
var self=this;
|
|
self.searching=true;
|
|
axios.post("/podcasts",{
|
|
url:item.url
|
|
})
|
|
.then(function(response){
|
|
Vue.toasted.show('Podcast added successfully.' ,{
|
|
theme: "bubble",
|
|
position: "top-right",
|
|
duration : 5000
|
|
})
|
|
item.already_saved= true
|
|
|
|
})
|
|
.catch(function(error){
|
|
if(error.response){
|
|
|
|
Vue.toasted.show(error.response.data?.message, {
|
|
theme: "bubble",
|
|
position: "top-right",
|
|
duration : 5000
|
|
})
|
|
}
|
|
|
|
}).
|
|
then(function(){
|
|
self.searching=false;
|
|
})
|
|
return false;
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |