Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit bb43a0b

Browse files
committed
feat(badge): added badge component
1 parent b2d77b4 commit bb43a0b

File tree

8 files changed

+150
-50
lines changed

8 files changed

+150
-50
lines changed

src/App.vue

+6-43
Original file line numberDiff line numberDiff line change
@@ -2,50 +2,17 @@
22
<theme-provider :theme="theme" :icons="$kiwi.icons">
33
<div class="root">
44
<div class="wrapper">
5-
6-
<Alert mb="3" status="error">
7-
<AlertIcon />
8-
There was an error processing your request
9-
</Alert>
10-
11-
<Alert mb="3" status="success">
12-
<AlertIcon />
13-
Data uploaded to the server. Fire on!
14-
</Alert>
15-
16-
<Alert mb="3" status="warning">
17-
<AlertIcon />
18-
Seems your account is about expire, upgrade now
19-
</Alert>
20-
21-
<Alert mb="3" status="info">
22-
<AlertIcon />
23-
Chakra is going live on August 30th. Get ready!
24-
</Alert>
25-
26-
<Alert
27-
status="success"
28-
variant="subtle"
29-
flexDirection="column"
30-
justifyContent="center"
31-
textAlign="center"
32-
height="200px"
33-
>
34-
<AlertIcon size="40px" mr="0" />
35-
<AlertTitle mt="4" mb="1" fontSize="lg">
36-
Application submitted!
37-
</AlertTitle>
38-
<AlertDescription maxWidth="sm">
39-
Thanks for submitting your application. Our team will get back to you soon.
40-
</AlertDescription>
41-
</Alert>
5+
<Badge mx="2">Default</Badge>
6+
<Badge mx="2" variant-color="green">Success</Badge>
7+
<Badge mx="2" variant-color="red">Removed</Badge>
8+
<Badge mx="2" variant-color="indigo">New</Badge>
429
</div>
4310
</div>
4411
</theme-provider>
4512
</template>
4613

4714
<script>
48-
import { ThemeProvider, Alert, AlertIcon, AlertTitle, AlertDescription } from './lib/core/'
15+
import { ThemeProvider, Badge } from './lib/core/'
4916
import theme from './lib/theme'
5017
5118
export default {
@@ -59,10 +26,7 @@ export default {
5926
name: 'App',
6027
components: {
6128
ThemeProvider,
62-
Alert,
63-
AlertIcon,
64-
AlertTitle,
65-
AlertDescription
29+
Badge
6630
},
6731
methods: {
6832
toggle () {
@@ -100,7 +64,6 @@ body {
10064
10165
.wrapper {
10266
display: flex;
103-
flex-direction: column;
10467
justify-content: center;
10568
}
10669
}

src/components/Badge/badge.styles.js

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
import { addOpacity, generateAlphas, get } from '../../lib/utils'
2+
3+
const solidStyle = ({ theme: { colors }, color }) => {
4+
const _color = colors[color] && colors[color][500]
5+
const darkModeBg = addOpacity(_color, 0.6)
6+
return {
7+
light: {
8+
bg: get(color, 500),
9+
color: 'white'
10+
},
11+
dark: {
12+
bg: darkModeBg,
13+
color: 'whiteAlpha.800'
14+
}
15+
}
16+
}
17+
18+
const subtleStyle = ({ theme: { colors }, color }) => {
19+
const _color = colors[color] && colors[color][200]
20+
const alphaColors = generateAlphas(_color)
21+
const darkModeBg = alphaColors[300]
22+
23+
return {
24+
light: {
25+
bg: get(color, 100),
26+
color: get(color, 800)
27+
},
28+
dark: {
29+
bg: darkModeBg,
30+
color: get(color, 200)
31+
}
32+
}
33+
}
34+
35+
const outlineStyle = ({ theme: { colors }, color }) => {
36+
const _color = colors[color] && colors[color][200]
37+
const darkModeColor = addOpacity(_color, 0.8)
38+
const boxShadowColor = colors[color] && colors[color][500]
39+
return {
40+
light: {
41+
boxShadow: `inset 0 0 0px 1px ` + boxShadowColor,
42+
color: get(color, 500)
43+
},
44+
dark: {
45+
boxShadow: `inset 0 0 0px 1px ` + darkModeColor,
46+
color: darkModeColor
47+
}
48+
}
49+
}
50+
51+
const variantProps = props => {
52+
const { variant, colorMode } = props
53+
switch (variant) {
54+
case 'solid':
55+
return solidStyle(props)[colorMode]
56+
case 'subtle':
57+
return subtleStyle(props)[colorMode]
58+
case 'outline':
59+
return outlineStyle(props)[colorMode]
60+
default:
61+
return {}
62+
}
63+
}
64+
65+
const useBadgeStyle = props => {
66+
return variantProps(props)
67+
}
68+
69+
export default useBadgeStyle

src/components/Badge/index.d.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import Vue from 'vue'
2+
3+
export interface IBadge {
4+
/**
5+
* The color scheme of the badge
6+
*/
7+
variantColor?: string;
8+
/**
9+
* The variant of the badge
10+
*/
11+
variant?: "solid" | "subtle" | "outline";
12+
}
13+
14+
/**
15+
* The Badge component is used for state, general text, and number labels.
16+
*/
17+
declare const Badge: Vue.Component<{}>;
18+
19+
export default Badge;

src/components/Badge/index.js

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
import { Box } from '../../lib/core/'
2+
import { forwardProps } from '../../lib/utils'
3+
import { baseProps } from '../../lib/config/props'
4+
import useBadgeStyles from './badge.styles'
5+
6+
export default {
7+
name: 'Badge',
8+
inject: ['$theme', '$colorMode'],
9+
props: {
10+
variant: {
11+
type: String,
12+
default: 'subtle'
13+
},
14+
variantColor: {
15+
type: String,
16+
default: 'gray'
17+
},
18+
_ref: {
19+
type: HTMLElement
20+
},
21+
...baseProps
22+
},
23+
render (h) {
24+
const badgeStyleProps = useBadgeStyles({
25+
theme: this.$theme(),
26+
colorMode: this.$colorMode,
27+
color: this.variantColor,
28+
variant: this.variant
29+
})
30+
31+
return h(Box, {
32+
props: {
33+
d: 'inline-block',
34+
textTransform: 'uppercase',
35+
fontSize: 'xs',
36+
px: 1,
37+
rounded: 'sm',
38+
fontWeight: 'bold',
39+
whiteSpace: 'nowrap',
40+
verticalAlign: 'middle',
41+
...badgeStyleProps,
42+
...forwardProps(this.$props)
43+
}
44+
}, this.$slots.default)
45+
}
46+
}

src/components/Badge/index.vue

-6
This file was deleted.

src/lib/core/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ export { default as VisuallyHidden } from '../../components/VisuallyHidden'
99
export { default as TransitionExpand } from '../../components/TransitionExpand'
1010
export { default as Text } from '../../components/Text'
1111
export * from '../../components/Alert'
12+
export { default as Badge } from '../../components/Badge'

src/lib/utils/color.js

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
// import css from '@styled-system/css'
22
import Color from 'color'
33

4+
/**
5+
* @description Gets color value from theme
6+
* @param {String} color
7+
* @param {Number} hue
8+
* @returns {String} color
9+
*/
10+
export const get = (color, hue) => `${color}.${hue}`
11+
412
/**
513
* @description Add opacity to a color
614
* @param {String} color Hex color code

src/lib/utils/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ export { default as Logger } from './logger'
22
export { provideTheme } from './provide-theme'
33
export { transformAlias as tx } from './transform'
44
export { pickProperty as forwardProps, filterPseudo } from './object'
5-
export { addOpacity, colorEmphasis, generateAlphas } from './color'
5+
export { addOpacity, colorEmphasis, generateAlphas, get } from './color'
66
export { parsePackIcons } from './icons'

0 commit comments

Comments
 (0)