JSFiddle - React, Tailwind, and code Playground

by Nikola Mihin

JavaScript

// SORTING
// opportunity ASC/opportunity DESC--earliest/latest--closest/farthest

// FILTER
// opportunity--neighborhoods--scheduled(next 24 hours, next week, next month)


// LOGIN
{
	"username": "",
	"password": ""
}

// JOBS ACTIVE
// "status": active,taken,done
{
  "jobsactive":[
  {
	  "orderid": 161588,
	  "opportunity": "BJ's Wholesale Club",
	  "description": "Office Display",
	  "scheduled": 1474487486,
	  "phone": "(866) 472-7344",
	  "jobcost": "260",
	  "address": [{
	    "street": "Bowl Overlook. 7036 Mulholand Drive",
	    "postalcode": "19019",
	    "city": "Philadelphia",
	    "neighborhood": "South Philadelphia"
	  }],
	  "status": "active",
	  "location": [{
	    "lat": 37.4224764,
	    "lng": -122.0842499,
	    "markerImage": "images/green.png"
	  }]
  },
  {
	  "orderid": 161588,
	  "opportunity": "BJ's Wholesale Club",
	  "description": "Office Display",
	  "scheduled": 1474487486,
	  "phone": "(866) 472-7344",
	  "jobcost": "260",
	  "address": [{
	    "street": "Bowl Overlook. 7036 Mulholand Drive",
	    "postalcode": "19019",
	    "city": "Philadelphia",
	    "neighborhood": "South Philadelphia"
	  }],
	  "status": "taken",
	  "location": [{
	    "lat": 37.4224764,
	    "lng": -122.0842499,
	    "markerImage": "images/gray.png"
	  }]
  }
  ]
}

// JOBS FINISHED
// "status": active,taken,done
{
  "jobsdone":[
  {
	  "orderid": 161588,
	  "opportunity": "BJ's Wholesale Club",
	  "description": "Office Display",
	  "finished": 1474487486,
	  "address": "Bowl Overlook. 7036 Mulholand Drive",
	  "status": "done"
  },
  {
	  "orderid": 161588,
	  "opportunity": "BJ's Wholesale Club",
	  "description": "Office Display",
	  "finished": 1474487486,
	  "address": "Bowl Overlook. 7036 Mulholand Drive",
	  "status": "done"
  }
  ]
}