Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
play
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
play
Compare revisions
ef08c88776aea48b0c1b6c78821d16ddfe9bfbd9 to 55aa7883142c92113ddc2a4a6bc721be3fc872f7
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
aura/play
Select target project
No results found
55aa7883142c92113ddc2a4a6bc721be3fc872f7
Select Git revision
Branches
develop
main
new-player
Swap
Target
aura/play
Select target project
aura/play
1 result
ef08c88776aea48b0c1b6c78821d16ddfe9bfbd9
Select Git revision
Branches
develop
main
new-player
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
chore: update cba media domains
· 1c0ac660
David Trattnig
authored
5 months ago
1c0ac660
fix: file media query
· 55aa7883
David Trattnig
authored
5 months ago
55aa7883
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/dev-settings.json
+6
-1
6 additions, 1 deletion
config/dev-settings.json
config/sample-settings.json
+6
-1
6 additions, 1 deletion
config/sample-settings.json
src/lib/elements/EpisodePlayMedia.svelte
+9
-1
9 additions, 1 deletion
src/lib/elements/EpisodePlayMedia.svelte
with
21 additions
and
3 deletions
config/dev-settings.json
View file @
55aa7883
...
...
@@ -18,7 +18,12 @@
"pollRefresh"
:
5
},
"cba"
:
{
"allowedDomains"
:
[
"https://cba.media/"
,
"https://cba.fro.at/"
,
"https://cba.o94.at/"
],
"allowedDomains"
:
[
"https://cba.media/"
,
"https://de.cba.media/"
,
"https://cba.fro.at/"
,
"https://cba.o94.at/"
],
"api"
:
{
"url"
:
"https://cba.aura.radio/"
,
"key"
:
"Z5dBO91ktM1-hFQu"
,
...
...
This diff is collapsed.
Click to expand it.
config/sample-settings.json
View file @
55aa7883
...
...
@@ -18,7 +18,12 @@
"pollRefresh"
:
5
},
"cba"
:
{
"allowedDomains"
:
[
"https://cba.media/"
,
"https://cba.fro.at/"
,
"https://cba.o94.at/"
],
"allowedDomains"
:
[
"https://cba.media/"
,
"https://de.cba.media/"
,
"https://cba.fro.at/"
,
"https://cba.o94.at/"
],
"api"
:
{
"url"
:
"https://cba.your-radio-domain.at/wp-json/wp/v2"
,
"key"
:
"--your-api-key--"
,
...
...
This diff is collapsed.
Click to expand it.
src/lib/elements/EpisodePlayMedia.svelte
View file @
55aa7883
...
...
@@ -37,7 +37,15 @@
/* Callback to process the API response */
function
processResponse
(
data
)
{
console
.
log
(
'
CBA API response:
'
,
data
);
urlMedia
=
data
[
0
]?.
source_url
;
// Get media file URL
let
media
;
data
.
forEach
((
element
)
=>
{
if
(
element
.
media_type
==
'
file
'
)
{
media
=
element
;
}
});
urlMedia
=
media
?.
source_url
;
let
trackData
=
{
name
:
episode
.
note
.
title
,
...
...
This diff is collapsed.
Click to expand it.