summaryrefslogtreecommitdiffstats
path: root/tpl/objects/action-button.pug
blob: c3a9b5373cafe45c2ac0a148fc94f0558c98814d (plain) (blame)
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
include icon.pug

mixin action-button
    -
        let classes = {
            'o-action-button':        true,
            'u-d-block':              attributes.block,
            'o-action-button--quiet': attributes.quiet,
            'o-action-button--pill':  attributes.pill,
            'o-action-button--icon':  !!attributes.icon && !block,
            'is-selected':            attributes.selected
        }
        if (attributes.theme) {
            classes['o-action-button--' + attributes.theme] = true
        }
        if (attributes.size) {
            classes['o-action-button--' + attributes.size] = true
        }
        if (attributes.class) {
            classes[attributes.class] = true;
        }

        let href = attributes.disabled ? null : '#';

    a(class=classes href=href)
        if attributes.icon
            +icon(attributes.icon)
            = ' '
        block