forked from LeCoupa/vuedarkmode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseBadge.vue
109 lines (95 loc) · 2.25 KB
/
BaseBadge.vue
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!-- *************************************************************************
TEMPLATE
************************************************************************* -->
<template lang="pug">
span(
@click="onClick(id, $event)"
:class=`[
"dm-base-badge",
"dm-base-badge--" + color,
"dm-base-badge--" + size
]`
:id="id"
): slot
</template>
<!-- *************************************************************************
SCRIPT
************************************************************************* -->
<script>
export default {
props: {
color: {
type: String,
default: "blue",
validator(x) {
return (
[
"black",
"blue",
"green",
"orange",
"purple",
"red",
"turquoise",
"white"
].indexOf(x) !== -1
);
}
},
id: {
type: String,
default: null
},
size: {
type: String,
default: "default",
validator(x) {
return (
["mini", "small", "default", "medium", "large"].indexOf(x) !== -1
);
}
}
},
methods: {
// --> EVENT LISTENERS <--
onClick(id, event) {
this.$emit("click", id, event);
}
}
};
</script>
<!-- *************************************************************************
STYLE
************************************************************************* -->
<style lang="scss">
@import "assets/settings/_settings.colors.scss";
$c: ".dm-base-badge";
$colors: black, blue, green, orange, purple, red, turquoise, white;
$sizes: mini, small, default, medium, large;
#{$c} {
display: inline-block;
border-width: 1px;
border-style: solid;
border-radius: 100px;
color: $white;
text-transform: uppercase;
font-family: "Heebo", "Helvetica Neue", Source Sans Pro, Helvetica, Arial,
sans-serif;
user-select: none;
// --> COLORS <--
@each $color in $colors {
&--#{$color} {
border-color: map-get($mainColors, $color);
}
}
// --> SIZES <--
@each $size in $sizes {
$i: index($sizes, $size) - 1;
&--#{$size} {
padding: 0 (10px + 1px * $i);
font-size: 12 + (1px * $i);
line-height: 20px + (2px * $i);
}
}
}
</style>