diff --git a/public/image/Image.jsx b/public/image/Image.jsx index f192464..f74ac72 100644 --- a/public/image/Image.jsx +++ b/public/image/Image.jsx @@ -32,6 +32,9 @@ export default class Image extends React.Component { let sourceElements = []; let sources = {}; + let defaultSrc = this.props.src; + let defaultAlt = this.props.alt; + if(this.props.sources) { //Iterate over supplied sources for(let i = 0; i < this.props.sources.length; i++) { @@ -39,6 +42,9 @@ export default class Image extends React.Component { let w = x.size; sources[w] = sources[w] || []; sources[w].push(x); + + defaultSrc = defaultSrc || x.src; + defaultAlt = defaultAlt || x.alt; } //Now map to components I guess @@ -55,7 +61,7 @@ export default class Image extends React.Component { } sourceElements.push( - + ); } } diff --git a/public/images/test/1280x1280.png b/public/images/test/1280x1280.png new file mode 100644 index 0000000..bb4ca91 Binary files /dev/null and b/public/images/test/1280x1280.png differ diff --git a/public/images/test/320x320.png b/public/images/test/320x320.png new file mode 100644 index 0000000..cc69ba7 Binary files /dev/null and b/public/images/test/320x320.png differ diff --git a/public/images/test/320x320x2.png b/public/images/test/320x320x2.png new file mode 100644 index 0000000..b15d2e7 Binary files /dev/null and b/public/images/test/320x320x2.png differ diff --git a/public/images/test/640x640.png b/public/images/test/640x640.png new file mode 100644 index 0000000..345f380 Binary files /dev/null and b/public/images/test/640x640.png differ diff --git a/public/images/test/img_red.png b/public/images/test/img_red.png new file mode 100644 index 0000000..bd50e54 Binary files /dev/null and b/public/images/test/img_red.png differ diff --git a/public/page/home/Homepage.jsx b/public/page/home/Homepage.jsx index 5084f73..fac00ea 100644 --- a/public/page/home/Homepage.jsx +++ b/public/page/home/Homepage.jsx @@ -23,23 +23,34 @@ import React from 'react'; import Page, { PageBoundary } from './../Page'; -import Section, { VideoSection } from './../../section/Section'; +import Section, { ImageSection } from './../../section/Section'; import FloatingContentBox from './../../content/FloatingContentBox'; import { Button } from './../../input/Inputs'; +import Image from './../../image/Image'; import { Title, Subtitle } from './../../typography/Typography'; export default function() { return ( - - - + + + My Cool Page Lorem ipsum dolor - +
Lorem diff --git a/public/section/Section.jsx b/public/section/Section.jsx index 5ebf9de..3df6efe 100644 --- a/public/section/Section.jsx +++ b/public/section/Section.jsx @@ -32,7 +32,7 @@ export default class Section extends React.Component { return (
{ this.props.children } @@ -41,8 +41,10 @@ export default class Section extends React.Component { } } +import ImageSection from './image/ImageSection'; import VideoSection from './video/VideoSection'; export { + ImageSection, VideoSection } diff --git a/public/section/image/ImageSection.jsx b/public/section/image/ImageSection.jsx new file mode 100644 index 0000000..77d8186 --- /dev/null +++ b/public/section/image/ImageSection.jsx @@ -0,0 +1,50 @@ +// 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 React from 'react'; +import Section from './../Section'; +import Image from './../../image/Image'; + +export default function(props) { + let image; + if(props.image) { + image = props.image; + } else { + image = {; + } + + return ( +
+ { image } + {props.children} +
+ ); +} diff --git a/public/styles/components/_image-section.scss b/public/styles/components/_image-section.scss new file mode 100644 index 0000000..519b825 --- /dev/null +++ b/public/styles/components/_image-section.scss @@ -0,0 +1,22 @@ +/* + * Image Section + * Styles for Image Sections, usually contains videos (hmmmm). + * + * Dependencies: + * + * Version: + * 1.0.0 - 2018/05/11 + */ +.c-image-section { + position: relative; + + &__image { + width: 100%; + } + + &.is-full { + .c-image-section__image { + @include t-absolute-fill(); + } + } +} diff --git a/public/styles/components/_section.scss b/public/styles/components/_section.scss index 6bcead5..a3499f6 100644 --- a/public/styles/components/_section.scss +++ b/public/styles/components/_section.scss @@ -11,7 +11,7 @@ //border: 1px solid red; width: 100%; - &--full { + &.is-full { height: 100vh; } } diff --git a/public/styles/components/_video-section.scss b/public/styles/components/_video-section.scss index 47a7fdb..01f2671 100644 --- a/public/styles/components/_video-section.scss +++ b/public/styles/components/_video-section.scss @@ -3,6 +3,7 @@ * Styles for Video Sections, usually contains videos. * * Dependencies: + * styles/tools/_absolute-centering.scss * * Version: * 1.0.0 - 2018/05/03 @@ -11,11 +12,7 @@ position: relative; &__video { - position: absolute; - left: 0; - top: 0; - height: 100%; - width: 100%; + @include t-absolute-fill(); object-fit: cover; object-position: center; } diff --git a/public/styles/elements/button.scss b/public/styles/elements/button.scss index 19a1c96..8390e2b 100644 --- a/public/styles/elements/button.scss +++ b/public/styles/elements/button.scss @@ -10,4 +10,5 @@ button { font-size: inherit; font-weight: inherit; font-family: inherit; + color: inherit; } diff --git a/public/styles/index.scss b/public/styles/index.scss index 081b05b..987a931 100644 --- a/public/styles/index.scss +++ b/public/styles/index.scss @@ -64,6 +64,7 @@ @import './objects/_video.scss'; //Components +@import './components/_image-section.scss'; @import './components/_page.scss'; @import './components/_section.scss'; @import './components/_video-section.scss'; diff --git a/public/styles/pages/_home-page.scss b/public/styles/pages/_home-page.scss index 99748fc..47459aa 100644 --- a/public/styles/pages/_home-page.scss +++ b/public/styles/pages/_home-page.scss @@ -12,6 +12,8 @@ .p-home-page { &__video-content { - background: white; + padding: 1em 4em; + background: rgba(0, 0, 0, 0.75); + color: white; } } diff --git a/public/styles/tools/_absolute-centering.scss b/public/styles/tools/_absolute-centering.scss index f92f684..bfddbfd 100644 --- a/public/styles/tools/_absolute-centering.scss +++ b/public/styles/tools/_absolute-centering.scss @@ -28,6 +28,14 @@ @include t-translate-y(-50%); } +@mixin t-absolute-fill() { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; +} + @mixin t-absolute-position-options($inset: 0) { position: absolute;