@skhemata/skhemata-faq
Version:
Skhemata FAQ Web Component. This web component provides website FAQ functionality with question and answer style of FAQ.
66 lines (62 loc) • 1.58 kB
text/typescript
import { html } from '@skhemata/skhemata-base';
import '../skhemata-faq.js';
import { argTypes, ArgTypes, Story } from './argTypes.js';
export default {
title: 'Wordpress/SkhemataFaq/SkhemataFaqList',
component: 'skhemata-faq',
argTypes: {
apiWordpress: argTypes.apiWordpress,
postsPerPage: argTypes.postsPerPage,
pagerType: argTypes.pagerType,
navigate: argTypes.navigate,
skhemataFaqTextColor: argTypes.skhemataFaqTextColor,
skhemataFaqListTitleColor: argTypes.skhemataFaqListTitleColor,
},
};
const Template: Story<ArgTypes> = ({
apiWordpress = {
url: 'https://wp.thrinacia.com/wp-json/wp/v2',
},
postsPerPage = 10,
pagerType = 'infinite',
skhemataFaqTextColor,
skhemataFaqListTitleColor,
}: ArgTypes) => html`
<style>
body {
--skhemata-faq-text-color: ${skhemataFaqTextColor};
--skhemata-faq-list-title-color: ${skhemataFaqListTitleColor};
}
</style>
<skhemata-faq-list
.apiWordpress=${apiWordpress}
.postsPerPage=${postsPerPage}
.pagerType=${pagerType}
>
</skhemata-faq-list>
`;
export const Example = Template.bind({});
Example.args = {
apiWordpress: {
url: 'https://wp.thrinacia.com/wp-json/wp/v2',
},
postsPerPage: 10,
pagerType: "infinite",
};
Example.parameters = {
docs: {
source: {
code: `
<skhemata-faq-list
api-wordpress="${JSON.stringify(Example.args.apiWordpress, null, 2).replace(
/"/g,
'\\"'
)}"
posts-per-page="${Example.args.postsPerPage}"
pager-type="${Example.args.pagerType}"
>
</skhemata-faq-list>
`,
},
},
};