Advertisement
Guest User

spacex_history.js

a guest
May 20th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const mockHistory = [
  2.   {
  3.     id: 1,
  4.     title: 'Falcon 1 Makes History',
  5.     event_date_utc: '2008-09-28T23:15:00Z',
  6.     event_date_unix: 1222643700,
  7.     flight_number: 4,
  8.     details:
  9.       'Falcon 1 becomes the first privately developed liquid fuel rocket to reach Earth orbit.',
  10.     links: {
  11.       reddit: null,
  12.       article: 'http://www.spacex.com/news/2013/02/11/flight-4-launch-update-0',
  13.       wikipedia: 'https://en.wikipedia.org/wiki/Falcon_1',
  14.     },
  15.   },
  16.   {
  17.     id: 2,
  18.     title: 'SpaceX Wins $1.6B CRS Contract',
  19.     event_date_utc: '2008-12-23T01:00:00Z',
  20.     event_date_unix: 1229994000,
  21.     flight_number: null,
  22.     details:
  23.       'NASA awards SpaceX $1.6B Commercial Resupply Services (CRS) contract.',
  24.     links: {
  25.       reddit: null,
  26.       article:
  27.         'https://www.nasaspaceflight.com/2008/12/spacex-and-orbital-win-huge-crs-contract-from-nasa/',
  28.       wikipedia: 'https://en.wikipedia.org/wiki/Commercial_Resupply_Services',
  29.     },
  30.   },
  31.   {
  32.     id: 3,
  33.     title: 'Falcon 1 Flight 5 Makes History',
  34.     event_date_utc: '2009-07-13T03:35:00Z',
  35.     event_date_unix: 1247456100,
  36.     flight_number: 5,
  37.     details:
  38.       'Falcon 1 Flight 5 makes history, becoming the first privately developed liquid fuel rocket to deliver a commercial satellite to Earth orbit.',
  39.     links: {
  40.       reddit: null,
  41.       article: 'http://www.spacex.com/news/2013/02/12/falcon-1-flight-5',
  42.       wikipedia: 'https://en.wikipedia.org/wiki/Falcon_1',
  43.     },
  44.   },
  45.   {
  46.     id: 4,
  47.     title: 'Falcon 9 First Flight',
  48.     event_date_utc: '2010-06-04T18:45:00Z',
  49.     event_date_unix: 1275677100,
  50.     flight_number: 6,
  51.     details: 'Met 100% of mission objectives on the first flight!',
  52.     links: {
  53.       reddit: null,
  54.       article: 'http://www.bbc.com/news/10209704',
  55.       wikipedia:
  56.         'https://en.wikipedia.org/wiki/Dragon_Spacecraft_Qualification_Unit',
  57.     },
  58.   },
  59.   {
  60.     id: 5,
  61.     title: 'Dragon Returns From Earth Orbit',
  62.     event_date_utc: '2010-12-08T15:43:00Z',
  63.     event_date_unix: 1291822980,
  64.     flight_number: 7,
  65.     details:
  66.       'On December 8, 2010, Dragon became the first privately developed spacecraft in history to re-enter from low-Earth orbit.',
  67.     links: {
  68.       reddit: null,
  69.       article: 'http://www.cnn.com/2010/US/12/08/space.flight/index.html',
  70.       wikipedia: 'https://en.wikipedia.org/wiki/SpaceX_COTS_Demo_Flight_1',
  71.     },
  72.   },
  73. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement