diff --git a/public/cuelist.json b/public/cuelist.json index a086a18..190a89b 100644 --- a/public/cuelist.json +++ b/public/cuelist.json @@ -4,7 +4,7 @@ "id": 1, "name": "Q1", "type": "bg", - "description": "preset bg", + "description": "[外場+電話亭] preset 音樂", "audioCue": "Q0", "clientCue":"Q1", "reset":true @@ -13,14 +13,14 @@ "id": 2, "name": "Q2", "type": "announce", - "description": "announce", + "description": "[外場] announce", "audioCue": "Q1" }, { "id": 3, "name": "Q3", "type": "bg", - "description": "(START) CQ2-CQ4.1", + "description": "[電話亭] 開始流程 CQ2-CQ4.1", "audioCue": "Q3", "clientCue":"Q2", "duration":482, @@ -31,7 +31,7 @@ "id": 4, "name": "Q4", "type": "light", - "description": "(AI) CQ4.11-CQ5.6", + "description": "[電話亭] 記憶裝置啟動 (AI) CQ4.11-CQ5.6", "lightCue":"fade_out_light", "duration":298, "clientCue":"Q4.11", @@ -41,7 +41,7 @@ "id": 5, "name": "Q5", "type": "bg", - "description": "(END)", + "description": "[外場+電話亭] 結尾音樂(END)", "audioCue": "Q4", "status":"end", "lightCue":"fade_in_light", diff --git a/src/App.jsx b/src/App.jsx index fdb1809..e665792 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -220,7 +220,7 @@ function App() { return (
-
+
{currentCue ? `${currentCue.name}` : 'None'}
@@ -228,8 +228,8 @@ function App() {

{timestamp}

- - + + @@ -272,19 +272,19 @@ function App() { }}>stop} {name} - {description} + {description} {EmojiType[type]} {auto ? '⤵️' : ''} {props.duration} - {props.lightCue && `L${props.lightCue}`} - {props.audioCue && `S${props.audioCue}`} - {props.clientCue || ''} + {props.lightCue && `L${props.lightCue}`} + {props.audioCue && `S${props.audioCue}`} + {props.clientCue || ''} ))}
- +
@@ -317,7 +317,7 @@ function App() {
id - {cuelist?.filter(c=>c.clientCue).map((c, index)=>( + {cuelist?.filter(c=>c.clientCue && !c.debug).map((c, index)=>(