mock-data.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. module.exports = [
  2. {
  3. id: 'm_1',
  4. threadID: 't_1',
  5. threadName: 'Jing and Bill',
  6. authorName: 'Bill',
  7. text: 'Hey Jing, want to give a Flux talk at ForwardJS?',
  8. timestamp: Date.now() - 99999
  9. },
  10. {
  11. id: 'm_2',
  12. threadID: 't_1',
  13. threadName: 'Jing and Bill',
  14. authorName: 'Bill',
  15. text: 'Seems like a pretty cool conference.',
  16. timestamp: Date.now() - 89999
  17. },
  18. {
  19. id: 'm_3',
  20. threadID: 't_1',
  21. threadName: 'Jing and Bill',
  22. authorName: 'Jing',
  23. text: 'Sounds good. Will they be serving dessert?',
  24. timestamp: Date.now() - 79999
  25. },
  26. {
  27. id: 'm_4',
  28. threadID: 't_2',
  29. threadName: 'Dave and Bill',
  30. authorName: 'Bill',
  31. text: 'Hey Dave, want to get a beer after the conference?',
  32. timestamp: Date.now() - 69999
  33. },
  34. {
  35. id: 'm_5',
  36. threadID: 't_2',
  37. threadName: 'Dave and Bill',
  38. authorName: 'Dave',
  39. text: 'Totally! Meet you at the hotel bar.',
  40. timestamp: Date.now() - 59999
  41. },
  42. {
  43. id: 'm_6',
  44. threadID: 't_3',
  45. threadName: 'Functional Heads',
  46. authorName: 'Bill',
  47. text: 'Hey Brian, are you going to be talking about functional stuff?',
  48. timestamp: Date.now() - 49999
  49. },
  50. {
  51. id: 'm_7',
  52. threadID: 't_3',
  53. threadName: 'Bill and Brian',
  54. authorName: 'Brian',
  55. text: 'At ForwardJS? Yeah, of course. See you there!',
  56. timestamp: Date.now() - 39999
  57. }
  58. ]