Introduce streams
This commit is contained in:
parent
bbde2299fe
commit
8e948fc451
@ -47,7 +47,7 @@ func declareInputsRoutes(cfg *config.Config, router *gin.RouterGroup) {
|
|||||||
inputsRoutes.GET("/settings", func(c *gin.Context) {
|
inputsRoutes.GET("/settings", func(c *gin.Context) {
|
||||||
c.JSON(http.StatusOK, c.MustGet("input"))
|
c.JSON(http.StatusOK, c.MustGet("input"))
|
||||||
})
|
})
|
||||||
inputsRoutes.GET("/currently", func(c *gin.Context) {
|
inputsRoutes.GET("/streams", func(c *gin.Context) {
|
||||||
src := c.MustGet("input").(inputs.SoundInput)
|
src := c.MustGet("input").(inputs.SoundInput)
|
||||||
|
|
||||||
if !src.IsActive() {
|
if !src.IsActive() {
|
||||||
@ -58,7 +58,7 @@ func declareInputsRoutes(cfg *config.Config, router *gin.RouterGroup) {
|
|||||||
c.JSON(http.StatusOK, src.CurrentlyPlaying())
|
c.JSON(http.StatusOK, src.CurrentlyPlaying())
|
||||||
})
|
})
|
||||||
|
|
||||||
streamRoutes := inputsRoutes.Group("/stream/:stream")
|
streamRoutes := inputsRoutes.Group("/streams/:stream")
|
||||||
streamRoutes.Use(StreamHandler)
|
streamRoutes.Use(StreamHandler)
|
||||||
|
|
||||||
streamRoutes.POST("/pause", func(c *gin.Context) {
|
streamRoutes.POST("/pause", func(c *gin.Context) {
|
||||||
|
@ -39,27 +39,32 @@
|
|||||||
{/each}
|
{/each}
|
||||||
{#each $inputsList as input}
|
{#each $inputsList as input}
|
||||||
{#if showInactives || input.active}
|
{#if showInactives || input.active}
|
||||||
<li class="list-group-item py-3 d-flex justify-content-between">
|
<li class="list-group-item py-3 d-flex flex-column">
|
||||||
<div>
|
|
||||||
<strong>{input.name}</strong>
|
<strong>{input.name}</strong>
|
||||||
{#await input.currently()}
|
{#await input.streams()}
|
||||||
<div class="spinner-border spinner-border-sm" role="status">
|
<div class="spinner-border spinner-border-sm" role="status">
|
||||||
<span class="visually-hidden">Loading...</span>
|
<span class="visually-hidden">Loading...</span>
|
||||||
</div>
|
</div>
|
||||||
{:then title}
|
{:then streams}
|
||||||
|
{#each Object.keys(streams) as idstream}
|
||||||
|
{@const title = streams[idstream]}
|
||||||
|
<div class="d-flex justify-content-between">
|
||||||
|
<div>
|
||||||
<span class="text-muted">{title}</span>
|
<span class="text-muted">{title}</span>
|
||||||
{/await}
|
|
||||||
</div>
|
</div>
|
||||||
{#if input.controlable}
|
{#if input.controlable}
|
||||||
<div>
|
<div>
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm btn-primary"
|
class="btn btn-sm btn-primary"
|
||||||
on:click={() => input.playpause()}
|
on:click={() => input.playpause(idstream)}
|
||||||
>
|
>
|
||||||
<i class="bi bi-pause"></i>
|
<i class="bi bi-pause"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
</div>
|
||||||
|
{/each}
|
||||||
|
{/await}
|
||||||
</li>
|
</li>
|
||||||
{/if}
|
{/if}
|
||||||
{/each}
|
{/each}
|
||||||
|
@ -12,8 +12,8 @@ export class Input {
|
|||||||
this.controlable = controlable;
|
this.controlable = controlable;
|
||||||
}
|
}
|
||||||
|
|
||||||
async currently() {
|
async streams() {
|
||||||
const data = await fetch(`api/inputs/${this.id}/currently`, {headers: {'Accept': 'application/json'}});
|
const data = await fetch(`api/inputs/${this.id}/streams`, {headers: {'Accept': 'application/json'}});
|
||||||
if (data.status == 200) {
|
if (data.status == 200) {
|
||||||
return await data.json();
|
return await data.json();
|
||||||
} else {
|
} else {
|
||||||
@ -21,8 +21,8 @@ export class Input {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async playpause() {
|
async playpause(idstream) {
|
||||||
const data = await fetch(`api/inputs/${this.id}/pause`, {headers: {'Accept': 'application/json'}, method: 'POST'});
|
const data = await fetch(`api/inputs/${this.id}/streams/${idstream}/pause`, {headers: {'Accept': 'application/json'}, method: 'POST'});
|
||||||
if (data.status != 200) {
|
if (data.status != 200) {
|
||||||
throw new Error((await res.json()).errmsg);
|
throw new Error((await res.json()).errmsg);
|
||||||
}
|
}
|
||||||
|
@ -40,12 +40,16 @@
|
|||||||
<div class="d-inline-block me-3">
|
<div class="d-inline-block me-3">
|
||||||
<div class="d-flex justify-content-between align-items-center">
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
<div>
|
<div>
|
||||||
{#await input.currently()}
|
{#await input.streams()}
|
||||||
<div class="spinner-border spinner-border-sm" role="status">
|
<div class="spinner-border spinner-border-sm" role="status">
|
||||||
<span class="visually-hidden">Loading...</span>
|
<span class="visually-hidden">Loading...</span>
|
||||||
</div> <span class="text-muted">@ {input.name}</span>
|
</div> <span class="text-muted">@ {input.name}</span>
|
||||||
{:then title}
|
{:then streams}
|
||||||
<strong>{title}</strong> <span class="text-muted">@ {input.name}</span>
|
{#each Object.keys(streams) as idstream}
|
||||||
|
{@const title = streams[idstream]}
|
||||||
|
<strong>{title}</strong>
|
||||||
|
{/each}
|
||||||
|
<span class="text-muted">@ {input.name}</span>
|
||||||
{:catch error}
|
{:catch error}
|
||||||
{input.name} activée
|
{input.name} activée
|
||||||
{/await}
|
{/await}
|
||||||
|
Loading…
Reference in New Issue
Block a user