mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-08 00:08:14 +01:00
Add: Bookshelf list link to audiobook page
This commit is contained in:
parent
729654f5b2
commit
e564c80ed2
@ -11,9 +11,9 @@
|
|||||||
<cards-book-cover :width="24" :audiobook="book" />
|
<cards-book-cover :width="24" :audiobook="book" />
|
||||||
</td>
|
</td>
|
||||||
<td class="body-cell min-w-64 max-w-64 px-2">
|
<td class="body-cell min-w-64 max-w-64 px-2">
|
||||||
<p class="truncate">
|
<nuxt-link :to="`/audiobook/${book.id}`" class="truncate hover:underline">
|
||||||
{{ book.book.title }}<span v-if="book.book.subtitle">: {{ book.book.subtitle }}</span>
|
{{ book.book.title }}<span v-if="book.book.subtitle">: {{ book.book.subtitle }}</span>
|
||||||
</p>
|
</nuxt-link>
|
||||||
</td>
|
</td>
|
||||||
<td class="body-cell min-w-48 max-w-48 px-2">
|
<td class="body-cell min-w-48 max-w-48 px-2">
|
||||||
<p class="truncate">{{ book.book.authorFL }}</p>
|
<p class="truncate">{{ book.book.authorFL }}</p>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
<div class="flex items-end">
|
<div class="flex items-end">
|
||||||
<h1 class="text-3xl font-sans">
|
<h1 class="text-3xl font-sans">
|
||||||
{{ title }}<span v-if="isDeveloperMode"> ({{ audiobook.ino }})</span>
|
{{ title }}
|
||||||
</h1>
|
</h1>
|
||||||
<p v-if="subtitle" class="ml-4 text-gray-400 text-2xl">{{ subtitle }}</p>
|
<p v-if="subtitle" class="ml-4 text-gray-400 text-2xl">{{ subtitle }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -19,6 +19,8 @@ class RssFeeds {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getFeed(req, res) {
|
getFeed(req, res) {
|
||||||
|
Logger.info('Get Feed', req.params.id, this.feeds[req.params.id])
|
||||||
|
|
||||||
var feed = this.feeds[req.params.id]
|
var feed = this.feeds[req.params.id]
|
||||||
if (!feed) return null
|
if (!feed) return null
|
||||||
var xml = feed.buildXml()
|
var xml = feed.buildXml()
|
||||||
@ -27,15 +29,16 @@ class RssFeeds {
|
|||||||
}
|
}
|
||||||
|
|
||||||
openFeed(audiobook) {
|
openFeed(audiobook) {
|
||||||
var serverAddress = 'http://' + ip.address('public', 'ipv4') + ':' + this.Port
|
var ipAddress = ip.address('public', 'ipv4')
|
||||||
|
var serverAddress = 'http://' + ipAddress + ':' + this.Port
|
||||||
Logger.info('Open RSS Feed', 'Server address', serverAddress)
|
Logger.info('Open RSS Feed', 'Server address', serverAddress)
|
||||||
|
|
||||||
var feedId = (Date.now() + Math.floor(Math.random() * 1000)).toString(36)
|
var feedId = (Date.now() + Math.floor(Math.random() * 1000)).toString(36)
|
||||||
const feed = new Podcast({
|
const feed = new Podcast({
|
||||||
title: audiobook.title,
|
title: audiobook.title,
|
||||||
description: 'AudioBookshelf RSS Feed',
|
description: 'AudioBookshelf RSS Feed',
|
||||||
feedUrl: `${serverAddress}/feeds/${feedId}`,
|
feed_url: `${serverAddress}/feeds/${feedId}`,
|
||||||
imageUrl: `${serverAddress}/Logo.png`,
|
image_url: `${serverAddress}/Logo.png`,
|
||||||
author: 'advplyr',
|
author: 'advplyr',
|
||||||
language: 'en'
|
language: 'en'
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user