@jeraldj/discussions-ui 8.0.3-v16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. package/README.md +24 -0
  2. package/assets/images/Buffer-512.webp +0 -0
  3. package/assets/images/announcement.svg +25 -0
  4. package/assets/images/back-img.png +0 -0
  5. package/assets/images/bookmarks.png +0 -0
  6. package/assets/images/card-icon.png +0 -0
  7. package/assets/images/close.png +0 -0
  8. package/assets/images/delete.svg +13 -0
  9. package/assets/images/down-arrow.png +0 -0
  10. package/assets/images/down-chevron.png +0 -0
  11. package/assets/images/down.svg +12 -0
  12. package/assets/images/edit.svg +11 -0
  13. package/assets/images/empty.svg +37 -0
  14. package/assets/images/eye-icon.png +0 -0
  15. package/assets/images/general discussion.svg +15 -0
  16. package/assets/images/import-export-arrows.png +0 -0
  17. package/assets/images/loader-icon.svg +6 -0
  18. package/assets/images/profits.png +0 -0
  19. package/assets/images/search-icon.png +0 -0
  20. package/assets/images/select-bookmarks.png +0 -0
  21. package/assets/images/select-down-arrow.png +0 -0
  22. package/assets/images/select-profits.png +0 -0
  23. package/assets/images/select-up-arrow.png +0 -0
  24. package/assets/images/up-arrow.png +0 -0
  25. package/assets/images/up-chevron.png +0 -0
  26. package/assets/images/up.svg +12 -0
  27. package/assets/images/views.svg +9 -0
  28. package/assets/images/votes.svg +14 -0
  29. package/assets/styles/global.scss +283 -0
  30. package/esm2022/jeraldj-discussions-ui.mjs +5 -0
  31. package/esm2022/lib/common/constants.json +630 -0
  32. package/esm2022/lib/components/components.module.mjs +105 -0
  33. package/esm2022/lib/components/discuss-all/discuss-all.component.mjs +269 -0
  34. package/esm2022/lib/components/discuss-category/discuss-category.component.mjs +152 -0
  35. package/esm2022/lib/components/discuss-home/discuss-home.component.mjs +142 -0
  36. package/esm2022/lib/components/discuss-start/discuss-start.component.mjs +199 -0
  37. package/esm2022/lib/components/discuss-tags/discuss-tags.component.mjs +93 -0
  38. package/esm2022/lib/components/discussion-details/discussion-details.component.mjs +459 -0
  39. package/esm2022/lib/components/lib-entry/lib-entry.component.mjs +96 -0
  40. package/esm2022/lib/components/my-discussion/my-discussion.component.mjs +234 -0
  41. package/esm2022/lib/components/side-pannel/side-pannel.component.mjs +79 -0
  42. package/esm2022/lib/components/tag-all-discussion/tag-all-discussion.component.mjs +151 -0
  43. package/esm2022/lib/components/trending-tags/trending-tags.component.mjs +62 -0
  44. package/esm2022/lib/config/url.config.mjs +32 -0
  45. package/esm2022/lib/discussion-events.service.mjs +27 -0
  46. package/esm2022/lib/discussion-routing/discussion-routing.module.mjs +80 -0
  47. package/esm2022/lib/discussion-ui.module.mjs +41 -0
  48. package/esm2022/lib/elements/app-loader/app-loader.component.mjs +36 -0
  49. package/esm2022/lib/elements/avatar-photo/avatar-photo.component.mjs +81 -0
  50. package/esm2022/lib/elements/category-card/category-card.component.mjs +17 -0
  51. package/esm2022/lib/elements/discuss-card/discuss-card.component.mjs +45 -0
  52. package/esm2022/lib/elements/elements.module.mjs +69 -0
  53. package/esm2022/lib/elements/load-alert/load-alert.component.mjs +34 -0
  54. package/esm2022/lib/elements/post-reply/post-reply.component.mjs +69 -0
  55. package/esm2022/lib/elements/related-discussion/related-discussion.component.mjs +61 -0
  56. package/esm2022/lib/elements/sliders/sliders.component.mjs +76 -0
  57. package/esm2022/lib/events.service.mjs +31 -0
  58. package/esm2022/lib/models/discuss.model.mjs +16 -0
  59. package/esm2022/lib/models/discussion-config.model.mjs +2 -0
  60. package/esm2022/lib/navigation-service.service.mjs +39 -0
  61. package/esm2022/lib/pipes/pipe-filter/pipe-filter.pipe.mjs +20 -0
  62. package/esm2022/lib/pipes/pipe-list-filter/pipe-list-filter.pipe.mjs +22 -0
  63. package/esm2022/lib/pipes/pipe-relative-time/pipe-relative-time.pipe.mjs +41 -0
  64. package/esm2022/lib/pipes/pipes.module.mjs +24 -0
  65. package/esm2022/lib/pipes/sort-by/sort-by.pipe.mjs +34 -0
  66. package/esm2022/lib/pipes/split-initials/split-initials.pipe.mjs +23 -0
  67. package/esm2022/lib/router-service.service.mjs +21 -0
  68. package/esm2022/lib/services/abstract-config.service.mjs +3 -0
  69. package/esm2022/lib/services/config.service.mjs +76 -0
  70. package/esm2022/lib/services/discuss-utils.service.mjs +36 -0
  71. package/esm2022/lib/services/discussion.service.mjs +254 -0
  72. package/esm2022/lib/telemetry-utils.service.mjs +103 -0
  73. package/esm2022/lib/wrapper/base-wrapper/base-wrapper.component.mjs +41 -0
  74. package/esm2022/lib/wrapper/category-widget/category-widget.component.mjs +37 -0
  75. package/esm2022/lib/wrapper/tags-widget/tags-widget.component.mjs +33 -0
  76. package/esm2022/lib/wrapper-navigate.service.mjs +23 -0
  77. package/esm2022/public-api.mjs +29 -0
  78. package/fesm2022/jeraldj-discussions-ui.mjs +3929 -0
  79. package/fesm2022/jeraldj-discussions-ui.mjs.map +1 -0
  80. package/index.d.ts +6 -0
  81. package/jeraldj-discussions-ui.d.ts.map +1 -0
  82. package/lib/components/components.module.d.ts +24 -0
  83. package/lib/components/components.module.d.ts.map +1 -0
  84. package/lib/components/discuss-all/discuss-all.component.d.ts +61 -0
  85. package/lib/components/discuss-all/discuss-all.component.d.ts.map +1 -0
  86. package/lib/components/discuss-category/discuss-category.component.d.ts +45 -0
  87. package/lib/components/discuss-category/discuss-category.component.d.ts.map +1 -0
  88. package/lib/components/discuss-home/discuss-home.component.d.ts +59 -0
  89. package/lib/components/discuss-home/discuss-home.component.d.ts.map +1 -0
  90. package/lib/components/discuss-start/discuss-start.component.d.ts +50 -0
  91. package/lib/components/discuss-start/discuss-start.component.d.ts.map +1 -0
  92. package/lib/components/discuss-tags/discuss-tags.component.d.ts +41 -0
  93. package/lib/components/discuss-tags/discuss-tags.component.d.ts.map +1 -0
  94. package/lib/components/discussion-details/discussion-details.component.d.ts +112 -0
  95. package/lib/components/discussion-details/discussion-details.component.d.ts.map +1 -0
  96. package/lib/components/lib-entry/lib-entry.component.d.ts +42 -0
  97. package/lib/components/lib-entry/lib-entry.component.d.ts.map +1 -0
  98. package/lib/components/my-discussion/my-discussion.component.d.ts +54 -0
  99. package/lib/components/my-discussion/my-discussion.component.d.ts.map +1 -0
  100. package/lib/components/side-pannel/side-pannel.component.d.ts +34 -0
  101. package/lib/components/side-pannel/side-pannel.component.d.ts.map +1 -0
  102. package/lib/components/tag-all-discussion/tag-all-discussion.component.d.ts +53 -0
  103. package/lib/components/tag-all-discussion/tag-all-discussion.component.d.ts.map +1 -0
  104. package/lib/components/trending-tags/trending-tags.component.d.ts +26 -0
  105. package/lib/components/trending-tags/trending-tags.component.d.ts.map +1 -0
  106. package/lib/config/url.config.d.ts +29 -0
  107. package/lib/config/url.config.d.ts.map +1 -0
  108. package/lib/discussion-events.service.d.ts +12 -0
  109. package/lib/discussion-events.service.d.ts.map +1 -0
  110. package/lib/discussion-routing/discussion-routing.module.d.ts +9 -0
  111. package/lib/discussion-routing/discussion-routing.module.d.ts.map +1 -0
  112. package/lib/discussion-ui.module.d.ts +16 -0
  113. package/lib/discussion-ui.module.d.ts.map +1 -0
  114. package/lib/elements/app-loader/app-loader.component.d.ts +17 -0
  115. package/lib/elements/app-loader/app-loader.component.d.ts.map +1 -0
  116. package/lib/elements/avatar-photo/avatar-photo.component.d.ts +19 -0
  117. package/lib/elements/avatar-photo/avatar-photo.component.d.ts.map +1 -0
  118. package/lib/elements/category-card/category-card.component.d.ts +10 -0
  119. package/lib/elements/category-card/category-card.component.d.ts.map +1 -0
  120. package/lib/elements/discuss-card/discuss-card.component.d.ts +17 -0
  121. package/lib/elements/discuss-card/discuss-card.component.d.ts.map +1 -0
  122. package/lib/elements/elements.module.d.ts +18 -0
  123. package/lib/elements/elements.module.d.ts.map +1 -0
  124. package/lib/elements/load-alert/load-alert.component.d.ts +15 -0
  125. package/lib/elements/load-alert/load-alert.component.d.ts.map +1 -0
  126. package/lib/elements/post-reply/post-reply.component.d.ts +22 -0
  127. package/lib/elements/post-reply/post-reply.component.d.ts.map +1 -0
  128. package/lib/elements/related-discussion/related-discussion.component.d.ts +26 -0
  129. package/lib/elements/related-discussion/related-discussion.component.d.ts.map +1 -0
  130. package/lib/elements/sliders/sliders.component.d.ts +18 -0
  131. package/lib/elements/sliders/sliders.component.d.ts.map +1 -0
  132. package/lib/events.service.d.ts +18 -0
  133. package/lib/events.service.d.ts.map +1 -0
  134. package/lib/models/discuss.model.d.ts +298 -0
  135. package/lib/models/discuss.model.d.ts.map +1 -0
  136. package/lib/models/discussion-config.model.d.ts +42 -0
  137. package/lib/models/discussion-config.model.d.ts.map +1 -0
  138. package/lib/navigation-service.service.d.ts +22 -0
  139. package/lib/navigation-service.service.d.ts.map +1 -0
  140. package/lib/pipes/pipe-filter/pipe-filter.pipe.d.ts +8 -0
  141. package/lib/pipes/pipe-filter/pipe-filter.pipe.d.ts.map +1 -0
  142. package/lib/pipes/pipe-list-filter/pipe-list-filter.pipe.d.ts +8 -0
  143. package/lib/pipes/pipe-list-filter/pipe-list-filter.pipe.d.ts.map +1 -0
  144. package/lib/pipes/pipe-relative-time/pipe-relative-time.pipe.d.ts +8 -0
  145. package/lib/pipes/pipe-relative-time/pipe-relative-time.pipe.d.ts.map +1 -0
  146. package/lib/pipes/pipes.module.d.ts +13 -0
  147. package/lib/pipes/pipes.module.d.ts.map +1 -0
  148. package/lib/pipes/sort-by/sort-by.pipe.d.ts +8 -0
  149. package/lib/pipes/sort-by/sort-by.pipe.d.ts.map +1 -0
  150. package/lib/pipes/split-initials/split-initials.pipe.d.ts +8 -0
  151. package/lib/pipes/split-initials/split-initials.pipe.d.ts.map +1 -0
  152. package/lib/router-service.service.d.ts +10 -0
  153. package/lib/router-service.service.d.ts.map +1 -0
  154. package/lib/services/abstract-config.service.d.ts +4 -0
  155. package/lib/services/abstract-config.service.d.ts.map +1 -0
  156. package/lib/services/config.service.d.ts +36 -0
  157. package/lib/services/config.service.d.ts.map +1 -0
  158. package/lib/services/discuss-utils.service.d.ts +14 -0
  159. package/lib/services/discuss-utils.service.d.ts.map +1 -0
  160. package/lib/services/discussion.service.d.ts +76 -0
  161. package/lib/services/discussion.service.d.ts.map +1 -0
  162. package/lib/telemetry-utils.service.d.ts +20 -0
  163. package/lib/telemetry-utils.service.d.ts.map +1 -0
  164. package/lib/wrapper/base-wrapper/base-wrapper.component.d.ts +22 -0
  165. package/lib/wrapper/base-wrapper/base-wrapper.component.d.ts.map +1 -0
  166. package/lib/wrapper/category-widget/category-widget.component.d.ts +23 -0
  167. package/lib/wrapper/category-widget/category-widget.component.d.ts.map +1 -0
  168. package/lib/wrapper/tags-widget/tags-widget.component.d.ts +17 -0
  169. package/lib/wrapper/tags-widget/tags-widget.component.d.ts.map +1 -0
  170. package/lib/wrapper-navigate.service.d.ts +11 -0
  171. package/lib/wrapper-navigate.service.d.ts.map +1 -0
  172. package/package.json +44 -0
  173. package/public-api.d.ts +26 -0
  174. package/public-api.d.ts.map +1 -0
@@ -0,0 +1,630 @@
1
+ {
2
+ "categories": [
3
+ {
4
+ "cid": 1,
5
+ "name": "Announcements",
6
+ "description": "Check here for announcements about NodeBB",
7
+ "icon": "fa-bullhorn",
8
+ "slug": "1/announcements",
9
+ "topic_count": 73,
10
+ "disabled": 0,
11
+ "order": 1,
12
+ "bgColor": "#e57373",
13
+ "link": "",
14
+ "class": "col-lg-4 col-md-6 col-xs-12",
15
+ "numRecentReplies": 1,
16
+ "color": "#ffffff",
17
+ "post_count": 884,
18
+ "parentCid": 0,
19
+ "descriptionParsed": "<p>Check here for announcements about NodeBB</p>\n",
20
+ "minTags": 0,
21
+ "maxTags": 5,
22
+ "isSection": 0,
23
+ "totalPostCount": 854,
24
+ "totalTopicCount": 73,
25
+ "tagWhitelist": [],
26
+ "unread-class": "unread",
27
+ "children": [],
28
+ "posts": [
29
+ {
30
+ "pid": 79553,
31
+ "timestamp": 1597704130970,
32
+ "content": "<p dir=\"auto\">A bug in our validation logic made it possible to change the password of any user on a running NodeBB forum by sending a specially crafted <a href=\"http://socket.io\" rel=\"nofollow\">socket.io</a> call to the server.</p>\n<p dir=\"auto\">We have resolved this in the latest version of NodeBB, and the fix has already been rolled out as a patch on all of our hosted customers.</p>\n<p dir=\"auto\">For more information on the vulnerability as well as instructions on how to resolve this issue, please have a look here: <a href=\"https://github.com/NodeBB/NodeBB/security/advisories/GHSA-hr66-c8pg-5mg7\" rel=\"nofollow\">https://github.com/NodeBB/NodeBB/security/advisories/GHSA-hr66-c8pg-5mg7</a></p>\n<p dir=\"auto\"><strong>Click <a href=\"https://blog.nodebb.org/nodebb-1-14-3/\" rel=\"nofollow\">here</a> to see the full blog post</strong></p>\n",
33
+ "timestampISO": "2020-08-17T22:42:10.970Z",
34
+ "user": {
35
+ "uid": 3,
36
+ "username": "psychobunny",
37
+ "userslug": "psychobunny",
38
+ "picture": "https://i.imgur.com/ltvPqkU.gif",
39
+ "displayname": "psychobunny",
40
+ "icon:text": "P",
41
+ "icon:bgColor": "#f44336"
42
+ },
43
+ "index": 1,
44
+ "cid": 1,
45
+ "parentCid": 0,
46
+ "topic": {
47
+ "slug": "14967/nodebb-v1-14-3-a-critical-security-update",
48
+ "title": "NodeBB v1.14.3: A Critical Security Update"
49
+ }
50
+ }
51
+ ],
52
+ "teaser": {
53
+ "url": "/post/79553",
54
+ "timestampISO": "2020-08-17T22:42:10.970Z",
55
+ "pid": 79553,
56
+ "topic": {
57
+ "slug": "14967/nodebb-v1-14-3-a-critical-security-update",
58
+ "title": "NodeBB v1.14.3: A Critical Security Update"
59
+ }
60
+ }
61
+ },
62
+ {
63
+ "cid": 2,
64
+ "name": "General Discussion",
65
+ "description": "A place to talk about whatever you want",
66
+ "icon": "fa-comment",
67
+ "slug": "2/general-discussion",
68
+ "topic_count": 3188,
69
+ "order": 2,
70
+ "bgColor": "#ba68c8",
71
+ "link": "",
72
+ "class": "col-lg-4 col-md-6 col-xs-12",
73
+ "numRecentReplies": 1,
74
+ "color": "#ffffff",
75
+ "post_count": 20024,
76
+ "descriptionParsed": "<p dir=\"auto\">A place to talk about whatever you want</p>\n",
77
+ "minTags": 0,
78
+ "maxTags": 5,
79
+ "parentCid": 0,
80
+ "disabled": 0,
81
+ "isSection": 0,
82
+ "totalPostCount": 20024,
83
+ "totalTopicCount": 3188,
84
+ "tagWhitelist": [],
85
+ "unread-class": "",
86
+ "children": [],
87
+ "posts": [
88
+ {
89
+ "pid": 80371,
90
+ "timestamp": 1605714102926,
91
+ "content": "<p dir=\"auto\"><a class=\"plugin-mentions-user plugin-mentions-a\" href=\"https://community.nodebb.org/uid/16106\">@gotwf</a> pardon the late response, I've adopted your suggestion, thanks! </p>\n<p dir=\"auto\"><a class=\"plugin-mentions-user plugin-mentions-a\" href=\"https://community.nodebb.org/uid/2\">@julian</a> good to know! And apparently my spammers were all \"human-powered\"; ever since I made the changes suggested by <a class=\"plugin-mentions-user plugin-mentions-a\" href=\"https://community.nodebb.org/uid/1\">@baris</a> the blacklist hits and spam accounts have dropped to zero!</p>\n<p dir=\"auto\">Hopefully it stays that way so I can focus on content </p>\n<p dir=\"auto\">Cheers</p>\n",
92
+ "timestampISO": "2020-11-18T15:41:42.926Z",
93
+ "user": {
94
+ "uid": 19985,
95
+ "username": "Nefarius",
96
+ "userslug": "nefarius",
97
+ "picture": "https://i.imgur.com/v798aRw.png",
98
+ "displayname": "Nefarius",
99
+ "icon:text": "N",
100
+ "icon:bgColor": "#673ab7"
101
+ },
102
+ "index": 6,
103
+ "cid": 2,
104
+ "parentCid": 0,
105
+ "topic": {
106
+ "slug": "15119/spam-registration-amount-and-handling-is-unbearable",
107
+ "title": "Spam registration amount and handling is unbearable"
108
+ }
109
+ }
110
+ ],
111
+ "teaser": {
112
+ "url": "/post/80371",
113
+ "timestampISO": "2020-11-18T15:41:42.926Z",
114
+ "pid": 80371,
115
+ "topic": {
116
+ "slug": "15119/spam-registration-amount-and-handling-is-unbearable",
117
+ "title": "Spam registration amount and handling is unbearable"
118
+ }
119
+ }
120
+ },
121
+ {
122
+ "link": "",
123
+ "class": "col-lg-4 col-md-6 col-xs-12",
124
+ "icon": "fa-github",
125
+ "description": "Stay tuned here to hear more about new releases and features of NodeBB!",
126
+ "order": 3,
127
+ "topic_count": 1158,
128
+ "name": "NodeBB Development",
129
+ "cid": 3,
130
+ "post_count": 6760,
131
+ "numRecentReplies": 1,
132
+ "bgColor": "#4fc3f7",
133
+ "slug": "3/nodebb-development",
134
+ "color": "#ffffff",
135
+ "disabled": 0,
136
+ "descriptionParsed": "<p>Stay tuned here to hear more about new releases and features of NodeBB!</p>\n",
137
+ "isSection": 0,
138
+ "minTags": 0,
139
+ "maxTags": 5,
140
+ "parentCid": 0,
141
+ "totalPostCount": 17980,
142
+ "totalTopicCount": 2992,
143
+ "tagWhitelist": [],
144
+ "unread-class": "unread",
145
+ "children": [
146
+ {
147
+ "cid": 5,
148
+ "name": "Feature Requests",
149
+ "description": "You have a cool idea about NodeBB? Post it here.",
150
+ "icon": "fa-lightbulb-o",
151
+ "slug": "5/feature-requests",
152
+ "topic_count": 692,
153
+ "order": 1,
154
+ "bgColor": "#ffb74d",
155
+ "link": "",
156
+ "class": "col-lg-4 col-md-6 col-xs-12",
157
+ "numRecentReplies": 1,
158
+ "color": "#ffffff",
159
+ "post_count": 4176,
160
+ "parentCid": 3,
161
+ "disabled": 0,
162
+ "minTags": 0,
163
+ "maxTags": 5,
164
+ "isSection": 0,
165
+ "totalPostCount": 4176,
166
+ "totalTopicCount": 692,
167
+ "descriptionParsed": "You have a cool idea about NodeBB? Post it here.",
168
+ "tagWhitelist": [],
169
+ "unread-class": "unread",
170
+ "children": [],
171
+ "parent": {
172
+ "link": "",
173
+ "class": "col-lg-4 col-md-6 col-xs-12",
174
+ "icon": "fa-github",
175
+ "description": "Stay tuned here to hear more about new releases and features of NodeBB!",
176
+ "order": 3,
177
+ "topic_count": 1158,
178
+ "name": "NodeBB Development",
179
+ "cid": 3,
180
+ "post_count": 6760,
181
+ "numRecentReplies": 1,
182
+ "bgColor": "#4fc3f7",
183
+ "slug": "3/nodebb-development",
184
+ "color": "#ffffff",
185
+ "disabled": 0,
186
+ "descriptionParsed": "<p>Stay tuned here to hear more about new releases and features of NodeBB!</p>\n",
187
+ "isSection": 0,
188
+ "minTags": 0,
189
+ "maxTags": 5,
190
+ "parentCid": 0,
191
+ "totalPostCount": 6760,
192
+ "totalTopicCount": 1158,
193
+ "tagWhitelist": [],
194
+ "unread-class": "unread"
195
+ },
196
+ "posts": [
197
+ {
198
+ "pid": 80380,
199
+ "timestamp": 1605820679025,
200
+ "content": "<p dir=\"auto\"><a class=\"plugin-mentions-user plugin-mentions-a\" href=\"https://community.nodebb.org/uid/2\">@julian</a> if this makes sense to you, do you think this can be a part of \"canned responses\" plugin?</p>\n",
201
+ "timestampISO": "2020-11-19T21:17:59.025Z",
202
+ "user": {
203
+ "uid": 16848,
204
+ "username": "crazycells",
205
+ "userslug": "crazycells",
206
+ "picture": "https://i.imgur.com/fnkHctr.png",
207
+ "displayname": "crazycells",
208
+ "icon:text": "C",
209
+ "icon:bgColor": "#009688"
210
+ },
211
+ "index": 2,
212
+ "cid": 5,
213
+ "parentCid": 3,
214
+ "topic": {
215
+ "slug": "15137/canned-explanations-reasons-for-user-ban",
216
+ "title": "canned explanations(reasons) for user ban"
217
+ }
218
+ }
219
+ ]
220
+ }
221
+ ]
222
+ }
223
+ ],
224
+ "topics": [
225
+ {
226
+ "cid": 13,
227
+ "lastposttime": 1606632795076,
228
+ "mainPid": 17647,
229
+ "postcount": 1,
230
+ "slug": "8917/hello-this-is-my-new-post",
231
+ "tid": 8917,
232
+ "timestamp": 1606632795069,
233
+ "title": "Hello this is my new post",
234
+ "uid": 104,
235
+ "viewcount": 1,
236
+ "deleted": 0,
237
+ "locked": 0,
238
+ "pinned": 0,
239
+ "upvotes": 0,
240
+ "downvotes": 0,
241
+ "deleterUid": 0,
242
+ "titleRaw": "Hello this is my new post",
243
+ "timestampISO": "2020-11-29T06:53:15.069Z",
244
+ "lastposttimeISO": "2020-11-29T06:53:15.076Z",
245
+ "votes": 0,
246
+ "teaserPid": null,
247
+ "category": {
248
+ "cid": 13,
249
+ "name": "Administration",
250
+ "slug": "13/administration",
251
+ "icon": "fa-comments",
252
+ "backgroundImage": null,
253
+ "imageClass": "cover",
254
+ "bgColor": "#DC9656",
255
+ "color": "#fff",
256
+ "disabled": 0
257
+ },
258
+ "user": {
259
+ "uid": 104,
260
+ "username": "5cad153a-29f0-4cc6-8344-ad5fc06ffb1d",
261
+ "fullname": "arunkumar pilli",
262
+ "userslug": "5cad153a-29f0-4cc6-8344-ad5fc06ffb1d",
263
+ "reputation": 0,
264
+ "postcount": 1,
265
+ "picture": null,
266
+ "signature": null,
267
+ "banned": 0,
268
+ "status": "online",
269
+ "icon:text": "5",
270
+ "icon:bgColor": "#1b5e20",
271
+ "banned_until_readable": "Not Banned"
272
+ },
273
+ "teaser": {
274
+ "pid": 17647,
275
+ "uid": 104,
276
+ "timestamp": 1606632795076,
277
+ "tid": 8917,
278
+ "content": "adding new post in igot discussions\n",
279
+ "timestampISO": "2020-11-29T06:53:15.076Z",
280
+ "user": {
281
+ "uid": 104,
282
+ "username": "5cad153a-29f0-4cc6-8344-ad5fc06ffb1d",
283
+ "userslug": "5cad153a-29f0-4cc6-8344-ad5fc06ffb1d",
284
+ "picture": null,
285
+ "icon:text": "5",
286
+ "icon:bgColor": "#1b5e20"
287
+ },
288
+ "index": 1
289
+ },
290
+ "tags": [],
291
+ "isOwner": false,
292
+ "ignored": false,
293
+ "unread": true,
294
+ "bookmark": 3,
295
+ "unreplied": false,
296
+ "icons": [],
297
+ "index": 0
298
+ },
299
+ {
300
+ "cid": 9,
301
+ "lastposttime": 1606297869195,
302
+ "mainPid": 17635,
303
+ "postcount": 5,
304
+ "slug": "8912/why-is-bangalore-s-infrastructure-bad",
305
+ "tid": 8912,
306
+ "timestamp": 1606134890874,
307
+ "title": "Why is Bangalore&#x27;s infrastructure bad?",
308
+ "uid": 113,
309
+ "viewcount": 36,
310
+ "downvotes": 0,
311
+ "upvotes": 2,
312
+ "teaserPid": 17646,
313
+ "deleted": 0,
314
+ "locked": 0,
315
+ "pinned": 0,
316
+ "deleterUid": 0,
317
+ "titleRaw": "Why is Bangalore's infrastructure bad?",
318
+ "timestampISO": "2020-11-23T12:34:50.874Z",
319
+ "lastposttimeISO": "2020-11-25T09:51:09.195Z",
320
+ "votes": 2,
321
+ "category": {
322
+ "cid": 9,
323
+ "name": "Infrastructure",
324
+ "slug": "9/infrastructure",
325
+ "icon": "fa-comments",
326
+ "backgroundImage": null,
327
+ "imageClass": "cover",
328
+ "bgColor": "#86C1B9",
329
+ "color": "#333",
330
+ "disabled": 0
331
+ },
332
+ "user": {
333
+ "uid": 113,
334
+ "username": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
335
+ "fullname": "Manimegalai Mohan",
336
+ "userslug": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
337
+ "reputation": 3,
338
+ "postcount": 16,
339
+ "picture": null,
340
+ "signature": null,
341
+ "banned": 0,
342
+ "status": "offline",
343
+ "icon:text": "1",
344
+ "icon:bgColor": "#3f51b5",
345
+ "banned_until_readable": "Not Banned"
346
+ },
347
+ "teaser": {
348
+ "pid": 17635,
349
+ "uid": 113,
350
+ "timestamp": 1606134890882,
351
+ "tid": 8912,
352
+ "content": "Why is Bangalore's infrastructure bad?\n",
353
+ "timestampISO": "2020-11-23T12:34:50.882Z",
354
+ "user": {
355
+ "uid": 113,
356
+ "username": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
357
+ "userslug": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
358
+ "picture": null,
359
+ "icon:text": "1",
360
+ "icon:bgColor": "#3f51b5"
361
+ },
362
+ "index": 1
363
+ },
364
+ "tags": [],
365
+ "isOwner": false,
366
+ "ignored": false,
367
+ "unread": true,
368
+ "bookmark": 7,
369
+ "unreplied": false,
370
+ "icons": [],
371
+ "index": 1
372
+ },
373
+ {
374
+ "cid": 13,
375
+ "lastposttime": 1606201083049,
376
+ "mainPid": 17645,
377
+ "postcount": 1,
378
+ "slug": "8916/origin-of-solar-system",
379
+ "tid": 8916,
380
+ "timestamp": 1606201083043,
381
+ "title": "Origin of Solar system",
382
+ "uid": 113,
383
+ "viewcount": 10,
384
+ "deleted": 0,
385
+ "locked": 0,
386
+ "pinned": 0,
387
+ "upvotes": 0,
388
+ "downvotes": 0,
389
+ "deleterUid": 0,
390
+ "titleRaw": "Origin of Solar system",
391
+ "timestampISO": "2020-11-24T06:58:03.043Z",
392
+ "lastposttimeISO": "2020-11-24T06:58:03.049Z",
393
+ "votes": 0,
394
+ "teaserPid": null,
395
+ "category": {
396
+ "cid": 13,
397
+ "name": "Administration",
398
+ "slug": "13/administration",
399
+ "icon": "fa-comments",
400
+ "backgroundImage": null,
401
+ "imageClass": "cover",
402
+ "bgColor": "#DC9656",
403
+ "color": "#fff",
404
+ "disabled": 0
405
+ },
406
+ "user": {
407
+ "uid": 113,
408
+ "username": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
409
+ "fullname": "Manimegalai Mohan",
410
+ "userslug": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
411
+ "reputation": 3,
412
+ "postcount": 16,
413
+ "picture": null,
414
+ "signature": null,
415
+ "banned": 0,
416
+ "status": "offline",
417
+ "icon:text": "1",
418
+ "icon:bgColor": "#3f51b5",
419
+ "banned_until_readable": "Not Banned"
420
+ },
421
+ "teaser": {
422
+ "pid": 17645,
423
+ "uid": 113,
424
+ "timestamp": 1606201083049,
425
+ "tid": 8916,
426
+ "content": "Solar system\n",
427
+ "timestampISO": "2020-11-24T06:58:03.049Z",
428
+ "user": {
429
+ "uid": 113,
430
+ "username": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
431
+ "userslug": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
432
+ "picture": null,
433
+ "icon:text": "1",
434
+ "icon:bgColor": "#3f51b5"
435
+ },
436
+ "index": 1
437
+ },
438
+ "tags": [],
439
+ "isOwner": false,
440
+ "ignored": false,
441
+ "unread": true,
442
+ "bookmark": 3,
443
+ "unreplied": false,
444
+ "icons": [],
445
+ "index": 2
446
+ },
447
+ {
448
+ "cid": 11,
449
+ "lastposttime": 1606198830431,
450
+ "mainPid": 17644,
451
+ "postcount": 1,
452
+ "slug": "8915/who-opened-up-the-indian-economy",
453
+ "tid": 8915,
454
+ "timestamp": 1606198830424,
455
+ "title": "Who opened up the indian economy?",
456
+ "uid": 113,
457
+ "viewcount": 5,
458
+ "deleted": 0,
459
+ "locked": 0,
460
+ "pinned": 0,
461
+ "upvotes": 0,
462
+ "downvotes": 0,
463
+ "deleterUid": 0,
464
+ "titleRaw": "Who opened up the indian economy?",
465
+ "timestampISO": "2020-11-24T06:20:30.424Z",
466
+ "lastposttimeISO": "2020-11-24T06:20:30.431Z",
467
+ "votes": 0,
468
+ "teaserPid": null,
469
+ "category": {
470
+ "cid": 11,
471
+ "name": "Economy",
472
+ "slug": "11/economy",
473
+ "icon": "fa-comments",
474
+ "backgroundImage": null,
475
+ "imageClass": "cover",
476
+ "bgColor": "#F7CA88",
477
+ "color": "#333",
478
+ "disabled": 0
479
+ },
480
+ "user": {
481
+ "uid": 113,
482
+ "username": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
483
+ "fullname": "Manimegalai Mohan",
484
+ "userslug": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
485
+ "reputation": 3,
486
+ "postcount": 16,
487
+ "picture": null,
488
+ "signature": null,
489
+ "banned": 0,
490
+ "status": "offline",
491
+ "icon:text": "1",
492
+ "icon:bgColor": "#3f51b5",
493
+ "banned_until_readable": "Not Banned"
494
+ },
495
+ "teaser": {
496
+ "pid": 17644,
497
+ "uid": 113,
498
+ "timestamp": 1606198830431,
499
+ "tid": 8915,
500
+ "content": "Who opened up the indian economy?\n",
501
+ "timestampISO": "2020-11-24T06:20:30.431Z",
502
+ "user": {
503
+ "uid": 113,
504
+ "username": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
505
+ "userslug": "1c2d792e-392b-4d98-b18e-af5ea69340b2",
506
+ "picture": null,
507
+ "icon:text": "1",
508
+ "icon:bgColor": "#3f51b5"
509
+ },
510
+ "index": 1
511
+ },
512
+ "tags": [],
513
+ "isOwner": false,
514
+ "ignored": false,
515
+ "unread": true,
516
+ "bookmark": 3,
517
+ "unreplied": false,
518
+ "icons": [],
519
+ "index": 3
520
+ },
521
+ {
522
+ "cid": 11,
523
+ "lastposttime": 1606135442960,
524
+ "mainPid": 17637,
525
+ "postcount": 4,
526
+ "slug": "8914/how-covid-will-impact-indian-economy",
527
+ "tid": 8914,
528
+ "timestamp": 1606135371841,
529
+ "title": "How covid will impact indian economy ?",
530
+ "uid": 5,
531
+ "viewcount": 10,
532
+ "teaserPid": 17640,
533
+ "deleted": 0,
534
+ "locked": 0,
535
+ "pinned": 0,
536
+ "upvotes": 0,
537
+ "downvotes": 0,
538
+ "deleterUid": 0,
539
+ "titleRaw": "How covid will impact indian economy ?",
540
+ "timestampISO": "2020-11-23T12:42:51.841Z",
541
+ "lastposttimeISO": "2020-11-23T12:44:02.960Z",
542
+ "votes": 0,
543
+ "category": {
544
+ "cid": 11,
545
+ "name": "Economy",
546
+ "slug": "11/economy",
547
+ "icon": "fa-comments",
548
+ "backgroundImage": null,
549
+ "imageClass": "cover",
550
+ "bgColor": "#F7CA88",
551
+ "color": "#333",
552
+ "disabled": 0
553
+ },
554
+ "user": {
555
+ "uid": 5,
556
+ "username": "9cdd9f76-2584-4ae5-940d-3f51dce020dc",
557
+ "fullname": "Christopher F'des",
558
+ "userslug": "9cdd9f76-2584-4ae5-940d-3f51dce020dc",
559
+ "reputation": 8,
560
+ "postcount": 13,
561
+ "picture": null,
562
+ "signature": null,
563
+ "banned": 0,
564
+ "status": "offline",
565
+ "icon:text": "9",
566
+ "icon:bgColor": "#ff5722",
567
+ "banned_until_readable": "Not Banned"
568
+ },
569
+ "teaser": {
570
+ "pid": 17637,
571
+ "uid": 5,
572
+ "timestamp": 1606135371849,
573
+ "tid": 8914,
574
+ "content": "How covid will impact indian economy ?\n",
575
+ "timestampISO": "2020-11-23T12:42:51.849Z",
576
+ "user": {
577
+ "uid": 5,
578
+ "username": "9cdd9f76-2584-4ae5-940d-3f51dce020dc",
579
+ "userslug": "9cdd9f76-2584-4ae5-940d-3f51dce020dc",
580
+ "picture": null,
581
+ "icon:text": "9",
582
+ "icon:bgColor": "#ff5722"
583
+ },
584
+ "index": 1
585
+ },
586
+ "tags": [],
587
+ "isOwner": false,
588
+ "ignored": false,
589
+ "unread": true,
590
+ "bookmark": 6,
591
+ "unreplied": false,
592
+ "icons": [],
593
+ "index": 4
594
+ }
595
+ ],
596
+ "ROUTES": {
597
+ "TOPIC": "/discussion-forum/topic/",
598
+ "DISCUSSION": "/discussion-forum/",
599
+ "CATEGORY": "/discussion-forum/category/",
600
+ "TAG": "/discussion-forum/tags/"
601
+ },
602
+ "MENUOPTIONS": [
603
+ {
604
+ "route": "all-discussions",
605
+ "label": "All discussions",
606
+ "enable": false
607
+ },
608
+ {
609
+ "route": "categories",
610
+ "label": "Categories",
611
+ "enable": true
612
+ },
613
+ {
614
+ "route": "tags",
615
+ "label": "Tags",
616
+ "enable": true
617
+ },
618
+ {
619
+ "route": "my-discussion",
620
+ "label": "My discussion",
621
+ "enable": true
622
+ }
623
+ ],
624
+ "CATEGORY": "category",
625
+ "CATEGORY_DETAILS": "categoryDetails",
626
+ "CATEGORY_HOME": "categoryHome",
627
+ "TAG_ALL_DISCUSS": "tagAllDiscuss",
628
+ "TAGS": "TAGS",
629
+ "TAGSALL": "TAGSALL"
630
+ }