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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# File 'decidim-design/app/helpers/decidim/design/announcement_helper.rb', line 6
def announcement_sections
[
{
title: t("decidim.design.helpers.callout_class"),
contents: [
{
type: :text,
values: [t("decidim.design.helpers.callout_description")]
},
{
type: :table,
options: { headings: [t("decidim.design.components.announcement.title"), t("decidim.design.helpers.callout_class")] },
items: announcement_table(
{ text: t("decidim.design.components.announcement.iam_an_announcement"), callout_class: "success" },
{ text: t("decidim.design.components.announcement.iam_an_announcement"), callout_class: "warning" },
{ text: t("decidim.design.components.announcement.iam_an_announcement"), callout_class: "alert" },
{ text: t("decidim.design.components.announcement.iam_an_announcement"), callout_class: "secondary" },
{ text: t("decidim.design.components.announcement.iam_an_announcement"), callout_class: nil }
),
cell_snippet: {
cell: "decidim/announcement",
args: [t("decidim.design.components.announcement.iam_an_announcement"), { callout_class: "success" }],
call_string: [
'cell("decidim/announcement", "I am an announcement", callout_class: "success")',
'cell("decidim/announcement", "I am an announcement", callout_class: "warning")',
'cell("decidim/announcement", "I am an announcement", callout_class: "alert")',
'cell("decidim/announcement", "I am an announcement", callout_class: "secondary")',
'cell("decidim/announcement", "I am an announcement")'
]
}
}
]
},
{
title: t("decidim.design.helpers.plain_text_vs_hash"),
contents: [
{
type: :text,
values: [t("decidim.design.helpers.plain_text_description")]
},
{
type: :table,
options: { headings: [t("decidim.design.components.announcement.title"), t("decidim.design.helpers.callout_class"), t("decidim.design.helpers.argument")] },
items: announcement_table(
{ text: { title: t("decidim.design.components.announcement.this_is_the_title"), body: t("decidim.design.components.announcement.this_is_the_body") },
callout_class: "success",
argument: '{ title: "This is the title", body: "This is the body" }, callout_class: "success"' },
{ text: { title: t("decidim.design.components.announcement.this_is_the_title"), body: t("decidim.design.components.announcement.this_is_the_body") },
callout_class: "warning",
argument: '{ title: "This is the title", body: "This is the body" }, callout_class: "warning"' },
{ text: { title: t("decidim.design.components.announcement.this_is_the_title"), body: t("decidim.design.components.announcement.this_is_the_body") },
callout_class: "alert",
argument: '{ title: "This is the title", body: "This is the body" }, callout_class: "alert"' },
{ text: { title: t("decidim.design.components.announcement.this_is_the_title"), body: t("decidim.design.components.announcement.this_is_the_body") },
callout_class: "secondary",
argument: '{ title: "This is the title", body: "This is the body" }, callout_class: "secondary"' },
{ text: { title: t("decidim.design.components.announcement.this_is_the_title"), body: t("decidim.design.components.announcement.this_is_the_body") },
callout_class: nil,
argument: '{ title: "This is the title", body: "This is the body" }' },
{ text: t("decidim.design.helpers.plain_text"), callout_class: nil, argument: '"I am just plain text"' }
),
cell_snippet: {
cell: "decidim/announcement",
args: [{ title: t("decidim.design.components.announcement.this_is_the_title"), body: t("decidim.design.components.announcement.this_is_the_body") },
{ callout_class: "success" }],
call_string: [
%{cell("decidim/announcement", { title: "This is the title", body: "This is the body" }, callout_class: "success")},
'cell("decidim/announcement", { title: "This is the title", body: "This is the body" }, callout_class: "warning")',
'cell("decidim/announcement", { title: "This is the title", body: "This is the body" }, callout_class: "alert")',
'cell("decidim/announcement", { title: "This is the title", body: "This is the body" }, callout_class: "secondary")',
'cell("decidim/announcement", { title: "This is the title", body: "This is the body" })',
'cell("decidim/announcement", "I am just plain text")'
]
}
}
]
}
]
end
|