Advertisement
Guest User

Untitled

a guest
Sep 11th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. state = {
  2.   isLoading: false,
  3.   loadingPercent: null,
  4.   contextMenu: {
  5.     visible: false,
  6.     position: {
  7.       left: null,
  8.       top: null
  9.     },
  10.   },
  11.   duplicatedJobDetails: [],
  12.   tableProps: {
  13.     jobList: [],
  14.     jobMap: {},
  15.     filteredJobList: [],
  16.     jobSelection: [],
  17.     sortProperty: "timeScheduled",
  18.     sortDirection: "desc",
  19.     tableOffset: 0,
  20.     tableCellDoubleClicked: null, // { rowNumber: Number, columnName: JobPropertyName },
  21.     scrollBarProps: {
  22.       draggingScrollHead: false,
  23.       tableOffsetAtStart: null,
  24.       startPoint: null
  25.     }
  26.   },
  27.   filterBarProps: {
  28.     contentIDListOpen: false,
  29.     contentIDListValue: "",
  30.     filters: {
  31.       jobTypes: {
  32.         "submissions": true,
  33.         "transcodes": true,
  34.         "deliveries": true
  35.       },
  36.       jobStatuses: {
  37.         "cancelled": true,
  38.         "completed": true,
  39.         "failed": true,
  40.         "hold": true,
  41.         "pending": true,
  42.         "running": true
  43.       },
  44.       timeFrom: 0,
  45.       timeTo: 24 * 7
  46.     }
  47.   }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement