Draft Button and Dashboard Columns

pull/97/head
MasterGunner 5 years ago committed by Christopher Usher
parent 632c5fae2f
commit 52e456e0c1

@ -135,6 +135,8 @@
<th>State</th>
<th>Edit</th>
<th>Link</th>
<th>Edit Time</th>
<th>Upload Time</th>
</tr>
</table>
</div>
@ -218,6 +220,9 @@
function populateTable (events) {
events.forEach(event => {
if(!event.description) { //If a row doesn't have a description, it's probably orphaned from the spreadsheet, and does not need to be displayed.
return;
}
let row = document.createElement("TR");
row.innerHTML = `
<td>${event.event_start}</td>
@ -227,6 +232,8 @@
<td>${event.state}</td>
<td><a href="/thrimbletrimmer?id=${event.id}">Edit</a></td>
<td>${event.video_link ? "<a href='"+event.video_link+"'>"+event.video_link+"</a>":""}</td>
<td>${event.edit_time}</td>
<td>${event.upload_time}</td>
`;
document.getElementById('QueueTable').appendChild(row);
});

@ -86,7 +86,8 @@
Description:<br/>
<textarea id="VideoDescription" ></textarea>
</div>
<input type="button" id="SubmitButton" value="Submit" onclick="thrimbletrimmerSubmit()"/>
<input type="button" id="SubmitButton" value="Submit" onclick="thrimbletrimmerSubmit('EDITED')"/>
<input type="button" id="DraftButton" value="Save Draft" onclick="thrimbletrimmerSubmit('UNEDITED')"/>
<input type="button" id="DownloadButton" value="Download" onclick="thrimbletrimmerDownload()"/>
<a href="/thrimbletrimmer/dashboard.html">Go To Dashboard</a> |
<a id="ManualLinkButton" href="JavaScript:toggleHiddenPane('ManualLinkPane');">Manual Link</a> |

@ -70,7 +70,7 @@ loadPlaylist = function(startTrim, endTrim) {
});
};
thrimbletrimmerSubmit = function() {
thrimbletrimmerSubmit = function(state) {
document.getElementById('SubmitButton').disabled = true;
if(player.trimmingControls().options.startTrim >= player.trimmingControls().options.endTrim) {
alert("End Time must be greater than Start Time");
@ -88,7 +88,7 @@ thrimbletrimmerSubmit = function() {
video_channel:document.getElementById("StreamName").value,
video_quality:document.getElementById('qualityLevel').options[document.getElementById('qualityLevel').options.selectedIndex].value,
uploader_whitelist:(document.getElementById('uploaderWhitelist').value ? document.getElementById('uploaderWhitelist').value.split(','):null),
state:"EDITED",
state:state,
token: user.getAuthResponse().id_token
};
// state_columns = ['state', 'uploader', 'error', 'video_link']

Loading…
Cancel
Save