mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-08-06 14:16:50 +02:00
@@ -3,8 +3,11 @@ import { Link } from 'react-router-dom';
|
||||
|
||||
import CenterCover from './covers/CenterCover';
|
||||
import Layout from './Layout';
|
||||
import useDocumentTitle from './useDocumentTitle';
|
||||
|
||||
const Home = () => {
|
||||
useDocumentTitle('CSS Layout');
|
||||
|
||||
return (
|
||||
<Layout>
|
||||
<h2 className="f2 lh-copy">Pattern</h2>
|
||||
|
13
client/SampleCode.jsx
Normal file
13
client/SampleCode.jsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
|
||||
import highlight from './helpers/highlight';
|
||||
|
||||
const SampleCode = ({ code, lang }) => {
|
||||
return code === ''
|
||||
? <></>
|
||||
: (
|
||||
<pre className="h-100 lh-copy ma0" dangerouslySetInnerHTML={{ __html: highlight(code, lang) }} />
|
||||
);
|
||||
};
|
||||
|
||||
export default SampleCode;
|
11
client/helpers/highlight.js
Executable file
11
client/helpers/highlight.js
Executable file
@@ -0,0 +1,11 @@
|
||||
import hljs from 'highlight.js';
|
||||
|
||||
const highlight = (input, language) => {
|
||||
const lang = language || 'html';
|
||||
const { value } = hljs.highlight(lang, input);
|
||||
const highlighted = value.replace('&', '&').trim();
|
||||
|
||||
return `<code class="hljs h-100 ${lang}">${highlighted}</code>`;
|
||||
};
|
||||
|
||||
export default highlight;
|
@@ -11,7 +11,6 @@
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
code {
|
||||
border-radius: 4px;
|
||||
font-family: 'Source Code Pro', monospace;
|
||||
font-size: 14px;
|
||||
}
|
||||
@@ -20,5 +19,12 @@
|
||||
<body class="avenir w-100">
|
||||
<div id="root"></div>
|
||||
<script src="./index.jsx"></script>
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-139616701-3"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-139616701-3');
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
@@ -2,15 +2,36 @@ import React from 'react';
|
||||
|
||||
import DetailsLayout from '../DetailsLayout';
|
||||
import BrowserFrame from '../placeholders/BrowserFrame';
|
||||
import SampleCode from '../SampleCode';
|
||||
import useDocumentTitle from '../useDocumentTitle';
|
||||
|
||||
const Centering = () => {
|
||||
useDocumentTitle('CSS Layout ∙ Centering');
|
||||
|
||||
return (
|
||||
<DetailsLayout name="Centering">
|
||||
<BrowserFrame>
|
||||
<div className="h-100 flex flex-column items-center justify-center">
|
||||
<div className="f1 b">CENTER</div>
|
||||
</div>
|
||||
</BrowserFrame>
|
||||
<BrowserFrame
|
||||
content={
|
||||
<div className="h-100 flex flex-column items-center justify-center">
|
||||
<div className="f1 b">CENTER</div>
|
||||
</div>
|
||||
}
|
||||
source={
|
||||
<SampleCode
|
||||
lang="html"
|
||||
code={`
|
||||
<div style="
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
">
|
||||
CENTER
|
||||
</div>
|
||||
`}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
</DetailsLayout>
|
||||
);
|
||||
};
|
||||
|
@@ -1,15 +1,42 @@
|
||||
import React from 'react';
|
||||
import React, { useState } from 'react';
|
||||
|
||||
const BrowserFrame = ({ content, source }) => {
|
||||
const [isContentActive, setContentActive] = useState(true);
|
||||
const flip = () => setContentActive(isActive => !isActive);
|
||||
|
||||
const BrowserFrame = ({ children }) => {
|
||||
return (
|
||||
<div className="br2 ba b--black-20">
|
||||
<div className="flex pa3 bb b--black-20 items-center">
|
||||
<div className="flex pa3 bb b--black-20 items-center bg-black-05">
|
||||
<div className="br-100 mr1 w1 h1 bg-red" />
|
||||
<div className="br-100 mr1 w1 h1 bg-gold" />
|
||||
<div className="br-100 mr1 w1 h1 bg-red" />
|
||||
<div className="ml-auto">
|
||||
<button className="bn pointer bg-dark-blue br2 ph2 pv1 white" onClick={flip}>
|
||||
{isContentActive ? 'Source' : 'Demo'}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div style={{ height: '512px' }}>
|
||||
{children}
|
||||
<div
|
||||
className="relative"
|
||||
style={{
|
||||
height: '512px',
|
||||
transition: 'transform 1s',
|
||||
transformStyle: 'preserve-3d',
|
||||
transform: isContentActive ? '' : 'rotateY(180deg)',
|
||||
}}
|
||||
>
|
||||
<div className="absolute top-0 left-0 h-100 w-100" style={{ backfaceVisibility: 'hidden' }}>
|
||||
{content}
|
||||
</div>
|
||||
<div
|
||||
className="absolute top-0 left-0 h-100 w-100"
|
||||
style={{
|
||||
backfaceVisibility: 'hidden',
|
||||
transform: 'rotateY(180deg)',
|
||||
}}
|
||||
>
|
||||
{source}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
9
client/useDocumentTitle.js
Normal file
9
client/useDocumentTitle.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import { useEffect } from 'react';
|
||||
|
||||
const useDocumentTitle = (title) => {
|
||||
useEffect(() => {
|
||||
document.title = title;
|
||||
}, [title]);
|
||||
};
|
||||
|
||||
export default useDocumentTitle;
|
5
package-lock.json
generated
5
package-lock.json
generated
@@ -4137,6 +4137,11 @@
|
||||
"util-deprecate": "^1.0.2"
|
||||
}
|
||||
},
|
||||
"highlight.js": {
|
||||
"version": "9.16.2",
|
||||
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.16.2.tgz",
|
||||
"integrity": "sha512-feMUrVLZvjy0oC7FVJQcSQRqbBq9kwqnYE4+Kj9ZjbHh3g+BisiPgF49NyQbVLNdrL/qqZr3Ca9yOKwgn2i/tw=="
|
||||
},
|
||||
"history": {
|
||||
"version": "4.10.1",
|
||||
"resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz",
|
||||
|
@@ -6,6 +6,7 @@
|
||||
"postbuild": "react-snap"
|
||||
},
|
||||
"dependencies": {
|
||||
"highlight.js": "^9.16.2",
|
||||
"react": "^16.12.0",
|
||||
"react-dom": "^16.12.0",
|
||||
"react-router-dom": "^5.1.2",
|
||||
|
Reference in New Issue
Block a user