179 lines
8.3 KiB
HTML
179 lines
8.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Podstalk — Dashboard</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/neobrutalismcss@latest" />
|
|
<style>
|
|
body { max-width: 960px; margin: 0 auto; padding: 2rem 1rem; }
|
|
.container { margin-top: 2rem; }
|
|
.flash { padding: 0.75rem 1rem; margin-bottom: 1rem; border: 2px solid #000; }
|
|
.flash-error { background: #ffcdd2; }
|
|
.flash-success { background: #c8e6c9; }
|
|
.flash-info { background: #e3f2fd; }
|
|
.episode-actions { display: flex; gap: 0.5rem; }
|
|
.settings-section { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid #ddd; }
|
|
.settings-form { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; }
|
|
.settings-form .form-group { margin-bottom: 0; }
|
|
.hidden { display: none; }
|
|
.file-upload { position: relative; display: inline-block; }
|
|
.file-upload input[type="file"] { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
|
|
.file-name { margin-left: 0.5rem; font-size: 0.85rem; color: #666; }
|
|
</head>
|
|
<body>
|
|
<nav class="nb-navbar" role="navigation" aria-label="Main navigation">
|
|
<a href="/" class="nb-navbar-brand" aria-label="Go to homepage">{{.PodcastTitle}}</a>
|
|
<ul class="nb-navbar-nav" role="menubar">
|
|
<li class="nb-navbar-item" role="none">
|
|
<a href="/" class="nb-navbar-link active" role="menuitem" aria-current="page">Dashboard</a>
|
|
</li>
|
|
<li class="nb-navbar-item" role="none">
|
|
<a href="/signout" class="nb-navbar-link" role="menuitem">Sign Out</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<div class="container">
|
|
<div id="flash-error" class="flash flash-error hidden"></div>
|
|
<div id="flash-success" class="flash flash-success hidden"></div>
|
|
|
|
<div class="settings-section">
|
|
<h2>Podcast Settings</h2>
|
|
<form method="post" action="/settings" enctype="multipart/form-data">
|
|
<div class="settings-form">
|
|
<div class="form-group" style="flex: 1; min-width: 200px;">
|
|
<label for="podcast_title">Podcast Title</label>
|
|
<input type="text" id="podcast_title" name="podcast_title" class="nb-input blue"
|
|
value="{{.PodcastTitle}}" />
|
|
</div>
|
|
<div class="form-group" style="flex: 1; min-width: 160px;">
|
|
<label for="podcast_slug">URL Slug</label>
|
|
<input type="text" id="podcast_slug" name="podcast_slug" class="nb-input blue"
|
|
value="{{.PodcastSlug}}" placeholder="my-podcast" />
|
|
</div>
|
|
<div class="form-group" style="flex: 1; min-width: 200px;">
|
|
<label for="podcast_author">Author</label>
|
|
<input type="text" id="podcast_author" name="podcast_author" class="nb-input blue"
|
|
<div class="form-group">
|
|
<label for="podcast_image">Podcast Image</label>
|
|
<div class="file-upload">
|
|
<input type="file" id="podcast_image" name="podcast_image" accept="image/*" onchange="updateFileName(this)" />
|
|
<label for="podcast_image" class="nb-button blue file-label">Choose Image</label>
|
|
<span class="file-name" id="podcast_image_name"></span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<button type="submit" class="nb-button green">Save</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{{if .PodcastImage}}
|
|
<div style="margin-top: 1rem;">
|
|
<img src="/uploads/{{.PodcastImage}}" alt="Podcast image" style="max-width: 150px; max-height: 150px; border: 2px solid #000;" />
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
<div class="nb-card" style="margin-bottom: 1.5rem;">
|
|
<div class="nb-card-content">
|
|
<h4 class="nb-card-title">RSS Feed</h4>
|
|
<p class="nb-card-text">
|
|
<code id="rss-url"></code>
|
|
<button class="nb-button default" onclick="copyRSS()" style="margin-left: 0.5rem;">Copy</button>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function updateFileName(input) {
|
|
const span = document.getElementById(input.id + '_name');
|
|
if (span && input.files.length > 0) {
|
|
span.textContent = input.files[0].name;
|
|
}
|
|
}
|
|
// Flash messages from query params
|
|
(function() {
|
|
const params = new URLSearchParams(window.location.search);
|
|
const err = params.get('error');
|
|
const ok = params.get('success');
|
|
if (err) {
|
|
const el = document.getElementById('flash-error');
|
|
el.textContent = err.replace(/\+/g, ' ').replace(/%20/g, ' ');
|
|
el.classList.remove('hidden');
|
|
}
|
|
if (ok) {
|
|
const el = document.getElementById('flash-success');
|
|
el.textContent = ok.replace(/\+/g, ' ').replace(/%20/g, ' ');
|
|
el.classList.remove('hidden');
|
|
}
|
|
// Clean URL
|
|
if (err || ok) {
|
|
window.history.replaceState({}, '', window.location.pathname);
|
|
}
|
|
})();
|
|
|
|
const rssURL = '{{.BaseURL}}/rss/{{.PodcastSlug}}';
|
|
document.getElementById('rss-url').textContent = rssURL;
|
|
function copyRSS() {
|
|
navigator.clipboard.writeText(rssURL).then(() => {
|
|
const btn = event.target;
|
|
btn.textContent = 'Copied!';
|
|
setTimeout(() => btn.textContent = 'Copy', 1500);
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<h2>Episodes</h2>
|
|
|
|
<div style="margin-bottom: 1.5rem;">
|
|
<a href="/episodes/new" class="nb-button blue">+ New Episode</a>
|
|
</div>
|
|
|
|
{{if .Episodes}}
|
|
<div class="nb-table-container">
|
|
<div class="nb-table-header">All Episodes ({{len .Episodes}})</div>
|
|
<table class="nb-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Image</th>
|
|
<th>Published</th>
|
|
<th>Audio</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Episodes}}
|
|
<tr>
|
|
<td>{{.Title}}</td>
|
|
<td>
|
|
{{$img := .ImagePath}}
|
|
{{if not $img}}{{$img = $.PodcastImage}}{{end}}
|
|
{{if $img}}<img src="/uploads/{{$img}}" style="max-width: 48px; max-height: 48px; border: 1px solid #000;" />{{else}}—{{end}}
|
|
</td>
|
|
<td>{{.PublishedAt.Format "Jan 2, 2006"}}</td>
|
|
<td>{{if .AudioPath}}✓{{else}}—{{end}}</td>
|
|
<td>
|
|
<div class="episode-actions">
|
|
<a href="/episodes/edit?id={{.ID}}" class="nb-button default">Edit</a>
|
|
<form method="post" action="/episodes/delete?id={{.ID}}" style="display:inline" onsubmit="return confirm('Delete this episode?')">
|
|
<button type="submit" class="nb-button orange">Delete</button>
|
|
</form>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{else}}
|
|
<div class="nb-card">
|
|
<div class="nb-card-content">
|
|
<h4 class="nb-card-title">No episodes yet</h4>
|
|
<p class="nb-card-text">Create your first episode to get started.</p>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</body>
|
|
</html>
|