Advertisement
Guest User

Untitled

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