2020-01-09 22:11:00 +00:00
|
|
|
import mustache from 'mustache';
|
2020-02-17 19:49:43 +00:00
|
|
|
import { navTemplate, NAVIGATION_TEMPLATE_DATA,
|
2020-02-28 22:17:31 +00:00
|
|
|
NAVIGATION_TEMPLATE_PARTIALS } from './Navigation.stories.data';
|
2020-01-09 22:11:00 +00:00
|
|
|
import '../.storybook/common.less';
|
2020-02-28 20:06:33 +00:00
|
|
|
import '../resources/skins.vector.styles/Navigation.less';
|
2020-01-09 22:11:00 +00:00
|
|
|
|
|
|
|
export default {
|
2020-02-14 20:33:54 +00:00
|
|
|
title: 'Navigation (Header + Sidebar)'
|
2020-01-09 22:11:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const navigationLoggedOutWithVariants = () => mustache.render( navTemplate,
|
2020-02-17 19:49:43 +00:00
|
|
|
NAVIGATION_TEMPLATE_DATA.loggedOutWithVariants,
|
|
|
|
NAVIGATION_TEMPLATE_PARTIALS
|
2020-01-09 22:11:00 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
export const navigationLoggedInWithMore = () => mustache.render( navTemplate,
|
2020-02-17 19:49:43 +00:00
|
|
|
NAVIGATION_TEMPLATE_DATA.loggedInWithMoreActions,
|
|
|
|
NAVIGATION_TEMPLATE_PARTIALS
|
2020-01-09 22:11:00 +00:00
|
|
|
);
|