@everystate/examples 1.0.0 → 1.0.1

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 (152) hide show
  1. package/README.md +15 -0
  2. package/everyState-core/001-counter/README.md +44 -0
  3. package/everyState-core/001-counter/index.html +79 -0
  4. package/everyState-core/002-counter-improved/README.md +44 -0
  5. package/everyState-core/002-counter-improved/index.html +83 -0
  6. package/everyState-core/003-input-reactive/README.md +44 -0
  7. package/everyState-core/003-input-reactive/index.html +68 -0
  8. package/everyState-core/004-computed-state/README.md +45 -0
  9. package/everyState-core/004-computed-state/index.html +83 -0
  10. package/everyState-core/005-conditional-rendering/README.md +42 -0
  11. package/everyState-core/005-conditional-rendering/index.html +68 -0
  12. package/everyState-core/006-list-rendering/README.md +49 -0
  13. package/everyState-core/006-list-rendering/index.html +92 -0
  14. package/everyState-core/007-form-validation/README.md +52 -0
  15. package/everyState-core/007-form-validation/index.html +108 -0
  16. package/everyState-core/008-undo-redo/README.md +70 -0
  17. package/everyState-core/008-undo-redo/index.html +133 -0
  18. package/everyState-core/009-localStorage-side-effects/README.md +72 -0
  19. package/everyState-core/009-localStorage-side-effects/index.html +80 -0
  20. package/everyState-core/010-decoupled-components/README.md +74 -0
  21. package/everyState-core/010-decoupled-components/index.html +117 -0
  22. package/everyState-core/011-async-patterns/README.md +98 -0
  23. package/everyState-core/011-async-patterns/index.html +132 -0
  24. package/everyState-css/001-stateDrivenCSS/index.html +377 -0
  25. package/everyState-css/002-cssV2FullDemo/index.html +630 -0
  26. package/everyState-view/001/counter/index.css +31 -0
  27. package/everyState-view/001/counter/index.html +50 -0
  28. package/everyState-view/002/datatable/index.css +70 -0
  29. package/everyState-view/002/datatable/index.html +118 -0
  30. package/everyState-view/003/todo/index.css +260 -0
  31. package/everyState-view/003/todo/index.html +218 -0
  32. package/everyState-view/003-input-reactive/README.md +44 -0
  33. package/everyState-view/003-input-reactive/index.html +68 -0
  34. package/everyState-view/004/quotesFetcher/index.css +124 -0
  35. package/everyState-view/004/quotesFetcher/index.html +108 -0
  36. package/everyState-view/004_01/quotesFetcher/app.js +32 -0
  37. package/everyState-view/004_01/quotesFetcher/components/appHeader/appSubtitle.js +2 -0
  38. package/everyState-view/004_01/quotesFetcher/components/appHeader/appTitle.js +2 -0
  39. package/everyState-view/004_01/quotesFetcher/components/appHeader.js +9 -0
  40. package/everyState-view/004_01/quotesFetcher/components/historyHeading.js +2 -0
  41. package/everyState-view/004_01/quotesFetcher/components/historyList/histAuthor.js +2 -0
  42. package/everyState-view/004_01/quotesFetcher/components/historyList/histQuote.js +2 -0
  43. package/everyState-view/004_01/quotesFetcher/components/historyList.js +14 -0
  44. package/everyState-view/004_01/quotesFetcher/components/quoteCard/fetchButton.js +2 -0
  45. package/everyState-view/004_01/quotesFetcher/components/quoteCard/quoteAuthor.js +2 -0
  46. package/everyState-view/004_01/quotesFetcher/components/quoteCard/quoteMessage.js +2 -0
  47. package/everyState-view/004_01/quotesFetcher/components/quoteCard/quoteText.js +2 -0
  48. package/everyState-view/004_01/quotesFetcher/components/quoteCard.js +11 -0
  49. package/everyState-view/004_01/quotesFetcher/index.css +124 -0
  50. package/everyState-view/004_01/quotesFetcher/index.html +23 -0
  51. package/everyState-view/004_01/quotesFetcher/store.js +35 -0
  52. package/everyState-view/004_02/quotesFetcher/app.js +20 -0
  53. package/everyState-view/004_02/quotesFetcher/components.js +46 -0
  54. package/everyState-view/004_02/quotesFetcher/index.css +124 -0
  55. package/everyState-view/004_02/quotesFetcher/index.html +23 -0
  56. package/everyState-view/004_02/quotesFetcher/store.js +35 -0
  57. package/everyState-view/004_03/quotesFetcher/actions.js +27 -0
  58. package/everyState-view/004_03/quotesFetcher/app.js +19 -0
  59. package/everyState-view/004_03/quotesFetcher/components.js +28 -0
  60. package/everyState-view/004_03/quotesFetcher/index.css +124 -0
  61. package/everyState-view/004_03/quotesFetcher/index.html +23 -0
  62. package/everyState-view/004_03/quotesFetcher/resolve.js +34 -0
  63. package/everyState-view/004_03/quotesFetcher/store.js +11 -0
  64. package/everyState-view/004_04/quotesFetcher/actions.js +66 -0
  65. package/everyState-view/004_04/quotesFetcher/app.js +24 -0
  66. package/everyState-view/004_04/quotesFetcher/components/archive.js +40 -0
  67. package/everyState-view/004_04/quotesFetcher/components/fetcher.js +29 -0
  68. package/everyState-view/004_04/quotesFetcher/components.js +20 -0
  69. package/everyState-view/004_04/quotesFetcher/index.css +283 -0
  70. package/everyState-view/004_04/quotesFetcher/index.html +24 -0
  71. package/everyState-view/004_04/quotesFetcher/resolve.js +34 -0
  72. package/everyState-view/004_04/quotesFetcher/store.js +21 -0
  73. package/everyState-view/004_04/statedump.json +826 -0
  74. package/everyState-view/004_05/quoteExplorer/actions.js +58 -0
  75. package/everyState-view/004_05/quoteExplorer/app.js +27 -0
  76. package/everyState-view/004_05/quoteExplorer/components.js +83 -0
  77. package/everyState-view/004_05/quoteExplorer/index.css +231 -0
  78. package/everyState-view/004_05/quoteExplorer/index.html +23 -0
  79. package/everyState-view/004_05/quoteExplorer/resolve.js +50 -0
  80. package/everyState-view/004_05/quoteExplorer/store.js +33 -0
  81. package/everyState-view/004_06/quoteExplorer/actions.js +21 -0
  82. package/everyState-view/004_06/quoteExplorer/app.js +44 -0
  83. package/everyState-view/004_06/quoteExplorer/components.js +80 -0
  84. package/everyState-view/004_06/quoteExplorer/derived.js +43 -0
  85. package/everyState-view/004_06/quoteExplorer/index.css +346 -0
  86. package/everyState-view/004_06/quoteExplorer/index.html +25 -0
  87. package/everyState-view/004_06/quoteExplorer/intents.js +44 -0
  88. package/everyState-view/004_06/quoteExplorer/policies.js +25 -0
  89. package/everyState-view/004_06/quoteExplorer/resolve.js +51 -0
  90. package/everyState-view/004_06/quoteExplorer/store.js +44 -0
  91. package/everyState-view/004_07/quoteExplorer/app.js +47 -0
  92. package/everyState-view/004_07/quoteExplorer/components.js +85 -0
  93. package/everyState-view/004_07/quoteExplorer/derived.js +43 -0
  94. package/everyState-view/004_07/quoteExplorer/index.css +346 -0
  95. package/everyState-view/004_07/quoteExplorer/index.html +25 -0
  96. package/everyState-view/004_07/quoteExplorer/intents.js +51 -0
  97. package/everyState-view/004_07/quoteExplorer/policies.js +21 -0
  98. package/everyState-view/004_07/quoteExplorer/resolve.js +39 -0
  99. package/everyState-view/004_07/quoteExplorer/store.js +44 -0
  100. package/everyState-view/004_08/quoteExplorer/app.js +78 -0
  101. package/everyState-view/004_08/quoteExplorer/components.js +85 -0
  102. package/everyState-view/004_08/quoteExplorer/derived.js +43 -0
  103. package/everyState-view/004_08/quoteExplorer/index.css +346 -0
  104. package/everyState-view/004_08/quoteExplorer/index.html +25 -0
  105. package/everyState-view/004_08/quoteExplorer/intents.js +51 -0
  106. package/everyState-view/004_08/quoteExplorer/policies.js +21 -0
  107. package/everyState-view/004_08/quoteExplorer/resolve.js +39 -0
  108. package/everyState-view/004_08/quoteExplorer/store.js +44 -0
  109. package/everyState-view/004_08_V2/app.js +78 -0
  110. package/everyState-view/004_08_V2/components/appDetail.js +8 -0
  111. package/everyState-view/004_08_V2/components/appDetailBar.js +7 -0
  112. package/everyState-view/004_08_V2/components/appDetailBarClose.js +8 -0
  113. package/everyState-view/004_08_V2/components/appDetailBarCount.js +7 -0
  114. package/everyState-view/004_08_V2/components/appDetailBarHeading.js +7 -0
  115. package/everyState-view/004_08_V2/components/appDetailQuotes.js +15 -0
  116. package/everyState-view/004_08_V2/components/appHeader.js +7 -0
  117. package/everyState-view/004_08_V2/components/appHeaderSubtitle.js +7 -0
  118. package/everyState-view/004_08_V2/components/appHeaderTitle.js +7 -0
  119. package/everyState-view/004_08_V2/components/appLog.js +7 -0
  120. package/everyState-view/004_08_V2/components/appLogHeading.js +7 -0
  121. package/everyState-view/004_08_V2/components/appLogList.js +16 -0
  122. package/everyState-view/004_08_V2/components/appSearch.js +7 -0
  123. package/everyState-view/004_08_V2/components/appSearchInput.js +9 -0
  124. package/everyState-view/004_08_V2/components/appStats.js +7 -0
  125. package/everyState-view/004_08_V2/components/appStatsContent.js +8 -0
  126. package/everyState-view/004_08_V2/components/appStatsContentFavcount.js +7 -0
  127. package/everyState-view/004_08_V2/components/appStatsContentText.js +7 -0
  128. package/everyState-view/004_08_V2/components/appStatsToggle.js +8 -0
  129. package/everyState-view/004_08_V2/components/appTags.js +7 -0
  130. package/everyState-view/004_08_V2/components/appTagsLabel.js +7 -0
  131. package/everyState-view/004_08_V2/components/appTagsRow.js +15 -0
  132. package/everyState-view/004_08_V2/components/index.js +59 -0
  133. package/everyState-view/004_08_V2/components/utils/css.js +88 -0
  134. package/everyState-view/004_08_V2/components/utils/elements.js +87 -0
  135. package/everyState-view/004_08_V2/components.js +79 -0
  136. package/everyState-view/004_08_V2/derived.js +43 -0
  137. package/everyState-view/004_08_V2/index.css +350 -0
  138. package/everyState-view/004_08_V2/index.html +25 -0
  139. package/everyState-view/004_08_V2/intents.js +51 -0
  140. package/everyState-view/004_08_V2/policies.js +21 -0
  141. package/everyState-view/004_08_V2/resolve.js +39 -0
  142. package/everyState-view/004_08_V2/store.js +44 -0
  143. package/everyState-view/006/api-datatable/index.css +388 -0
  144. package/everyState-view/006/api-datatable/index.html +355 -0
  145. package/everyState-view/007/apiUsers/index.html +307 -0
  146. package/everyState-view/007-form-validation/README.md +52 -0
  147. package/everyState-view/007-form-validation/index.html +108 -0
  148. package/everyState-view/010-decoupled-components/README.md +74 -0
  149. package/everyState-view/010-decoupled-components/index.html +117 -0
  150. package/everyState-view/index.html +36 -0
  151. package/index.js +0 -5
  152. package/package.json +2 -4
@@ -0,0 +1,826 @@
1
+ {
2
+ "quote": "Love Begins By Taking Care Of The Closest Ones - The Ones At Home.",
3
+ "author": "Mother Teresa",
4
+ "history": [
5
+ {
6
+ "quote": "Love Begins By Taking Care Of The Closest Ones - The Ones At Home.",
7
+ "author": "Mother Teresa"
8
+ }
9
+ ],
10
+ "message": "",
11
+ "archive": {
12
+ "display": [
13
+ {
14
+ "quote": "The Bay of Bengal is hit frequently by cyclones. The months of November and May, in particular, are dangerous in this regard.",
15
+ "author": "Abdul Kalam",
16
+ "id": "#2"
17
+ },
18
+ {
19
+ "quote": "Thinking is the capital, Enterprise is the way, Hard Work is the solution.",
20
+ "author": "Abdul Kalam",
21
+ "id": "#3"
22
+ },
23
+ {
24
+ "quote": "While children are struggling to be unique, the world around them is trying all means to make them look like everybody else.",
25
+ "author": "Abdul Kalam",
26
+ "id": "#9"
27
+ },
28
+ {
29
+ "quote": "Let us sacrifice our today so that our children can have a better tomorrow.",
30
+ "author": "Abdul Kalam",
31
+ "id": "#32"
32
+ },
33
+ {
34
+ "quote": "I'm not a handsome guy, but I can give my hand to someone who needs help. Beauty is in the heart, not in the face.",
35
+ "author": "Abdul Kalam",
36
+ "id": "#36"
37
+ },
38
+ {
39
+ "quote": "No matter what is the environment around you, it is always possible to maintain your brand of integrity.",
40
+ "author": "Abdul Kalam",
41
+ "id": "#45"
42
+ },
43
+ {
44
+ "quote": "These Capitalists Generally Act Harmoniously And In Concert, To Fleece The People.",
45
+ "author": "Abraham Lincoln",
46
+ "id": "#10"
47
+ },
48
+ {
49
+ "quote": "It is bad for a young man to sin; but it is worse for an old man to sin.",
50
+ "author": "Abu Bakr (R.A)",
51
+ "id": "#6"
52
+ },
53
+ {
54
+ "quote": "O man you are busy working for the world, and the world is busy trying to turn you out.",
55
+ "author": "Abu Bakr (R.A)",
56
+ "id": "#8"
57
+ },
58
+ {
59
+ "quote": "Do not get elated at any victory, for all such victory is subject to the will of God.",
60
+ "author": "Abu Bakr (R.A)",
61
+ "id": "#12"
62
+ },
63
+ {
64
+ "quote": "If You Are Out To Describe The Truth, Leave Elegance To The Tailor.",
65
+ "author": "Albert Einstein",
66
+ "id": "#7"
67
+ },
68
+ {
69
+ "quote": "Technological Progress Is Like An Axe In The Hands Of A Pathological Criminal.",
70
+ "author": "Albert Einstein",
71
+ "id": "#28"
72
+ },
73
+ {
74
+ "quote": "Happiness comes towards those which believe in him.",
75
+ "author": "Ali ibn Abi Talib (R.A)",
76
+ "id": "#25"
77
+ },
78
+ {
79
+ "quote": "Knowledge is of two kinds: that which is absorbed and that which is heard. And that which is heard does not profit if it is not absorbed.",
80
+ "author": "Ali ibn Abi Talib (R.A)",
81
+ "id": "#26"
82
+ },
83
+ {
84
+ "quote": "No One Would Choose A Friendless Existence On Condition Of Having All The Other Things In The World.",
85
+ "author": "Aristotle",
86
+ "id": "#29"
87
+ },
88
+ {
89
+ "quote": "The Soul Never Thinks Without A Picture.",
90
+ "author": "Aristotle",
91
+ "id": "#39"
92
+ },
93
+ {
94
+ "quote": "Applause Waits On Success.",
95
+ "author": "Benjamin Franklin",
96
+ "id": "#46"
97
+ },
98
+ {
99
+ "quote": "If You Can'T Make It Good, At Least Make It Look Good.",
100
+ "author": "Bill Gates",
101
+ "id": "#4"
102
+ },
103
+ {
104
+ "quote": "It'S Better To Be A Lion For A Day Than A Sheep All Your Life.",
105
+ "author": "Elizabeth Kenny",
106
+ "id": "#48"
107
+ },
108
+ {
109
+ "quote": "If You Like Your Brother And He'S Prospering, You'Ll Be Pleased For Him.",
110
+ "author": "Hamad Bin Isa Al Khalifa",
111
+ "id": "#42"
112
+ },
113
+ {
114
+ "quote": "Just As Courage Imperils Life, Fear Protects It.",
115
+ "author": "Leonardo Da Vinci",
116
+ "id": "#47"
117
+ },
118
+ {
119
+ "quote": "What Do I Wear In Bed? Why, Chanel No. 5, Of Course.",
120
+ "author": "Marilyn Monroe",
121
+ "id": "#37"
122
+ },
123
+ {
124
+ "quote": "One Of The Greatest Diseases Is To Be Nobody To Anybody.",
125
+ "author": "Mother Teresa",
126
+ "id": "#16"
127
+ },
128
+ {
129
+ "quote": "God Doesn'T Require Us To Succeed, He Only Requires That You Try.",
130
+ "author": "Mother Teresa",
131
+ "id": "#23"
132
+ },
133
+ {
134
+ "quote": "If you even dream of beating me you'd better wake up and apologize.",
135
+ "author": "Muhammad Ali",
136
+ "id": "#14"
137
+ },
138
+ {
139
+ "quote": "I'm so fast that last night I turned off the light switch in my hotel room and was in bed before the room was dark.",
140
+ "author": "Muhammad Ali",
141
+ "id": "#17"
142
+ },
143
+ {
144
+ "quote": "Life is a gamble. You can get hurt, but people die in plane crashes, lose their arms and legs in car accidents; people die every day. Same with fighters: some die, some get hurt, some go on. You just don't let yourself believe it will happen to you.",
145
+ "author": "Muhammad Ali",
146
+ "id": "#30"
147
+ },
148
+ {
149
+ "quote": "Champions are not generated from the championship. Champion is generated from something they have in them, desires, dreams, and visions.",
150
+ "author": "Muhammad Ali",
151
+ "id": "#44"
152
+ },
153
+ {
154
+ "quote": "People Must Learn To Hate And If They Can Learn To Hate, They Can Be Taught To Love.",
155
+ "author": "Nelson Mandela",
156
+ "id": "#18"
157
+ },
158
+ {
159
+ "quote": "A Good Head And A Good Heart Are Always A Formidable Combination.",
160
+ "author": "Nelson Mandela",
161
+ "id": "#38"
162
+ },
163
+ {
164
+ "quote": "I Don'T Believe In Failure. It Is Not Failure If You Enjoyed The Process.",
165
+ "author": "Oprah Winfrey",
166
+ "id": "#11"
167
+ },
168
+ {
169
+ "quote": "Your heart is the size of an ocean. Go find yourself in its hidden depths.",
170
+ "author": "Rumi",
171
+ "id": "#1"
172
+ },
173
+ {
174
+ "quote": "Heart be brave. If you cannot be brave, just go. Love's glory is not a small thing.",
175
+ "author": "Rumi",
176
+ "id": "#5"
177
+ },
178
+ {
179
+ "quote": "Wear gratitude like a cloak and it will feed every corner of your life.",
180
+ "author": "Rumi",
181
+ "id": "#13"
182
+ },
183
+ {
184
+ "quote": "Everyone has been made for some particular work, and the desire for that work has been put in every heart.",
185
+ "author": "Rumi",
186
+ "id": "#19"
187
+ },
188
+ {
189
+ "quote": "Respond to every call that excites your spirit.",
190
+ "author": "Rumi",
191
+ "id": "#21"
192
+ },
193
+ {
194
+ "quote": "Speak any language, Turkish, Greek, Persian, Arabic, but always speak with love.",
195
+ "author": "Rumi",
196
+ "id": "#24"
197
+ },
198
+ {
199
+ "quote": "When I am silent, I have thunder hidden inside.",
200
+ "author": "Rumi",
201
+ "id": "#27"
202
+ },
203
+ {
204
+ "quote": "Your task is not to seek for love, but merely to seek and find all the barriers within yourself that you have built against it.",
205
+ "author": "Rumi",
206
+ "id": "#33"
207
+ },
208
+ {
209
+ "quote": "In every religion there is love, yet love has no religion.",
210
+ "author": "Rumi",
211
+ "id": "#34"
212
+ },
213
+ {
214
+ "quote": "Everything in the universe is within you. Ask all from yourself.",
215
+ "author": "Rumi",
216
+ "id": "#35"
217
+ },
218
+ {
219
+ "quote": "In your light I learn how to love. In your beauty, how to make poems. You dance inside my chest where no-one sees you, but sometimes I do, and that sight becomes this art.",
220
+ "author": "Rumi",
221
+ "id": "#40"
222
+ },
223
+ {
224
+ "quote": "Let the beauty we love be what we do. There are hundreds of ways to kneel and kiss the ground.",
225
+ "author": "Rumi",
226
+ "id": "#41"
227
+ },
228
+ {
229
+ "quote": "The End Of Life Is To Be Like God, And The Soul Following God Will Be Like Him.",
230
+ "author": "Socrates",
231
+ "id": "#31"
232
+ },
233
+ {
234
+ "quote": "The Devil'S Voice Is Sweet To Hear.",
235
+ "author": "Stephen King",
236
+ "id": "#49"
237
+ },
238
+ {
239
+ "quote": "The less of the World, the freer you live.",
240
+ "author": "Umar ibn Al-Khattāb (R.A)",
241
+ "id": "#20"
242
+ },
243
+ {
244
+ "quote": "Sometimes the people with the worst past, create the best future.",
245
+ "author": "Umar ibn Al-Khattāb (R.A)",
246
+ "id": "#50"
247
+ },
248
+ {
249
+ "quote": "The Way To Get Started Is To Quit Talking And Begin Doing.",
250
+ "author": "Walt Disney",
251
+ "id": "#22"
252
+ },
253
+ {
254
+ "quote": "I Will Praise Any Man That Will Praise Me.",
255
+ "author": "William Shakespeare",
256
+ "id": "#15"
257
+ },
258
+ {
259
+ "quote": "Success Is Dependent Upon The Glands - Sweat Glands.",
260
+ "author": "Zig Ziglar",
261
+ "id": "#43"
262
+ }
263
+ ],
264
+ "count": 50,
265
+ "authorCount": 23,
266
+ "sortOrder": "asc",
267
+ "status": ""
268
+ },
269
+ "view": {
270
+ "rootId": "v0",
271
+ "nodes": {
272
+ "v2": {
273
+ "id": "v2",
274
+ "parentId": "v1",
275
+ "tag": "h1",
276
+ "text": "💬 Quote Explorer",
277
+ "childIds": []
278
+ },
279
+ "v3": {
280
+ "id": "v3",
281
+ "parentId": "v1",
282
+ "tag": "p",
283
+ "class": "subtitle",
284
+ "text": "Uniform Resource Architecture - everything is a dot path",
285
+ "childIds": []
286
+ },
287
+ "v1": {
288
+ "id": "v1",
289
+ "parentId": "v0",
290
+ "tag": "header",
291
+ "class": "app-header",
292
+ "childIds": [
293
+ "v2",
294
+ "v3"
295
+ ]
296
+ },
297
+ "v5": {
298
+ "id": "v5",
299
+ "parentId": "v4",
300
+ "tag": "h2",
301
+ "class": "section-heading",
302
+ "text": "Random Quote",
303
+ "childIds": []
304
+ },
305
+ "v7": {
306
+ "id": "v7",
307
+ "parentId": "v6",
308
+ "tag": "p",
309
+ "class": "quote-text",
310
+ "text": "{quote}",
311
+ "childIds": []
312
+ },
313
+ "v8": {
314
+ "id": "v8",
315
+ "parentId": "v6",
316
+ "tag": "p",
317
+ "class": "quote-author",
318
+ "text": "{author}",
319
+ "childIds": []
320
+ },
321
+ "v9": {
322
+ "id": "v9",
323
+ "parentId": "v6",
324
+ "tag": "p",
325
+ "class": "message",
326
+ "text": "{message}",
327
+ "childIds": []
328
+ },
329
+ "v10": {
330
+ "id": "v10",
331
+ "parentId": "v6",
332
+ "tag": "button",
333
+ "class": "btn btn-primary",
334
+ "text": "New Quote",
335
+ "onClick": "actions.fetchQuote",
336
+ "childIds": []
337
+ },
338
+ "v6": {
339
+ "id": "v6",
340
+ "parentId": "v4",
341
+ "tag": "div",
342
+ "class": "card",
343
+ "childIds": [
344
+ "v7",
345
+ "v8",
346
+ "v9",
347
+ "v10"
348
+ ]
349
+ },
350
+ "v12": {
351
+ "id": "v12",
352
+ "parentId": "v11",
353
+ "tag": "h3",
354
+ "class": "history-heading",
355
+ "text": "Recent ({history.length})",
356
+ "childIds": []
357
+ },
358
+ "v13": {
359
+ "id": "v13",
360
+ "parentId": "v11",
361
+ "tag": "ul",
362
+ "class": "history",
363
+ "forEach": "history",
364
+ "as": "item",
365
+ "template": {
366
+ "tag": "li",
367
+ "class": "history-item",
368
+ "children": [
369
+ {
370
+ "tag": "span",
371
+ "class": "hist-quote",
372
+ "text": "item.quote"
373
+ },
374
+ {
375
+ "tag": "span",
376
+ "class": "hist-author",
377
+ "text": "item.author"
378
+ }
379
+ ]
380
+ },
381
+ "childIds": []
382
+ },
383
+ "v11": {
384
+ "id": "v11",
385
+ "parentId": "v4",
386
+ "tag": "div",
387
+ "class": "fetcher-history",
388
+ "childIds": [
389
+ "v12",
390
+ "v13"
391
+ ]
392
+ },
393
+ "v4": {
394
+ "id": "v4",
395
+ "parentId": "v0",
396
+ "tag": "section",
397
+ "class": "fetcher",
398
+ "childIds": [
399
+ "v5",
400
+ "v6",
401
+ "v11"
402
+ ]
403
+ },
404
+ "v16": {
405
+ "id": "v16",
406
+ "parentId": "v15",
407
+ "tag": "h2",
408
+ "class": "section-heading",
409
+ "text": "Quote Archive",
410
+ "childIds": []
411
+ },
412
+ "v18": {
413
+ "id": "v18",
414
+ "parentId": "v17",
415
+ "tag": "button",
416
+ "class": "btn btn-primary",
417
+ "text": "Load 50 Quotes",
418
+ "onClick": "actions.loadArchive",
419
+ "childIds": []
420
+ },
421
+ "v19": {
422
+ "id": "v19",
423
+ "parentId": "v17",
424
+ "tag": "button",
425
+ "class": "btn btn-secondary",
426
+ "text": "↕ Sort by Author",
427
+ "onClick": "actions.sortArchive",
428
+ "childIds": []
429
+ },
430
+ "v17": {
431
+ "id": "v17",
432
+ "parentId": "v15",
433
+ "tag": "div",
434
+ "class": "archive-actions",
435
+ "childIds": [
436
+ "v18",
437
+ "v19"
438
+ ]
439
+ },
440
+ "v21": {
441
+ "id": "v21",
442
+ "parentId": "v20",
443
+ "tag": "span",
444
+ "class": "stat-badge",
445
+ "text": "{archive.count} quotes",
446
+ "childIds": []
447
+ },
448
+ "v22": {
449
+ "id": "v22",
450
+ "parentId": "v20",
451
+ "tag": "span",
452
+ "class": "stat-badge",
453
+ "text": "{archive.authorCount} authors",
454
+ "childIds": []
455
+ },
456
+ "v20": {
457
+ "id": "v20",
458
+ "parentId": "v15",
459
+ "tag": "div",
460
+ "class": "archive-stats",
461
+ "childIds": [
462
+ "v21",
463
+ "v22"
464
+ ]
465
+ },
466
+ "v15": {
467
+ "id": "v15",
468
+ "parentId": "v14",
469
+ "tag": "div",
470
+ "class": "archive-toolbar",
471
+ "childIds": [
472
+ "v16",
473
+ "v17",
474
+ "v20"
475
+ ]
476
+ },
477
+ "v24": {
478
+ "id": "v24",
479
+ "parentId": "v23",
480
+ "tag": "p",
481
+ "class": "archive-status",
482
+ "text": "{archive.status}",
483
+ "childIds": []
484
+ },
485
+ "v25": {
486
+ "id": "v25",
487
+ "parentId": "v23",
488
+ "tag": "div",
489
+ "class": "archive-list",
490
+ "forEach": "archive.display",
491
+ "as": "item",
492
+ "template": {
493
+ "tag": "div",
494
+ "class": "archive-card",
495
+ "children": [
496
+ {
497
+ "tag": "p",
498
+ "class": "archive-quote-text",
499
+ "text": "item.quote"
500
+ },
501
+ {
502
+ "tag": "div",
503
+ "class": "archive-card-meta",
504
+ "children": [
505
+ {
506
+ "tag": "span",
507
+ "class": "archive-card-author",
508
+ "text": "item.author"
509
+ },
510
+ {
511
+ "tag": "span",
512
+ "class": "archive-card-id",
513
+ "text": "item.id"
514
+ }
515
+ ]
516
+ }
517
+ ]
518
+ },
519
+ "childIds": []
520
+ },
521
+ "v23": {
522
+ "id": "v23",
523
+ "parentId": "v14",
524
+ "tag": "div",
525
+ "class": "archive-content",
526
+ "childIds": [
527
+ "v24",
528
+ "v25"
529
+ ]
530
+ },
531
+ "v14": {
532
+ "id": "v14",
533
+ "parentId": "v0",
534
+ "tag": "section",
535
+ "class": "archive",
536
+ "childIds": [
537
+ "v15",
538
+ "v23"
539
+ ]
540
+ },
541
+ "v0": {
542
+ "id": "v0",
543
+ "parentId": null,
544
+ "tag": "div",
545
+ "class": "quotes-app",
546
+ "childIds": [
547
+ "v1",
548
+ "v4",
549
+ "v14"
550
+ ]
551
+ }
552
+ }
553
+ },
554
+ "query": {
555
+ "quote": {
556
+ "status": "success",
557
+ "error": null,
558
+ "data": {
559
+ "id": 1234,
560
+ "quote": "Love Begins By Taking Care Of The Closest Ones - The Ones At Home.",
561
+ "author": "Mother Teresa"
562
+ }
563
+ },
564
+ "archive": {
565
+ "status": "success",
566
+ "error": null,
567
+ "data": {
568
+ "quotes": [
569
+ {
570
+ "id": 1,
571
+ "quote": "Your heart is the size of an ocean. Go find yourself in its hidden depths.",
572
+ "author": "Rumi"
573
+ },
574
+ {
575
+ "id": 2,
576
+ "quote": "The Bay of Bengal is hit frequently by cyclones. The months of November and May, in particular, are dangerous in this regard.",
577
+ "author": "Abdul Kalam"
578
+ },
579
+ {
580
+ "id": 3,
581
+ "quote": "Thinking is the capital, Enterprise is the way, Hard Work is the solution.",
582
+ "author": "Abdul Kalam"
583
+ },
584
+ {
585
+ "id": 4,
586
+ "quote": "If You Can'T Make It Good, At Least Make It Look Good.",
587
+ "author": "Bill Gates"
588
+ },
589
+ {
590
+ "id": 5,
591
+ "quote": "Heart be brave. If you cannot be brave, just go. Love's glory is not a small thing.",
592
+ "author": "Rumi"
593
+ },
594
+ {
595
+ "id": 6,
596
+ "quote": "It is bad for a young man to sin; but it is worse for an old man to sin.",
597
+ "author": "Abu Bakr (R.A)"
598
+ },
599
+ {
600
+ "id": 7,
601
+ "quote": "If You Are Out To Describe The Truth, Leave Elegance To The Tailor.",
602
+ "author": "Albert Einstein"
603
+ },
604
+ {
605
+ "id": 8,
606
+ "quote": "O man you are busy working for the world, and the world is busy trying to turn you out.",
607
+ "author": "Abu Bakr (R.A)"
608
+ },
609
+ {
610
+ "id": 9,
611
+ "quote": "While children are struggling to be unique, the world around them is trying all means to make them look like everybody else.",
612
+ "author": "Abdul Kalam"
613
+ },
614
+ {
615
+ "id": 10,
616
+ "quote": "These Capitalists Generally Act Harmoniously And In Concert, To Fleece The People.",
617
+ "author": "Abraham Lincoln"
618
+ },
619
+ {
620
+ "id": 11,
621
+ "quote": "I Don'T Believe In Failure. It Is Not Failure If You Enjoyed The Process.",
622
+ "author": "Oprah Winfrey"
623
+ },
624
+ {
625
+ "id": 12,
626
+ "quote": "Do not get elated at any victory, for all such victory is subject to the will of God.",
627
+ "author": "Abu Bakr (R.A)"
628
+ },
629
+ {
630
+ "id": 13,
631
+ "quote": "Wear gratitude like a cloak and it will feed every corner of your life.",
632
+ "author": "Rumi"
633
+ },
634
+ {
635
+ "id": 14,
636
+ "quote": "If you even dream of beating me you'd better wake up and apologize.",
637
+ "author": "Muhammad Ali"
638
+ },
639
+ {
640
+ "id": 15,
641
+ "quote": "I Will Praise Any Man That Will Praise Me.",
642
+ "author": "William Shakespeare"
643
+ },
644
+ {
645
+ "id": 16,
646
+ "quote": "One Of The Greatest Diseases Is To Be Nobody To Anybody.",
647
+ "author": "Mother Teresa"
648
+ },
649
+ {
650
+ "id": 17,
651
+ "quote": "I'm so fast that last night I turned off the light switch in my hotel room and was in bed before the room was dark.",
652
+ "author": "Muhammad Ali"
653
+ },
654
+ {
655
+ "id": 18,
656
+ "quote": "People Must Learn To Hate And If They Can Learn To Hate, They Can Be Taught To Love.",
657
+ "author": "Nelson Mandela"
658
+ },
659
+ {
660
+ "id": 19,
661
+ "quote": "Everyone has been made for some particular work, and the desire for that work has been put in every heart.",
662
+ "author": "Rumi"
663
+ },
664
+ {
665
+ "id": 20,
666
+ "quote": "The less of the World, the freer you live.",
667
+ "author": "Umar ibn Al-Khattāb (R.A)"
668
+ },
669
+ {
670
+ "id": 21,
671
+ "quote": "Respond to every call that excites your spirit.",
672
+ "author": "Rumi"
673
+ },
674
+ {
675
+ "id": 22,
676
+ "quote": "The Way To Get Started Is To Quit Talking And Begin Doing.",
677
+ "author": "Walt Disney"
678
+ },
679
+ {
680
+ "id": 23,
681
+ "quote": "God Doesn'T Require Us To Succeed, He Only Requires That You Try.",
682
+ "author": "Mother Teresa"
683
+ },
684
+ {
685
+ "id": 24,
686
+ "quote": "Speak any language, Turkish, Greek, Persian, Arabic, but always speak with love.",
687
+ "author": "Rumi"
688
+ },
689
+ {
690
+ "id": 25,
691
+ "quote": "Happiness comes towards those which believe in him.",
692
+ "author": "Ali ibn Abi Talib (R.A)"
693
+ },
694
+ {
695
+ "id": 26,
696
+ "quote": "Knowledge is of two kinds: that which is absorbed and that which is heard. And that which is heard does not profit if it is not absorbed.",
697
+ "author": "Ali ibn Abi Talib (R.A)"
698
+ },
699
+ {
700
+ "id": 27,
701
+ "quote": "When I am silent, I have thunder hidden inside.",
702
+ "author": "Rumi"
703
+ },
704
+ {
705
+ "id": 28,
706
+ "quote": "Technological Progress Is Like An Axe In The Hands Of A Pathological Criminal.",
707
+ "author": "Albert Einstein"
708
+ },
709
+ {
710
+ "id": 29,
711
+ "quote": "No One Would Choose A Friendless Existence On Condition Of Having All The Other Things In The World.",
712
+ "author": "Aristotle"
713
+ },
714
+ {
715
+ "id": 30,
716
+ "quote": "Life is a gamble. You can get hurt, but people die in plane crashes, lose their arms and legs in car accidents; people die every day. Same with fighters: some die, some get hurt, some go on. You just don't let yourself believe it will happen to you.",
717
+ "author": "Muhammad Ali"
718
+ },
719
+ {
720
+ "id": 31,
721
+ "quote": "The End Of Life Is To Be Like God, And The Soul Following God Will Be Like Him.",
722
+ "author": "Socrates"
723
+ },
724
+ {
725
+ "id": 32,
726
+ "quote": "Let us sacrifice our today so that our children can have a better tomorrow.",
727
+ "author": "Abdul Kalam"
728
+ },
729
+ {
730
+ "id": 33,
731
+ "quote": "Your task is not to seek for love, but merely to seek and find all the barriers within yourself that you have built against it.",
732
+ "author": "Rumi"
733
+ },
734
+ {
735
+ "id": 34,
736
+ "quote": "In every religion there is love, yet love has no religion.",
737
+ "author": "Rumi"
738
+ },
739
+ {
740
+ "id": 35,
741
+ "quote": "Everything in the universe is within you. Ask all from yourself.",
742
+ "author": "Rumi"
743
+ },
744
+ {
745
+ "id": 36,
746
+ "quote": "I'm not a handsome guy, but I can give my hand to someone who needs help. Beauty is in the heart, not in the face.",
747
+ "author": "Abdul Kalam"
748
+ },
749
+ {
750
+ "id": 37,
751
+ "quote": "What Do I Wear In Bed? Why, Chanel No. 5, Of Course.",
752
+ "author": "Marilyn Monroe"
753
+ },
754
+ {
755
+ "id": 38,
756
+ "quote": "A Good Head And A Good Heart Are Always A Formidable Combination.",
757
+ "author": "Nelson Mandela"
758
+ },
759
+ {
760
+ "id": 39,
761
+ "quote": "The Soul Never Thinks Without A Picture.",
762
+ "author": "Aristotle"
763
+ },
764
+ {
765
+ "id": 40,
766
+ "quote": "In your light I learn how to love. In your beauty, how to make poems. You dance inside my chest where no-one sees you, but sometimes I do, and that sight becomes this art.",
767
+ "author": "Rumi"
768
+ },
769
+ {
770
+ "id": 41,
771
+ "quote": "Let the beauty we love be what we do. There are hundreds of ways to kneel and kiss the ground.",
772
+ "author": "Rumi"
773
+ },
774
+ {
775
+ "id": 42,
776
+ "quote": "If You Like Your Brother And He'S Prospering, You'Ll Be Pleased For Him.",
777
+ "author": "Hamad Bin Isa Al Khalifa"
778
+ },
779
+ {
780
+ "id": 43,
781
+ "quote": "Success Is Dependent Upon The Glands - Sweat Glands.",
782
+ "author": "Zig Ziglar"
783
+ },
784
+ {
785
+ "id": 44,
786
+ "quote": "Champions are not generated from the championship. Champion is generated from something they have in them, desires, dreams, and visions.",
787
+ "author": "Muhammad Ali"
788
+ },
789
+ {
790
+ "id": 45,
791
+ "quote": "No matter what is the environment around you, it is always possible to maintain your brand of integrity.",
792
+ "author": "Abdul Kalam"
793
+ },
794
+ {
795
+ "id": 46,
796
+ "quote": "Applause Waits On Success.",
797
+ "author": "Benjamin Franklin"
798
+ },
799
+ {
800
+ "id": 47,
801
+ "quote": "Just As Courage Imperils Life, Fear Protects It.",
802
+ "author": "Leonardo Da Vinci"
803
+ },
804
+ {
805
+ "id": 48,
806
+ "quote": "It'S Better To Be A Lion For A Day Than A Sheep All Your Life.",
807
+ "author": "Elizabeth Kenny"
808
+ },
809
+ {
810
+ "id": 49,
811
+ "quote": "The Devil'S Voice Is Sweet To Hear.",
812
+ "author": "Stephen King"
813
+ },
814
+ {
815
+ "id": 50,
816
+ "quote": "Sometimes the people with the worst past, create the best future.",
817
+ "author": "Umar ibn Al-Khattāb (R.A)"
818
+ }
819
+ ],
820
+ "total": 1454,
821
+ "skip": 0,
822
+ "limit": 50
823
+ }
824
+ }
825
+ }
826
+ }