From fe6454d108bd988bd795b25dfe8b45b5aceb0489 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 11 May 2018 20:15:06 +1000 Subject: [PATCH] Adjust deep import logic --- public/input/Inputs.jsx | 28 ++++++++++++++++++++++++++++ public/page/home/Homepage.jsx | 12 ++++++------ public/section/Sections.jsx | 30 ++++++++++++++++++++++++++++++ public/styles/index.scss | 1 + public/styles/objects/title.scss | 19 +++++++++++++++++++ public/typography/Typography.jsx | 30 ++++++++++++++++++++++++++++++ 6 files changed, 114 insertions(+), 6 deletions(-) create mode 100644 public/input/Inputs.jsx create mode 100644 public/section/Sections.jsx create mode 100644 public/styles/objects/title.scss create mode 100644 public/typography/Typography.jsx diff --git a/public/input/Inputs.jsx b/public/input/Inputs.jsx new file mode 100644 index 0000000..3ad1169 --- /dev/null +++ b/public/input/Inputs.jsx @@ -0,0 +1,28 @@ +// Copyright (c) 2018 Dominic Masters +// +// MIT License +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +import Button from './button/Button'; + +export { + Button +}; diff --git a/public/page/home/Homepage.jsx b/public/page/home/Homepage.jsx index a8ccd76..1871c41 100644 --- a/public/page/home/Homepage.jsx +++ b/public/page/home/Homepage.jsx @@ -23,10 +23,10 @@ import React from 'react'; import Page from './../Page'; -import VideoSection from './../../section/video/VideoSection'; -import Section from './../../section/Section'; +import { Section, VideoSection } from './../../section/Sections'; import FloatingContentBox from './../../content/FloatingContentBox'; -import Button from './../../input/button/Button'; +import { Button } from './../../input/Inputs'; +import { Title, Subtitle } from './../../typography/Typography'; class Homepage extends React.Component { constructor(props) { @@ -37,9 +37,9 @@ class Homepage extends React.Component { return ( - -

My Cool Page

-

Lorem ipsum dolor

+ + My Cool Page + Lorem ipsum dolor
diff --git a/public/section/Sections.jsx b/public/section/Sections.jsx new file mode 100644 index 0000000..e4a466f --- /dev/null +++ b/public/section/Sections.jsx @@ -0,0 +1,30 @@ +// Copyright (c) 2018 Dominic Masters +// +// MIT License +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +import Section from './Section'; +import VideoSection from './video/VideoSection'; + +export { + Section, + VideoSection +}; diff --git a/public/styles/index.scss b/public/styles/index.scss index 086abda..21e9acc 100644 --- a/public/styles/index.scss +++ b/public/styles/index.scss @@ -54,6 +54,7 @@ //Objects @import './objects/main.scss'; +@import './objects/title.scss'; @import './objects/_app.scss'; @import './objects/_button.scss'; diff --git a/public/styles/objects/title.scss b/public/styles/objects/title.scss new file mode 100644 index 0000000..b58cb35 --- /dev/null +++ b/public/styles/objects/title.scss @@ -0,0 +1,19 @@ +/* + * Title + * Title Headings + * + * Version: + * 1.0.0 - 2018/05/11 + */ +.o-title { + font-size: 3em; + margin-bottom: 0.25em; + + + .o-subtitle { + margin-top: 0em; + } +} + +.o-subtitle { + font-size: 1.2em; +} diff --git a/public/typography/Typography.jsx b/public/typography/Typography.jsx new file mode 100644 index 0000000..ffaa0bd --- /dev/null +++ b/public/typography/Typography.jsx @@ -0,0 +1,30 @@ +// Copyright (c) 2018 Dominic Masters +// +// MIT License +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +import Title from './Title'; +import Subtitle from './Subtitle'; + +export { + Title, + Subtitle +}