aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/options/UnsubmittedVideoListComponent.tsx
blob: 8bca8cf4ef881a80f64ee872ee35ed53eba1b739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import * as React from "react";

import Config from "../../config";
import UnsubmittedVideoListItem from "./UnsubmittedVideoListItem";

export interface UnsubmittedVideoListProps {

}

export interface UnsubmittedVideoListState {

}

class UnsubmittedVideoListComponent extends React.Component<UnsubmittedVideoListProps, UnsubmittedVideoListState> {

    constructor(props: UnsubmittedVideoListProps) {
        super(props);

        // Setup state
        this.state = {

        };
    }

    render(): React.ReactElement {
        // Render nothing if there are no unsubmitted segments
        if (Object.keys(Config.local.unsubmittedSegments).length == 0)
            return <></>;

        return (
            <table id="unsubmittedVideosList"
                className="categoryChooserTable"
                style={{marginTop: "10px"}} >
                <tbody>
                    {/* Headers */}
                    <tr id="UnsubmittedVideosListHeader"
                            className="categoryTableElement categoryTableHeader">
                        <th id="UnsubmittedVideoID">
                            {chrome.i18n.getMessage("videoID")}
                        </th>

                        <th id="UnsubmittedSegmentCount">
                            {chrome.i18n.getMessage("segmentCount")}
                        </th>

                        <th id="UnsubmittedVideoActions">
                            {chrome.i18n.getMessage("actions")}
                        </th>

                    </tr>

                    {this.getUnsubmittedVideos()}
                </tbody>
            </table>
        );
    }

    getUnsubmittedVideos(): JSX.Element[] {
        const elements: JSX.Element[] = [];

        for (const videoID of Object.keys(Config.local.unsubmittedSegments)) {
            elements.push(
                <UnsubmittedVideoListItem videoID={videoID} key={videoID}>
                </UnsubmittedVideoListItem>
            );
        }

        return elements;
    }
}

export default UnsubmittedVideoListComponent;