Skip to content

Commit 2089252

Browse files
feat(card): functional components for card (#827)
* [WIP] feat(card): functional components for card 🎴 * remove all block refs & use body * refactor: remove inverse & add textVariant * chore: add indent guide to eslint * fix(card-group): remove excess function * chore: add switch case indentation * feat(card): add bordered props to header/footer * fix(card): rm defunct tests * feat(card): add header/footer text variant props * refactor(card): rm .vue version of card * [caqrd] update comment * feat(card): new card-img FC * refactor(card): show off feat in readme * refactor: move examples to fixtures
1 parent 8e6fc42 commit 2089252

File tree

127 files changed

+510
-316
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+510
-316
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ module.exports = {
8585
'id-blacklist': 'error',
8686
'id-length': 'off',
8787
'id-match': 'error',
88-
'indent': 'off',
88+
'indent': ['warn', 4, { "SwitchCase": 1 }],
8989
'init-declarations': 'off',
9090
'jsx-quotes': 'off',
9191
'key-spacing': 'off',

docs/components/card/README.md

+20-17

examples/card/demo.html

-49
This file was deleted.

examples/tooltip/demo.js

-3
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

fixtures/card/demo.html

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<div id="app">
2+
<!-- Simple -->
3+
<b-card class="mb-2"
4+
variant="success"
5+
ref="simple_card">Simple Card</b-card>
6+
7+
<!-- Standard -->
8+
<b-card :header="headerText"
9+
class="mb-2"
10+
title="Card title"
11+
sub-title="Card subtitle"
12+
ref="standard_card">
13+
<small slot="footer"
14+
class="text-muted">
15+
Last updated 3 mins ago
16+
</small>
17+
</b-card>
18+
19+
<!-- Leave this example with a single child for testing -->
20+
<b-card no-body
21+
ref="no_body">
22+
<div id="no_body_default_slot"
23+
ref="no_body_default_slot">No body</div>
24+
</b-card>
25+
26+
<!-- With image -->
27+
<b-card :img="img0"
28+
title="Skulls are nice"
29+
class="mb-2"
30+
ref="img_card">
31+
This is my opinion :)
32+
</b-card>
33+
34+
<!-- Overlay image -->
35+
<b-card overlay
36+
:img="img1"
37+
class="mb-2"
38+
ref="img_overlay_card">
39+
Overlay cards are cute!
40+
</b-card>
41+
42+
<b-card-group tag="section"
43+
ref="card_group">
44+
<b-card tag="article"
45+
title="Groupie"
46+
title-tag="h1"
47+
id="title-tag-test"></b-card>
48+
<b-card tag="article"
49+
sub-title="Groupie"
50+
sub-title-tag="h2"
51+
id="sub-title-tag-test"></b-card>
52+
</b-card-group>
53+
</div>

fixtures/card/demo.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
window.app = new Vue({
2+
el: "#app",
3+
data: {
4+
headerText: "Card header text",
5+
img0: "http://placeskull.com/200/200/ABABAB/-1/0",
6+
img1: "http://placeskull.com/200/200/E8117F/-1/0",
7+
}
8+
})
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

lib/components/card-footer.js

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
import { mergeData } from "../utils";
2+
3+
export const props = {
4+
footer: {
5+
type: String,
6+
default: null
7+
},
8+
footerBordered: {
9+
type: Boolean,
10+
default: false
11+
},
12+
footerVariant: {
13+
type: String,
14+
default: null
15+
},
16+
footerTextVariant: {
17+
type: String,
18+
default: null
19+
},
20+
footerClass: {
21+
type: [String, Object, Array],
22+
default: null
23+
},
24+
footerTag: {
25+
type: String,
26+
default: "div"
27+
}
28+
};
29+
30+
export default {
31+
functional: true,
32+
props,
33+
render(h, { props, data, slots }) {
34+
const variantPrefix = props.footerBordered ? "border-" : "bg-";
35+
36+
return h(
37+
props.footerTag,
38+
mergeData(data, {
39+
staticClass: "card-footer",
40+
class: [
41+
props.footerClass,
42+
{
43+
[variantPrefix + props.footerVariant]: Boolean(props.footerVariant),
44+
[`text-${props.footerTextVariant}`]: Boolean(props.footerTextVariant)
45+
}
46+
]
47+
}),
48+
slots().default || [h("div", { domProps: { innerHTML: props.footer } })]
49+
);
50+
}
51+
};

lib/components/card-group.js

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { mergeData } from "../utils";
2+
3+
export const props = {
4+
tag: {
5+
type: String,
6+
default: "div"
7+
},
8+
deck: {
9+
type: Boolean,
10+
default: false
11+
},
12+
columns: {
13+
type: Boolean,
14+
default: false
15+
}
16+
};
17+
18+
export default {
19+
functional: true,
20+
props,
21+
render(h, { props, data, children }) {
22+
let staticClass = "card-group";
23+
if (props.columns) {
24+
staticClass = "card-columns";
25+
}
26+
if (props.deck) {
27+
staticClass = "card-deck";
28+
}
29+
30+
return h(props.tag, mergeData(data, { staticClass }), children);
31+
}
32+
};

0 commit comments

Comments
 (0)