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
Commits
b8a5ccda
Commit
b8a5ccda
authored
2 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
docs: media player button
parent
7f902aec
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+43
-7
43 additions, 7 deletions
README.md
with
43 additions
and
7 deletions
README.md
+
43
−
7
View file @
b8a5ccda
...
@@ -38,18 +38,19 @@ Provided components:
...
@@ -38,18 +38,19 @@ Provided components:
1.
[
Website Integration
](
#website-integration
)
1.
[
Website Integration
](
#website-integration
)
2.
[
Components
](
#components
)
2.
[
Components
](
#components
)
1.
[
Media Player
](
#media-player
)
1.
[
Media Player
](
#media-player
)
2.
[
Programme Information
](
#programme-information
)
2.
[
Media Player Button
](
#media-player-button
)
3.
[
Track Service
](
#track-service
)
3.
[
Programme Information
](
#programme-information
)
4.
[
Online Status (Toast Notification)
](
#online-status-toast-notification
)
4.
[
Track Service
](
#track-service
)
5.
[
Host
](
#host
)
5.
[
Online Status (Toast Notification)
](
#online-status-toast-notification
)
6.
[
Host
](
#host
)
1.
[
Host List Component
](
#host-list-component
)
1.
[
Host List Component
](
#host-list-component
)
2.
[
Host Detail Component
](
#host-detail-component
)
2.
[
Host Detail Component
](
#host-detail-component
)
6
.
[
Show
](
#show
)
7
.
[
Show
](
#show
)
1.
[
Show List Component
](
#show-list-component
)
1.
[
Show List Component
](
#show-list-component
)
2.
[
Show Detail Component
](
#show-detail-component
)
2.
[
Show Detail Component
](
#show-detail-component
)
7
.
[
Episode
](
#episode
)
8
.
[
Episode
](
#episode
)
1.
[
Episode Detail Component
](
#episode-detail-component
)
1.
[
Episode Detail Component
](
#episode-detail-component
)
8
.
[
Category
](
#category
)
9
.
[
Category
](
#category
)
1.
[
Category List Component
](
#category-list-component
)
1.
[
Category List Component
](
#category-list-component
)
3.
[
Progressive Web App
](
#progressive-web-app
)
3.
[
Progressive Web App
](
#progressive-web-app
)
1.
[
Service Worker
](
#service-worker
)
1.
[
Service Worker
](
#service-worker
)
...
@@ -91,6 +92,41 @@ Renders the Radio Media Player.
...
@@ -91,6 +92,41 @@ Renders the Radio Media Player.
</script>
</script>
```
```
### Media Player Button
Display a button to either add a track to playlist (
`type='add'`
) or add and play (
`type='play'`
).
This currently only works when the player is part of the page, not when being used in popup mode.
```
html
<div
class=
"demo-album component-container"
>
<div
class=
"album-art lorn"
></div>
<div
id=
"media-player-button-play"
class=
"media-player-button component-container"
></div>
</div>
<script>
/** Inject component into HTML **/
document
.
addEventListener
(
'
DOMContentLoaded
'
,
function
(
event
)
{
new
AuraMediaPlayerButton
({
target
:
document
.
getElementById
(
'
media-player-button-play
'
),
props
:
{
type
:
'
play
'
,
label
:
'
Play
'
,
track
:
{
name
:
'
Anvil
'
,
artist
:
'
Lorn
'
,
album
:
'
Anvil
'
,
url
:
'
/path/to/audio.mp3
'
,
cover
:
'
/path/to/audio-cover.png
'
,
},
},
})
})
</script>
```
### Programme Information
### Programme Information
Renders the daily programme info by listing all shows of the selected day.
Renders the daily programme info by listing all shows of the selected day.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment