diff --git a/package.json b/package.json
index 70d66d7..bd34190 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"description": "Personal website for Dominic \"YouWish\" Masters.",
"main": "private/index.js",
"scripts": {
- "start": "node private/index",
+ "start": "node private/index",
"serve": "webpack-serve --config ./webpack.config.js",
"watch": "nodemon --watch private private/index.js",
"test": "jest"
@@ -58,8 +58,11 @@
"webpack": "^4.14.0"
},
"devDependencies": {
+ "jimp": "^0.2.28",
"nodemon": "^1.17.5",
"react-hot-loader": "^4.3.3",
+ "responsive-loader": "^1.1.0",
+ "sharp": "^0.20.5",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
diff --git a/public/image/Image.jsx b/public/image/Image.jsx
index 6acc3a2..723ccb6 100644
--- a/public/image/Image.jsx
+++ b/public/image/Image.jsx
@@ -22,6 +22,7 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import React from 'react';
+import LoadableImage from './LoadableImage';
export default class Image extends React.Component {
constructor(props) {
@@ -29,6 +30,10 @@ export default class Image extends React.Component {
}
render() {
+ if(this.props.loadable) {
+ //return ();
+ }
+
let sourceProps = Object.assign({}, this.props);
//Prop Manipulation
@@ -40,36 +45,56 @@ export default class Image extends React.Component {
}
}
+ if(sourceProps.src) {
+ if(sourceProps.src.images) sourceProps.sources = sourceProps.src.images;
+ if(sourceProps.src.width) sourceProps.width = sourceProps.src.width;
+ if(sourceProps.src.height) sourceProps.height = sourceProps.src.height;
+ }
+
//Image
let sourceElements = [];
let sources = {};
let defaultSrc = sourceProps.src;
let defaultAlt = sourceProps.alt;
+ let defaultWidth = sourceProps.width;
+ let defaultHeight = sourceProps.height;
+
+ console.log(defaultSrc);
if(sourceProps.sources) {
//Iterate over supplied sources
for(let i = 0; i < sourceProps.sources.length; i++) {
let x = sourceProps.sources[i];
- let w = x.size;
- sources[w] = sources[w] || [];
- sources[w].push(x);
+ let width = x.size || x.width;
+ let isLast = (i+1) === sourceProps.sources.length;
- defaultSrc = defaultSrc || x.src;
- defaultAlt = defaultAlt || x.alt;
+ for(let scale = 1; scale <= 4; scale++) {
+ let scaledWidth = Math.round(width / scale);
+ let o = Object.assign({}, x);
+ o.scale = scale;
+ o.isLast = isLast;
+ sources[scaledWidth] = sources[scaledWidth] || [];
+ sources[scaledWidth].push(o);
+ }
}
- //Now map to components I guess
let keys = Object.keys(sources);
for(let i = 0; i < keys.length; i++) {
- let k = keys[i];
- let j = sources[k];
- let q = j[0];
- let mediaQuery = '(max-width:'+q.size+'px)';
+ let k = keys[i];//The pixel size
+ let ss = sources[k];//Sources at this pixel resolution
+ let mediaQuery = '(max-width:'+k+'px)';
let sss = [];
- for(let p = 0; p < j.length; p++) {
- let v = j[p];
- sss.push(v.src + (v.scale && v.scale != 1 ? " "+v.scale+"x" : "" ) );
+
+ if(ss.length && ss[0].isLast) {
+ let prev = i > 0 ? keys[i-1] : 0;
+ mediaQuery = '(min-width:'+prev+'px)';
+ }
+
+ for(let x = 0; x < ss.length; x++) {
+ let scale = ss[x];
+ let source = scale.src || scale.path;
+ sss.push( source + (scale.scale && scale.scale!=1 ? " "+scale.scale+"x" : "") );
}
sourceElements.push(
@@ -81,7 +106,13 @@ export default class Image extends React.Component {
return (
{ sourceElements }
-
+
);
}
diff --git a/public/image/LoadableImage.jsx b/public/image/LoadableImage.jsx
new file mode 100644
index 0000000..0cf1dfe
--- /dev/null
+++ b/public/image/LoadableImage.jsx
@@ -0,0 +1,40 @@
+// 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 Image from './Image';
+import Loader from './../loading/Loader';
+
+class LoadableImage extends React.Component {
+ constructor(props) {
+ super(props);
+ }
+
+ render() {
+ let p = Object.assign({}, this.props);
+ p.loadable = false;
+ return
+ }
+}
+
+export default LoadableImage;
diff --git a/public/page/home/sections/ExistingWorkSection.jsx b/public/page/home/sections/ExistingWorkSection.jsx
index e15402c..ac670ad 100644
--- a/public/page/home/sections/ExistingWorkSection.jsx
+++ b/public/page/home/sections/ExistingWorkSection.jsx
@@ -66,6 +66,7 @@ const ExistingWorkFrame = (props) => {
diff --git a/public/section/image/ImageSection.jsx b/public/section/image/ImageSection.jsx
index 960aa46..81fa739 100644
--- a/public/section/image/ImageSection.jsx
+++ b/public/section/image/ImageSection.jsx
@@ -31,9 +31,8 @@ export default function(props) {
image = props.image;
} else {
image = ;
}
diff --git a/public/styles/elements/img.scss b/public/styles/elements/img.scss
index e836799..f3571e7 100644
--- a/public/styles/elements/img.scss
+++ b/public/styles/elements/img.scss
@@ -8,5 +8,6 @@
img {
display: inline-block;
max-width: 100%;
+ height: auto;
border: none;
}
diff --git a/public/styles/pages/_home-page.scss b/public/styles/pages/_home-page.scss
index 8610fb4..b609b42 100644
--- a/public/styles/pages/_home-page.scss
+++ b/public/styles/pages/_home-page.scss
@@ -78,6 +78,7 @@
&__work-link,&__work-link-image {
display: block;
+ width: 100%;
}
/* Media Queries */
diff --git a/webpack.config.js b/webpack.config.js
index f55d703..b503c35 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -20,7 +20,7 @@ module.exports = {
path: '/dist',
filename: "app.js"
},
-
+
mode: 'development',
resolve: {
@@ -43,8 +43,26 @@ module.exports = {
},
{
- test: /\.jpe?g$|\.gif$|\.png$|\.svg|\.webm|\.mp4$/i,
- loader: "file-loader?name=[path][name].[ext]"
+ test: /\.svg|\.webm|\.mp4$/i,
+ use: [{
+ loader: "file-loader",
+ options: {
+ name: "[path][name].[ext]",
+ context: 'public'
+ }
+ }]
+ },
+
+ {
+ test: /\.jpe?g$|\.gif$|\.png$/i,
+ use: [{
+ loader: "responsive-loader",
+ options: {
+ sizes: [128, 256, 500, 750, 1000, 1250, 1500, 2000, 2250, 2500],
+ name: "[path][name]_[width]x.[ext]",
+ context: 'public'
+ }
+ }]
},
{