boxcast-playlist/app.js

262 lines
7.7 KiB
JavaScript
Raw Normal View History

2022-04-22 16:56:41 -04:00
// @ts-check
/// <reference path="./types.d.ts"/>
2022-04-25 17:23:23 -04:00
import 'https://js.boxcast.com/v3.min.js';
2022-04-22 16:56:41 -04:00
import { h, html, render } from "https://esm.sh/htm/preact";
import { useReducer, useState, useEffect, useLayoutEffect, useMemo, useRef } from 'https://esm.sh/preact/hooks';
2022-04-25 17:23:23 -04:00
import State01 from "./testdata-01.json" assert { type: "json" };
import State02 from "./testdata-02.json" assert { type: "json" };
2022-04-26 12:04:39 -04:00
import State03 from "./testdata-03.json" assert { type: "json" };
2022-04-25 17:23:23 -04:00
2022-04-26 10:39:25 -04:00
const Styles =
{
2022-04-25 17:23:23 -04:00
Broadcast:
{
position: "relative",
display: "flex",
padding: "5px 0 5px 0",
},
Time:
{
width: "75px",
marginRight: "5px",
fontSize: "16px",
textAlign: "right",
},
Partition:
{
margin: "10px 0 0 0",
},
Pointer:
{
width: "75px",
},
Alert:
{
position: "fixed",
right: "20px",
bottom: "20px",
width: "300px",
height: "200px",
background: "#333",
borderRadius: "5px",
transition: "all 0.4s",
color: "#fff",
2022-04-26 12:04:39 -04:00
textAlign: "center",
2022-04-25 17:23:23 -04:00
}
};
const PlayerID = "boxcast-player"
2022-04-22 16:56:41 -04:00
/** @type {(props:{channel:string, interval:number})=>any} */
const App = props =>
{
/** @type {Boxcast.StateBinding<Array<Boxcast.Broadcast>>} */
const [ListGet, ListSet] = useState([]);
/** @type {Boxcast.StateBinding<Boxcast.Broadcast|null>} */
const [SelectedGet, SelectedSet] = useState(null);
2022-04-22 16:56:41 -04:00
/** @type {Boxcast.StateBinding<Boxcast.Broadcast|null>} */
2022-04-26 12:04:39 -04:00
const [LeadingGet, LeadingSet] = useState(null);
/** @type {Boxcast.StateBinding<boolean>} */
const [AlertGet, AlertSet] = useState(false);
2022-04-22 17:19:25 -04:00
2022-04-25 17:23:23 -04:00
/** @type {(inList:Array<Boxcast.Broadcast>)=>Array<Boxcast.Broadcast>} */
const SortStart = (inList) => {
inList.sort((a, b) => a.starts_at > b.starts_at ? 1 : -1);
inList.forEach( item => item.start = DateParse(item.starts_at));
return inList;
}
2022-04-22 16:56:41 -04:00
2022-04-25 17:23:23 -04:00
const Player = useRef(null);
2022-04-22 16:56:41 -04:00
2022-04-25 17:23:23 -04:00
// on mount
2022-04-22 17:19:25 -04:00
useEffect(()=>
{
2022-04-25 17:23:23 -04:00
Player.current = boxcast(`#${PlayerID}`);
return;
2022-04-25 10:36:55 -04:00
/** @type {()=>Promise} */
const Ping = async () =>
{
const response = await fetch(`https://rest.boxcast.com/channels/${props.channel}/broadcasts?l=50`);
/** @type {Array<Boxcast.Broadcast>} */
const json = await response.json();
2022-04-25 17:23:23 -04:00
ListSet(SortStart(json));
2022-04-25 10:36:55 -04:00
};
2022-04-22 17:19:25 -04:00
Ping();
const timer = setInterval(Ping, props.interval);
return ()=>clearInterval(timer);
}
, []);
2022-04-25 17:23:23 -04:00
// on new list
2022-04-25 10:36:55 -04:00
useEffect(()=>
{
2022-04-26 12:04:39 -04:00
let leading;
2022-04-25 10:36:55 -04:00
for(let i=0; i<ListGet.length; i++)
{
if(ListGet[i].timeframe != "past")
{
2022-04-26 12:04:39 -04:00
leading = ListGet[i];
LeadingSet(leading);
if(SelectedGet == null) // if nothing is selected select the leading event
{
SelectedSet(leading);
}
else if(SelectedGet?.id != leading?.id) // if something is selected other than the leading event, alert the user
{
AlertSet(true);
}
return;
2022-04-25 10:36:55 -04:00
}
}
2022-04-26 12:04:39 -04:00
if(ListGet.length) // if there are events but theres no leading event, clear leading and select the first event
2022-04-25 10:36:55 -04:00
{
2022-04-26 12:04:39 -04:00
LeadingSet(null);
SelectedSet(ListGet[0]);
AlertSet(false);
2022-04-25 10:36:55 -04:00
}
}
, [ListGet]);
2022-04-22 17:19:25 -04:00
2022-04-25 17:23:23 -04:00
// on new video selected
useEffect(()=>
{
2022-04-26 12:04:39 -04:00
const settings = {
selectedBroadcastId: SelectedGet?.id,
2022-04-25 17:23:23 -04:00
showTitle: true,
showDescription: true,
showCountdown: true,
showRelated: false,
autoplay: true,
defaultVideo: "next"
2022-04-26 12:04:39 -04:00
};
Player.current.loadChannel(props.channel, settings);
2022-04-22 16:56:41 -04:00
}
2022-04-25 17:23:23 -04:00
, [SelectedGet])
return html`
<div>
<div id=${PlayerID}></div>
<div>
<button onClick=${()=>ListSet(SortStart(State01))}>testdata-01</button>
2022-04-26 12:04:39 -04:00
<button onClick=${()=>ListSet(SortStart(State02))}>testdata-02</button>
<button onClick=${()=>ListSet(SortStart(State03))}>testdata-03</button>
2022-04-25 17:23:23 -04:00
</div>
<div class="Boxcast-Playlist">
${
ListGet.map( (item, index) => h(
BroadcastItem,
{
item: item,
previous: ListGet[index-1],
2022-04-26 12:04:39 -04:00
priority: item.id == LeadingGet?.id,
selected: item.id == SelectedGet?.id,
select: ()=>SelectedSet(item)
2022-04-25 17:23:23 -04:00
}
))
}
</div>
2022-04-26 12:04:39 -04:00
${ AlertGet ? h(BroadcastAlert,
{
broadcast: LeadingGet,
clickWatch: ()=>{ SelectedSet(LeadingGet); AlertSet(false); },
clickDismiss: ()=>{ AlertSet(false) }
}) : null }
2022-04-22 16:56:41 -04:00
</div>
`;
}
2022-04-25 17:23:23 -04:00
/** @type {(props:{item:Boxcast.Broadcast, previous: false | Boxcast.Broadcast, priority:boolean, selected:boolean, select:()=>void})=>any} */
const BroadcastItem = ({item, previous, priority, selected, select}) =>
2022-04-22 16:56:41 -04:00
{
2022-04-25 17:23:23 -04:00
let pointerText;
if(item.timeframe == "current" || item.timeframe == "preroll")
{
pointerText = `Live:`;
}
else if (priority)
{
pointerText = `Next:`;
}
let partition;
if(!previous || (previous.start.Date !== item.start.Date))
{
partition = html`<h3 key=${item.start.Day} style=${Styles.Partition} >${item.start.Day}, ${item.start.Month} ${item.start.Date}</h3>`
}
let buttonText;
if(item.timeframe == "past")
{
buttonText = "Recording";
}
if(item.timeframe == "current" || item.timeframe == "preroll")
{
buttonText = "Watch";
}
if(item.timeframe == "future")
{
buttonText = "Preview";
}
if(selected)
{
buttonText = "(Viewing)";
}
2022-04-22 16:56:41 -04:00
return html`
2022-04-25 17:23:23 -04:00
${ partition }
<div key=${item.id} onClick=${select} style=${Styles.Broadcast}>
<div style=${Styles.Pointer}>${ pointerText }</div>
<div style=${Styles.Time}>${item.start.Hours}:${item.start.Minutes} ${item.start.M}</div>
2022-04-22 16:56:41 -04:00
<strong>${item.name}</strong>
2022-04-25 17:23:23 -04:00
<button onClick=${select} disabled=${selected}>${buttonText}</button>
</div>`;
2022-04-22 16:56:41 -04:00
};
2022-04-26 12:04:39 -04:00
/** @type { (props:{broadcast:Boxcast.Broadcast, clickWatch:()=>void, clickDismiss:()=>void})=>any } */
const BroadcastAlert = ({broadcast, clickWatch, clickDismiss}) =>
2022-04-25 17:23:23 -04:00
{
return html`
<div style=${Styles.Alert}>
2022-04-26 12:04:39 -04:00
<span onClick=${clickDismiss}>X</span>
<h4>A new session is starting:</h4>
<p>${broadcast.name}</p>
<button onClick=${clickWatch}>Watch Now</button>
2022-04-25 17:23:23 -04:00
</div>
`;
}
2022-04-22 16:56:41 -04:00
/** @type {(inDate:string)=>Boxcast.Date} */
const DateParse = (inDateString) =>
{
let date = new Date(inDateString);
/** @type {Boxcast.Date} */
let obj = {
Zone: date.toString().match(/\(([A-Za-z\s].*)\)/),
Day: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"][date.getDay()],
Month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"][date.getMonth()],
Date: date.getDate(),
Hours: date.getHours(),
Minutes: date.getMinutes(),
2022-04-26 10:39:25 -04:00
Epoch: date.valueOf()
2022-04-22 16:56:41 -04:00
};
obj.Zone = obj.Zone ? obj.Zone[1] : "local time";
obj.M = obj.Hours >= 12 ? "PM" : "AM";
obj.Hours %= 12;
if(obj.Hours == 0){ obj.Hours = 12; }
if(obj.Minutes < 10){ obj.Minutes = "0"+obj.Minutes; }
return obj;
};
2022-04-26 10:39:25 -04:00
/** @type {(inChannel:string, inSelector:string)=>void} */
export default (inChannel, inSelector) => render(h(App, {channel:inChannel, interval:50000}), document.querySelector(inSelector));