diff options
Diffstat (limited to 'tpl/objects')
-rw-r--r-- | tpl/objects/bubble.pug | 8 | ||||
-rw-r--r-- | tpl/objects/dialog.pug | 35 | ||||
-rw-r--r-- | tpl/objects/header.pug | 12 | ||||
-rw-r--r-- | tpl/objects/icon.pug | 4 | ||||
-rw-r--r-- | tpl/objects/sidebar.pug | 12 |
5 files changed, 31 insertions, 40 deletions
diff --git a/tpl/objects/bubble.pug b/tpl/objects/bubble.pug index 1e0df38..fad7242 100644 --- a/tpl/objects/bubble.pug +++ b/tpl/objects/bubble.pug | |||
@@ -31,11 +31,11 @@ mixin bubble(user) | |||
31 | else if user | 31 | else if user |
32 | header(class=headerClasses) | 32 | header(class=headerClasses) |
33 | strong= user | 33 | strong= user |
34 | div.o-bubble__body.s-colored-links | 34 | span.s-colored-links |
35 | - slots.body() | 35 | - slots.body() |
36 | if slots.time | 36 | if slots.time |
37 | small.o-bubble__time | 37 | small.o-bubble__time |
38 | - slots.time() | 38 | - slots.time() |
39 | if slots.footer | 39 | if slots.footer |
40 | footer.o-bubble__footer | 40 | footer.o-bubble__footer |
41 | - slots.footer() | 41 | - slots.footer() |
diff --git a/tpl/objects/dialog.pug b/tpl/objects/dialog.pug index 2474cc3..91b99d9 100644 --- a/tpl/objects/dialog.pug +++ b/tpl/objects/dialog.pug | |||
@@ -1,6 +1,4 @@ | |||
1 | include heading.pug | 1 | include heading.pug |
2 | include header.pug | ||
3 | include sidebar.pug | ||
4 | 2 | ||
5 | mixin dialog(title) | 3 | mixin dialog(title) |
6 | - const slots = {} | 4 | - const slots = {} |
@@ -12,9 +10,23 @@ mixin dialog(title) | |||
12 | block ? block() : undefined | 10 | block ? block() : undefined |
13 | 11 | ||
14 | let classes = { | 12 | let classes = { |
15 | 'o-dialog': true, | 13 | 'o-dialog': true, |
14 | 'o-dialog--flat': attributes.flat, | ||
16 | } | 15 | } |
17 | 16 | ||
17 | let headerClass = { | ||
18 | 'o-dialog__header': true, | ||
19 | 'u-themed': !attributes.flat, | ||
20 | 't-lowered': !attributes.flat, | ||
21 | 'l-card': true, | ||
22 | } | ||
23 | |||
24 | let sidebarHeaderClass = { | ||
25 | 'o-dialog__header--sidebar': true, | ||
26 | } | ||
27 | |||
28 | Object.assign(sidebarHeaderClass, headerClass); | ||
29 | |||
18 | let bodyClass = { | 30 | let bodyClass = { |
19 | 'o-dialog__body': true | 31 | 'o-dialog__body': true |
20 | } | 32 | } |
@@ -23,21 +35,24 @@ mixin dialog(title) | |||
23 | } | 35 | } |
24 | 36 | ||
25 | div(class=classes) | 37 | div(class=classes) |
26 | if slots['sidebar-header'] | 38 | if slots['sidebar-header'] || attributes.sidebarTitle |
27 | +header(class='o-dialog__sidebar-header') | 39 | div(class=sidebarHeaderClass) |
28 | - slots['sidebar-header']() | 40 | if slots['sidebar-header'] |
41 | - slots['sidebar-header']() | ||
42 | else | ||
43 | +div-heading('sm')(class='o-dialog__title l-card__block l-card__block--main')= attributes.sidebarTitle | ||
29 | 44 | ||
30 | if slots.sidebar | 45 | if slots.sidebar |
31 | +sidebar(class='o-dialog__sidebar') | 46 | .o-dialog__sidebar.l-overflow |
32 | - slots.sidebar() | 47 | - slots.sidebar() |
33 | 48 | ||
34 | +header(class='o-dialog__header') | 49 | div(class=headerClass) |
35 | if slots.header | 50 | if slots.header |
36 | - slots.header() | 51 | - slots.header() |
37 | else | 52 | else |
38 | if title | 53 | if title |
39 | +div-heading('sm')(class='o-dialog__label')= title | 54 | +div-heading('sm')(class='o-dialog__title l-card__block l-card__block--main')= title |
40 | +action-button(round=true quiet=true icon='x' class='o-dialog__close-btn') | 55 | +action-button(round=true quiet=true icon='x' class='o-dialog__close-btn l-card__block') |
41 | 56 | ||
42 | section(class=bodyClass) | 57 | section(class=bodyClass) |
43 | if slots.body | 58 | if slots.body |
diff --git a/tpl/objects/header.pug b/tpl/objects/header.pug deleted file mode 100644 index 0d9d7ee..0000000 --- a/tpl/objects/header.pug +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | mixin header | ||
2 | - | ||
3 | let classes = { | ||
4 | 'o-header': true | ||
5 | } | ||
6 | if (attributes.class) { | ||
7 | classes[attributes.class] = true; | ||
8 | } | ||
9 | |||
10 | header(class=classes) | ||
11 | .o-header__content.t-lo | ||
12 | block | ||
diff --git a/tpl/objects/icon.pug b/tpl/objects/icon.pug index 1ed6052..67bcf37 100644 --- a/tpl/objects/icon.pug +++ b/tpl/objects/icon.pug | |||
@@ -2,8 +2,8 @@ mixin icon(id) | |||
2 | - | 2 | - |
3 | let href = 'icons.svg#' + id | 3 | let href = 'icons.svg#' + id |
4 | let classes = { | 4 | let classes = { |
5 | 'o-icon': true, | 5 | 'o-icon': true, |
6 | 'o-icon--block': attributes.block, | 6 | 'u-d-block': attributes.block, |
7 | } | 7 | } |
8 | if (attributes.class) { | 8 | if (attributes.class) { |
9 | classes[attributes.class] = true; | 9 | classes[attributes.class] = true; |
diff --git a/tpl/objects/sidebar.pug b/tpl/objects/sidebar.pug deleted file mode 100644 index caa0f1f..0000000 --- a/tpl/objects/sidebar.pug +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | mixin sidebar | ||
2 | - | ||
3 | let classes = { | ||
4 | 'o-sidebar': true | ||
5 | } | ||
6 | if (attributes.class) { | ||
7 | classes[attributes.class] = true; | ||
8 | } | ||
9 | |||
10 | aside(class=classes) | ||
11 | .o-sidebar__content.l-overflow | ||
12 | block | ||