Reuse divs in Centered addon

This commit is contained in:
igor-dv 2018-04-25 12:19:17 +03:00
parent e3c8db4dfd
commit 902a0cb8ba
5 changed files with 54 additions and 71 deletions

View File

@ -1,27 +1,34 @@
import { document, Node } from 'global';
import styles from './styles';
const style = {
position: 'fixed',
top: 0,
left: 0,
bottom: 0,
right: 0,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
overflow: 'auto',
};
const INNER_ID = 'sb-addon-centered-inner';
const WRAPPER_ID = 'sb-addon-centered-wrapper';
const innerStyle = {
margin: 'auto',
};
function getOrCreate(id, style) {
const elementOnDom = document.getElementById(id);
if (elementOnDom) {
return elementOnDom;
}
const element = document.createElement('div');
element.setAttribute('id', id);
Object.assign(element.style, style);
return element;
}
function getInnerDiv() {
return getOrCreate(INNER_ID, styles.innerStyle);
}
function getWrapperDiv() {
return getOrCreate(WRAPPER_ID, styles.style);
}
export default function(storyFn) {
const inner = document.createElement('div');
Object.assign(inner.style, innerStyle);
const wrapper = document.createElement('div');
Object.assign(wrapper.style, style);
const inner = getInnerDiv();
const wrapper = getWrapperDiv();
wrapper.appendChild(inner);
const component = storyFn();
@ -29,6 +36,7 @@ export default function(storyFn) {
if (typeof component === 'string') {
inner.innerHTML = component;
} else if (component instanceof Node) {
inner.innerHTML = '';
inner.appendChild(component);
} else {
return component;

View File

@ -2,28 +2,13 @@
// eslint-disable-next-line import/no-extraneous-dependencies
import m from 'mithril';
const style = {
position: 'fixed',
top: 0,
left: 0,
bottom: 0,
right: 0,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
overflow: 'auto',
};
const innerStyle = {
margin: 'auto',
};
import styles from './styles';
export default function(storyFn) {
return {
view: () => (
<div style={style}>
<div style={innerStyle}>{m(storyFn())}</div>
<div style={styles.style}>
<div style={styles.innerStyle}>{m(storyFn())}</div>
</div>
),
};

View File

@ -1,26 +1,11 @@
// eslint-disable-next-line import/no-extraneous-dependencies
import React from 'react';
const style = {
position: 'fixed',
top: 0,
left: 0,
bottom: 0,
right: 0,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
overflow: 'auto',
};
const innerStyle = {
margin: 'auto',
};
import styles from './styles';
export default function(storyFn) {
return (
<div style={style}>
<div style={innerStyle}>{storyFn()}</div>
<div style={styles.style}>
<div style={styles.innerStyle}>{storyFn()}</div>
</div>
);
}

View File

@ -0,0 +1,18 @@
const styles = {
style: {
position: 'fixed',
top: 0,
left: 0,
bottom: 0,
right: 0,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
overflow: 'auto',
},
innerStyle: {
margin: 'auto',
},
};
export default styles;

View File

@ -1,3 +1,5 @@
import styles from './styles';
export default function() {
return {
template: `
@ -8,22 +10,7 @@ export default function() {
</div>
`,
data() {
return {
style: {
position: 'fixed',
top: 0,
left: 0,
bottom: 0,
right: 0,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
overflow: 'auto',
},
innerStyle: {
margin: 'auto',
},
};
return styles;
},
};
}