Compare commits

...

4 Commits

Author SHA1 Message Date
be212c3bb0 fix random styled components error 2022-04-26 17:10:25 -04:00
88516c82b2 revert selecteget to id 2022-04-26 16:00:04 -04:00
c54e398eb1 react + styled-components 2022-04-26 13:50:21 -04:00
ec2c8916e0 alert toggling 2022-04-26 12:04:39 -04:00
3 changed files with 208 additions and 121 deletions

293
app.js
View File

@ -2,48 +2,113 @@
/// <reference path="./types.d.ts"/> /// <reference path="./types.d.ts"/>
import 'https://js.boxcast.com/v3.min.js'; import 'https://js.boxcast.com/v3.min.js';
import { h, html, render } from "https://esm.sh/htm/preact"; import { html } from "https://esm.sh/htm/react";
import { useReducer, useState, useEffect, useLayoutEffect, useMemo, useRef } from 'https://esm.sh/preact/hooks'; import styled from 'https://esm.sh/styled-components?deps=react@18';
import State01 from "./testdata-01.json" assert { type: "json" }; import { createElement as h, useState, useEffect, useRef } from 'https://esm.sh/react@18';
import State02 from "./testdata-02.json" assert { type: "json" }; import { createRoot } from "https://esm.sh/react-dom/client";
const Styles = const StyledRoot = styled.div`
.Partition
{ {
Broadcast: margin: 10px 0 0 0;
}
.Broadcast
{
position: relative;
display: flex;
padding: 5px 0 5px 0;
.Pointer
{ {
position: "relative", width: 75px;
display: "flex", .Badge
padding: "5px 0 5px 0", {
}, display: inline-block;
Time: border-radius: 20px;
{ padding: 2px 8px;
width: "75px", font-size: 12px;
marginRight: "5px", font-weight: 900;
fontSize: "16px", font-family: sans-serif;
textAlign: "right", letter-spacing: 0.1em;
},
Partition: &.Next
{ {
margin: "10px 0 0 0", background: yellow;
}, color: black;
Pointer: }
{ &.Live
width: "75px", {
}, background: limegreen;
Alert: color: white;
{ }
position: "fixed", }
right: "20px",
bottom: "20px",
width: "300px",
height: "200px",
background: "#333",
borderRadius: "5px",
transition: "all 0.4s",
color: "#fff",
} }
}; .Time
const PlayerID = "boxcast-player" {
width: 75px;
margin-right: 5px;
font-size: 16px;
text-align: right;
}
.Title
{
flex: 1;
}
.Control
{
button
{
appearance: none;
display: block;
width: 80px;
padding: 5px 10px 5px 10px;
background: black;
cursor: pointer;
border: none;
color: white;
font-size: 10px;
font-weight: 900;
}
button[disabled]
{
background: grey;
}
}
}
.Alert
{
position: fixed;
right: 20px;
bottom: -300px;
width: 300px;
height: 200px;
background: #333;
border-radius: 5px;
transition: bottom 0.4s;
color: #fff;
text-align: center;
&.Show
{
bottom: 20px;
}
.Close
{
display: inline-block;
position: absolute;
padding: 5px 10px 5px 10px;
border-radius: 20px;
top: -15px;
right: 10px;
background: #000000;
cursor: pointer;
color: #fff;
}
}
`;
const PlayerID = "boxcast-player";
/** @type {(props:{channel:string, interval:number})=>any} */ /** @type {(props:{channel:string, interval:number})=>any} */
const App = props => const App = props =>
@ -51,11 +116,14 @@ const App = props =>
/** @type {Boxcast.StateBinding<Array<Boxcast.Broadcast>>} */ /** @type {Boxcast.StateBinding<Array<Boxcast.Broadcast>>} */
const [ListGet, ListSet] = useState([]); const [ListGet, ListSet] = useState([]);
/** @type {Boxcast.StateBinding<Boxcast.Broadcast|null>} */ /** @type {Boxcast.StateBinding<string|null>} */
const [SelectedGet, SelectedSet] = useState(null); const [SelectedGet, SelectedSet] = useState(null);
/** @type {Boxcast.StateBinding<Boxcast.Broadcast|null>} */ /** @type {Boxcast.StateBinding<Boxcast.Broadcast|null>} */
const [LiveGet, LiveSet] = useState(null); const [LeadingGet, LeadingSet] = useState(null);
/** @type {Boxcast.StateBinding<boolean>} */
const [AlertGet, AlertSet] = useState(false);
/** @type {(inList:Array<Boxcast.Broadcast>)=>Array<Boxcast.Broadcast>} */ /** @type {(inList:Array<Boxcast.Broadcast>)=>Array<Boxcast.Broadcast>} */
const SortStart = (inList) => { const SortStart = (inList) => {
@ -70,23 +138,7 @@ const App = props =>
useEffect(()=> useEffect(()=>
{ {
Player.current = boxcast(`#${PlayerID}`); Player.current = boxcast(`#${PlayerID}`);
/*
Player.current.loadChannel(props.channel,
{
showTitle: true,
showDescription: true,
showCountdown: true,
//selectedBroadcastId: "yo8sefnnejvw3cx3vhup",
showRelated: false,
onLoadBroadcast: console.log,
autoplay: true,
defaultVideo: "next"
});
*/
return;
/** @type {()=>Promise} */ /** @type {()=>Promise} */
const Ping = async () => const Ping = async () =>
{ {
@ -102,77 +154,87 @@ const App = props =>
} }
, []); , []);
// on new list // on new list
useEffect(()=> useEffect(()=>
{ {
let live; let leading;
for(let i=0; i<ListGet.length; i++) for(let i=0; i<ListGet.length; i++)
{
if(ListGet[i].timeframe != "past")
{
leading = ListGet[i];
if( (leading.timeframe == "current" || leading.timeframe == "preroll") && (leading.id != LeadingGet?.id) && (SelectedGet != leading.id)) // if something is selected other than the leading event, alert the user
{
AlertSet(true);
}
if(SelectedGet == null) // if nothing is selected select the leading event
{
SelectedSet(leading.id);
}
LeadingSet(leading);
return;
}
}
if(ListGet.length) // if there are events but theres no leading event, clear leading and select the first event
{ {
if(ListGet[i].timeframe != "past") LeadingSet(null);
if(SelectedGet == null)
{ {
live = ListGet[i]; SelectedSet(ListGet[0].id);
break;
} }
AlertSet(false);
} }
if(LiveGet?.id != live?.id)
{
console.log("new video starting")
}
if(SelectedGet?.id != live?.id)
{
console.log("would you like to switch?");
}
LiveSet(live);
} }
, [ListGet]); , [ListGet]);
// on new event started
useEffect(()=>
{
// alert("New session is starting.")
}
, [LiveGet]);
// on new video selected // on new video selected
useEffect(()=> useEffect(()=>
{ {
Player.current.loadChannel(props.channel, const settings = {
{ selectedBroadcastId: SelectedGet,
selectedBroadcastId: SelectedGet?.id,
showTitle: true, showTitle: true,
showDescription: true, showDescription: true,
showCountdown: true, showCountdown: true,
showRelated: false, showRelated: false,
autoplay: true, autoplay: true,
defaultVideo: "next" defaultVideo: "next"
}); };
Player.current.loadChannel(props.channel, settings);
} }
, [SelectedGet]) , [SelectedGet]);
return html` return html`
<div> <${StyledRoot}>
<div id=${PlayerID}></div> <div id=${PlayerID}></div>
<div>
<button onClick=${()=>ListSet(SortStart(State01))}>testdata-01</button>
<button onClick=${()=>ListSet(SortStart(State02))}>testdata-01</button>
</div>
<div class="Boxcast-Playlist"> <div class="Boxcast-Playlist">
${ ${
ListGet.map( (item, index) => h( ListGet.map( (item, index) =>
BroadcastItem, {
return h(BroadcastItem,
{ {
item: item, item: item,
previous: ListGet[index-1], previous: ListGet[index-1],
priority: item.id == LiveGet?.id, priority: item.id == LeadingGet?.id,
selected: item.id == SelectedGet?.id, selected: item.id == SelectedGet,
select: ()=>SelectedSet(item) select: ()=>SelectedSet(item.id)
} });
)) })
} }
</div> </div>
<${BroadcastAlert}><//> <div class=${`Alert ${ AlertGet ? " Show" : null }`}>
</div> <span class="Close" onClick=${()=>{ AlertSet(false); }}>Dismiss </span>
<h4>A new session is starting:</h4>
<p>${LeadingGet?.name}</p>
<button onClick=${()=>{ SelectedSet(LeadingGet.id); AlertSet(false); }}>Watch Now</button>
</div>
<//>
`; `;
} }
@ -182,17 +244,19 @@ const BroadcastItem = ({item, previous, priority, selected, select}) =>
let pointerText; let pointerText;
if(item.timeframe == "current" || item.timeframe == "preroll") if(item.timeframe == "current" || item.timeframe == "preroll")
{ {
pointerText = `Live:`; pointerText = html`<div class="Badge Live">Live</div>`;
} }
else if (priority) else if (priority)
{ {
pointerText = `Next:`; pointerText = html`<div class="Badge Next">Next</div>`;
} }
let partition; let partition;
if(!previous || (previous.start.Date !== item.start.Date)) 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>` partition = html`<h3 class="Partition" key=${item.id+item.start.Day} >
${item.start.Day}, ${item.start.Month} ${item.start.Date}
</h3>`;
} }
let buttonText; let buttonText;
@ -215,25 +279,16 @@ const BroadcastItem = ({item, previous, priority, selected, select}) =>
return html` return html`
${ partition } ${ partition }
<div key=${item.id} onClick=${select} style=${Styles.Broadcast}> <div class="Broadcast" key=${item.id} onClick=${select}>
<div style=${Styles.Pointer}>${ pointerText }</div> <div class="Pointer">${ pointerText }</div>
<div style=${Styles.Time}>${item.start.Hours}:${item.start.Minutes} ${item.start.M}</div> <div class="Time">${item.start.Hours}:${item.start.Minutes} ${item.start.M}</div>
<strong>${item.name}</strong> <div class="Title">${item.name}</strong>
<button onClick=${select} disabled=${selected}>${buttonText}</button> <div class="Control">
<button onClick=${select} disabled=${selected}>${buttonText}</button>
</div>
</div>`; </div>`;
}; };
const BroadcastAlert = () =>
{
return html`
<div style=${Styles.Alert}>
<span>X</span>
<h4>A new session is starting.</h4>
<button>Watch Now</button>
</div>
`;
}
/** @type {(inDate:string)=>Boxcast.Date} */ /** @type {(inDate:string)=>Boxcast.Date} */
const DateParse = (inDateString) => const DateParse = (inDateString) =>
{ {
@ -258,4 +313,4 @@ const DateParse = (inDateString) =>
}; };
/** @type {(inChannel:string, inSelector:string)=>void} */ /** @type {(inChannel:string, inSelector:string)=>void} */
export default (inChannel, inSelector) => render(h(App, {channel:inChannel, interval:50000}), document.querySelector(inSelector)); export default (inChannel, inSelector) => createRoot(document.querySelector(inSelector)).render(h(App, {channel:inChannel, interval:5000}));

View File

@ -1,6 +1,8 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head></head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
</head>
<body> <body>
<div style="max-width:500px; margin: 0 auto;"> <div style="max-width:500px; margin: 0 auto;">
@ -8,7 +10,7 @@
<script type="module"> <script type="module">
import Init from "./app.js"; import Init from "./app.js";
const Channel = { Basics: "sfz7ja3rlpoous6usu8a", Sunday: "gzahmhugrzogttfdtbjj", Dev: "r3os2zfdnhlquhuypgtp" }; const Channel = { Basics: "sfz7ja3rlpoous6usu8a", Sunday: "gzahmhugrzogttfdtbjj", Dev: "r3os2zfdnhlquhuypgtp" };
Init(Channel.Basics, "#boxcast"); Init(Channel.Dev, "#boxcast");
</script> </script>
</div> </div>

30
testdata-03.json Normal file
View File

@ -0,0 +1,30 @@
[
{
"id": "a3fvb7xs5yrl7xr50lyr",
"name": "Welcome and Main Session 1",
"starts_at": "2022-05-02T18:55:00Z",
"stops_at": "2022-05-02T20:20:00Z",
"timeframe": "past",
"description": "",
"preview": "https://uploads.boxcast.com/ilkxk5hkn51drmocrv0d/2022-03/ahf78osidyvoujyhhq8r/BoxcastImage.jpg",
"poster": "https://uploads.boxcast.com/ilkxk5hkn51drmocrv0d/2022-03/ahf78osidyvoujyhhq8r/BoxcastImage.jpg",
"transcoder_profile": "",
"account_id": "ilkxk5hkn51drmocrv0d",
"channel_id": "welcome-and-main-session-1-sfry0q5zi5fpjtxzsnih",
"tags": []
},
{
"id": "ur7p1uqz6rl3dx7drvgf",
"name": "Breakout Session - Alistair Begg",
"starts_at": "2022-05-02T20:25:00Z",
"stops_at": "2022-05-02T21:45:00Z",
"timeframe": "past",
"description": "",
"preview": "https://uploads.boxcast.com/ilkxk5hkn51drmocrv0d/2022-03/ahf78osidyvoujyhhq8r/BoxcastImage.jpg",
"poster": "https://uploads.boxcast.com/ilkxk5hkn51drmocrv0d/2022-03/ahf78osidyvoujyhhq8r/BoxcastImage.jpg",
"transcoder_profile": "",
"account_id": "ilkxk5hkn51drmocrv0d",
"channel_id": "breakout-session---alistair-begg-gkkr1jga58geasofpnmd",
"tags": []
}
]