-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.stories-2z1Lrqhr.js
More file actions
67 lines (64 loc) · 1.71 KB
/
profile.stories-2z1Lrqhr.js
File metadata and controls
67 lines (64 loc) · 1.71 KB
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
import { b } from './lit-element-xPuJNNul.js';
import { g as getBaseUrl, b as FALLBACK_USER_SLUGS } from './slugs-W7dhRCvL.js';
import './state-CRAeqyPl.js';
const meta = {
title: 'Components/Profile',
component: 'rubyevents-profile',
argTypes: {
slug: {
control: 'select',
options: FALLBACK_USER_SLUGS,
description: 'The slug of the profile to display',
},
'base-url': {
control: 'text',
description: 'Base URL for the RubyEvents API',
},
'show-footer': {
control: 'boolean',
description: 'Whether to show the "Powered by" footer',
},
},
args: {
slug: 'marcoroth',
'base-url': getBaseUrl(),
'show-footer': true,
},
};
const Default = {
render: args => b `
<rubyevents-profile
slug=${args.slug}
base-url=${args['base-url']}
.showFooter=${args['show-footer']}
></rubyevents-profile>
`,
parameters: {
docs: {
source: {
code: `<rubyevents-profile slug="marcoroth" show-footer></rubyevents-profile>`,
},
},
},
};
const WithoutFooter = {
args: {
'show-footer': false,
},
render: args => b `
<rubyevents-profile
slug=${args.slug}
base-url=${args['base-url']}
.showFooter=${args['show-footer']}
></rubyevents-profile>
`,
parameters: {
docs: {
source: {
code: `<rubyevents-profile slug="marcoroth"></rubyevents-profile>`,
},
},
},
};
const __namedExportsOrder = ['Default', 'WithoutFooter'];
export { Default, WithoutFooter, __namedExportsOrder, meta as default };