-
Notifications
You must be signed in to change notification settings - Fork 0
/
main-page-state.js
61 lines (61 loc) · 1.46 KB
/
main-page-state.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const data = {
blocks: [
{
type: "featured",
articleId: null, // Як прыгатаваць мову ВКЛ?
frozen: false
},
{
type: "diary" // Караткевіч
},
{
type: "latestArticles",
articlesIds: [
{ id: 3, frozen: true }, // Джойс
{ id: null, frozen: false } // Літва!
]
},
{
type: "tagsByTopic",
topicSlug: "personalities",
tagsIds: [1, 4, 5], // Боўі / Колас / Баршчэўскі
style: "1-2"
},
{
type: "articlesByTag3",
tagId: 27, // XX стагоддзе
articlesIds: [5, 6, 7] // Ольстэр / Дубоўка / Летапісы
},
{
type: "articlesByTag2",
tagId: 90, // XX стагоддзе
articlesIds: [10, 18] // Кітабы / Душы
},
{
type: "banner",
banner: 0 // map.wir.by
},
{
type: "tagsByTopic",
topicSlug: "locations",
tagsIds: [20, 21, 22], // ВКЛ / Міжзем’е / Галактыка
style: "2-1"
},
{
type: "articlesByBrand",
tagId: 2, // НацМастацкі
articlesIds: [38, 32] // Вітальды
}
],
data: {
articles: [3, 5, 6, 7, 10, 18, 32, 38],
latestArticles: [
// 3 latest *published* articles are returned.
],
tags: [1, 4, 5, 20, 21, 22],
topics: [
// always all are returned (with slugs and IDs)
],
banners: [0]
}
};