Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- state = {
- isLoading: false,
- loadingPercent: null,
- contextMenu: {
- visible: false,
- position: {
- left: null,
- top: null
- },
- },
- duplicatedJobDetails: [],
- tableProps: {
- jobList: [],
- jobMap: {},
- filteredJobList: [],
- jobSelection: [],
- sortProperty: "timeScheduled",
- sortDirection: "desc",
- tableOffset: 0,
- tableCellDoubleClicked: null, // { rowNumber: Number, columnName: JobPropertyName },
- scrollBarProps: {
- draggingScrollHead: false,
- tableOffsetAtStart: null,
- startPoint: null
- }
- },
- filterBarProps: {
- contentIDListOpen: false,
- contentIDListValue: "",
- filters: {
- jobTypes: {
- "submissions": true,
- "transcodes": true,
- "deliveries": true
- },
- jobStatuses: {
- "cancelled": true,
- "completed": true,
- "failed": true,
- "hold": true,
- "pending": true,
- "running": true
- },
- timeFrom: 0,
- timeTo: 24 * 7
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement