Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UI Framework][K7]: Badge component #13520

Merged
merged 3 commits into from
Aug 15, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions ui_framework/dist/ui_framework_theme_dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,66 @@ table {
width: 64px;
height: 64px; }

.kuiBadge {
font-size: 12px;
line-height: 24px;
display: inline-block;
text-decoration: none;
border: solid 1px transparent;
border-radius: 24px;
padding: 0 8px;
background-color: transparent;
white-space: nowrap;
vertical-align: middle; }
.kuiBadge .kuiBadge__content {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; }
.kuiBadge .kuiBadge__icon {
margin-left: 4px; }
.kuiBadge.kuiBadge--iconLeft .kuiBadge__content {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse; }
.kuiBadge.kuiBadge--iconLeft .kuiBadge__content .kuiBadge__icon {
margin-right: 4px;
margin-left: 0; }

.kuiBadge--default {
border-color: #444;
background-color: rgba(68, 68, 68, 0.1); }

.kuiBadge--primary {
border-color: #4da1c0;
background-color: rgba(77, 161, 192, 0.1); }

.kuiBadge--secondary {
border-color: #00A69B;
background-color: rgba(0, 166, 155, 0.1); }

.kuiBadge--warning {
border-color: #E5830E;
background-color: rgba(229, 131, 14, 0.1); }

.kuiBadge--danger {
border-color: #bf4d4d;
background-color: rgba(191, 77, 77, 0.1); }

.kuiBadge--accent {
border-color: #DD0A73;
background-color: rgba(221, 10, 115, 0.1); }

.kuiButton {
display: inline-block;
-webkit-appearance: none;
Expand Down
60 changes: 60 additions & 0 deletions ui_framework/dist/ui_framework_theme_light.css
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,66 @@ table {
width: 64px;
height: 64px; }

.kuiBadge {
font-size: 12px;
line-height: 24px;
display: inline-block;
text-decoration: none;
border: solid 1px transparent;
border-radius: 24px;
padding: 0 8px;
background-color: transparent;
white-space: nowrap;
vertical-align: middle; }
.kuiBadge .kuiBadge__content {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; }
.kuiBadge .kuiBadge__icon {
margin-left: 4px; }
.kuiBadge.kuiBadge--iconLeft .kuiBadge__content {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse; }
.kuiBadge.kuiBadge--iconLeft .kuiBadge__content .kuiBadge__icon {
margin-right: 4px;
margin-left: 0; }

.kuiBadge--default {
border-color: #D9D9D9;
background-color: rgba(217, 217, 217, 0.1); }

.kuiBadge--primary {
border-color: #0079a5;
background-color: rgba(0, 121, 165, 0.1); }

.kuiBadge--secondary {
border-color: #00A69B;
background-color: rgba(0, 166, 155, 0.1); }

.kuiBadge--warning {
border-color: #E5830E;
background-color: rgba(229, 131, 14, 0.1); }

.kuiBadge--danger {
border-color: #A30000;
background-color: rgba(163, 0, 0, 0.1); }

.kuiBadge--accent {
border-color: #DD0A73;
background-color: rgba(221, 10, 115, 0.1); }

.kuiButton {
display: inline-block;
-webkit-appearance: none;
Expand Down
7 changes: 7 additions & 0 deletions ui_framework/doc_site/src/services/routes/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import Slugify from '../string/slugify';
import AccessibilityExample
from '../../views/accessibility/accessibility_example';

import BadgeExample
from '../../views/badge/badge_example';

import ButtonExample
from '../../views/button/button_example';

Expand Down Expand Up @@ -63,6 +66,10 @@ const components = [{
name: 'Button',
component: ButtonExample,
hasReact: true,
}, {
name: 'Badge',
component: BadgeExample,
hasReact: true,
}, {
name: 'CallOut',
component: CallOutExample,
Expand Down
44 changes: 44 additions & 0 deletions ui_framework/doc_site/src/views/badge/badge.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import React from 'react';

import {
KuiBadge,
} from '../../../../components';

export default () => (
<div>
<KuiBadge type="default">
Default
</KuiBadge>

&nbsp;&nbsp;

<KuiBadge type="primary">
Primary
</KuiBadge>

&nbsp;&nbsp;

<KuiBadge type="secondary">
Secondary
</KuiBadge>

&nbsp;&nbsp;

<KuiBadge type="accent">
Accent
</KuiBadge>

&nbsp;&nbsp;

<KuiBadge type="warning">
Warning
</KuiBadge>

&nbsp;&nbsp;

<KuiBadge type="danger">
Danger
</KuiBadge>
</div>

);
61 changes: 61 additions & 0 deletions ui_framework/doc_site/src/views/badge/badge_example.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
import React from 'react';

import { renderToHtml } from '../../services';

import {
GuideDemo,
GuidePage,
GuideSection,
GuideSectionTypes,
GuideText,
} from '../../components';

import Badge from './badge';
const badgeSource = require('!!raw!./badge');
const badgeHtml = renderToHtml(Badge);

import BadgeWithIcon from './badge_with_icon';
const badgeWithIconSource = require('!!raw!./badge_with_icon');
const badgeWithIconHtml = renderToHtml(BadgeWithIcon);

export default props => (
<GuidePage title={props.route.name}>
<GuideSection
title="Badge"
source={[{
type: GuideSectionTypes.JS,
code: badgeSource,
}, {
type: GuideSectionTypes.HTML,
code: badgeHtml,
}]}
>
<GuideText>
Description needed: how to use the Badge component.
</GuideText>

<GuideDemo>
<Badge />
</GuideDemo>
</GuideSection>

<GuideSection
title="Badge with Icon"
source={[{
type: GuideSectionTypes.JS,
code: badgeWithIconSource,
}, {
type: GuideSectionTypes.HTML,
code: badgeWithIconHtml,
}]}
>
<GuideText>
Description needed: how to use the Badge component.
</GuideText>

<GuideDemo>
<BadgeWithIcon />
</GuideDemo>
</GuideSection>
</GuidePage>
);
22 changes: 22 additions & 0 deletions ui_framework/doc_site/src/views/badge/badge_with_icon.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import React from 'react';

import {
KuiBadge,
} from '../../../../components';

export default () => (
<div>

<KuiBadge iconType="cross">
Primary
</KuiBadge>

&nbsp;&nbsp;

<KuiBadge type="primary" iconType="user" iconSide="left">
Secondary
</KuiBadge>

</div>

);
49 changes: 49 additions & 0 deletions ui_framework/src/components/badge/_badge.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
.kuiBadge {
font-size: $kuiSizeM;
line-height: $kuiSizeL;
display: inline-block;
text-decoration: none;
border: solid 1px transparent;
border-radius: $kuiSizeL;
padding: 0 $kuiSizeS;
background-color: transparent;
white-space: nowrap;
vertical-align: middle;

.kuiBadge__content {
display: flex;
justify-content: center;
align-items: center;
}

.kuiBadge__icon {
margin-left: $kuiSizeXS;
}

&.kuiBadge--iconLeft .kuiBadge__content {
flex-direction: row-reverse;

.kuiBadge__icon {
margin-right: $kuiSizeXS;
margin-left: 0;
}
}
}


// Modifier naming and colors.
$badgeTypes: (
default: $kuiColorLightShade,
primary: $kuiColorPrimary,
secondary: $kuiColorSecondary,
warning: $kuiColorWarning,
danger: $kuiColorDanger,
accent: $kuiColorAccent
);

@each $name, $color in $badgeTypes {
.kuiBadge--#{$name} {
border-color: $color;
background-color: transparentize($color, .9);
}
}
1 change: 1 addition & 0 deletions ui_framework/src/components/badge/_index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'badge';
Loading