Guest User

Untitled

a guest
Dec 11th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. state = {
  2. threads:{
  3. '1':{
  4. id: '1',
  5. name: 'code',
  6. isActive: true,
  7. tweets: ['1', '2', '3']
  8. },
  9. '2':{
  10. id: '2',
  11. name: 'sport',
  12. isActive: false,
  13. tweets: ['4', '5', '6']
  14. }
  15. },
  16. tweets: {
  17. byId: {
  18. '1': {
  19. id: '1',
  20. title: '...',
  21. description: '...',
  22. isEditable: false,
  23. authorId: '...',
  24. comments: ['1', '3', '4', '7']
  25. },
  26. '2': {
  27. id: '2',
  28. title: '...',
  29. description: '...',
  30. isEditable: false,
  31. authorId: '...',
  32. comments:['2','6']
  33. },
  34. '3': {
  35. id: '3',
  36. title: '...',
  37. description: '...',
  38. isEditable: false,
  39. authorId: '...',
  40. comments: ['5','8','9','10']
  41. }, ...
  42. },
  43. allIds: ['1', '2', '3', ...]
  44. },
  45. comments: {
  46. byId: {
  47. '1': {
  48. id: '1',
  49. description: '...',
  50. isEditable: false,
  51. authorId: '...',
  52. tweetId:'1',
  53. },
  54. '2': {
  55. id: '2',
  56. description: '...',
  57. isEditable: false,
  58. authorId: '...',
  59. tweetId:'2',
  60. },
  61. '3': {
  62. id: '1',
  63. description: '...',
  64. isEditable: false,
  65. authorId: '...',
  66. tweetId:'1',
  67. }, ...
  68. },
  69. allIds:['1', '2', '3', '4', '5', ...]
  70. }
  71. }
Add Comment
Please, Sign In to add comment