Compare commits
No commits in common. "main" and "freecodecamp" have entirely different histories.
main
...
freecodeca
169
.eleventy.js
|
@ -1,9 +1,6 @@
|
||||||
const Image = require("@11ty/eleventy-img");
|
const { EleventyRenderPlugin } = require("@11ty/eleventy");
|
||||||
const CleanCSS = require("clean-css");
|
|
||||||
|
|
||||||
module.exports = async function (eleventyConfig) {
|
|
||||||
const { EleventyRenderPlugin } = await import("@11ty/eleventy");
|
|
||||||
|
|
||||||
|
module.exports = function (eleventyConfig) {
|
||||||
eleventyConfig.addPassthroughCopy("./src/css");
|
eleventyConfig.addPassthroughCopy("./src/css");
|
||||||
eleventyConfig.addPassthroughCopy("./src/fonts");
|
eleventyConfig.addPassthroughCopy("./src/fonts");
|
||||||
eleventyConfig.addPassthroughCopy("./src/images");
|
eleventyConfig.addPassthroughCopy("./src/images");
|
||||||
|
@ -16,12 +13,6 @@ module.exports = async function (eleventyConfig) {
|
||||||
eleventyConfig.addPassthroughCopy({
|
eleventyConfig.addPassthroughCopy({
|
||||||
"./projects/FrontendMentor": "FrontendMentor",
|
"./projects/FrontendMentor": "FrontendMentor",
|
||||||
});
|
});
|
||||||
eleventyConfig.addPassthroughCopy({
|
|
||||||
"./projects/random": "others",
|
|
||||||
});
|
|
||||||
eleventyConfig.addPassthroughCopy({
|
|
||||||
"./projects/devchallenges": "devchallenges",
|
|
||||||
});
|
|
||||||
eleventyConfig.addPassthroughCopy({
|
eleventyConfig.addPassthroughCopy({
|
||||||
"./src/assets/faviconstuff": "/",
|
"./src/assets/faviconstuff": "/",
|
||||||
});
|
});
|
||||||
|
@ -30,20 +21,9 @@ module.exports = async function (eleventyConfig) {
|
||||||
// "./src/assets/images": "img",
|
// "./src/assets/images": "img",
|
||||||
//});
|
//});
|
||||||
|
|
||||||
// FILTERS
|
|
||||||
eleventyConfig.addFilter("cssmin", function (code) {
|
|
||||||
return new CleanCSS({}).minify(code).styles;
|
|
||||||
});
|
|
||||||
|
|
||||||
// PLUGINS
|
// PLUGINS
|
||||||
eleventyConfig.addPlugin(EleventyRenderPlugin);
|
eleventyConfig.addPlugin(EleventyRenderPlugin);
|
||||||
|
|
||||||
// SHORTCODES
|
|
||||||
// eleventyConfig.addShortcode("image", imageShortcode);
|
|
||||||
eleventyConfig.addAsyncShortcode("imageGen", officialImageShortcode);
|
|
||||||
eleventyConfig.addNunjucksShortcode("imageGenSync", imageShortcodeSync);
|
|
||||||
// eleventyConfig.addShortcode("imageGenSync", imageShortcodeSync);
|
|
||||||
|
|
||||||
// WATCH Targets
|
// WATCH Targets
|
||||||
eleventyConfig.addWatchTarget("./src/css/");
|
eleventyConfig.addWatchTarget("./src/css/");
|
||||||
eleventyConfig.addWatchTarget("./src/js/");
|
eleventyConfig.addWatchTarget("./src/js/");
|
||||||
|
@ -65,148 +45,3 @@ module.exports = async function (eleventyConfig) {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const imageShortcode = async (
|
|
||||||
src,
|
|
||||||
alt,
|
|
||||||
className = undefined,
|
|
||||||
widths = [400, 800, 1280],
|
|
||||||
formats = ["webp", "jpeg"],
|
|
||||||
sizes = "100vw"
|
|
||||||
) => {
|
|
||||||
const imageMetadata = await Image(src, {
|
|
||||||
widths: [...widths, null],
|
|
||||||
formats: [...formats, null],
|
|
||||||
outputDir: "_site/assets/images",
|
|
||||||
urlPath: "/assets/images",
|
|
||||||
});
|
|
||||||
|
|
||||||
const sourceHtmlString = Object.values(imageMetadata)
|
|
||||||
// Map each format to the source HTML markup
|
|
||||||
.map((images) => {
|
|
||||||
// The first entry is representative of all the others
|
|
||||||
// since they each have the same shape
|
|
||||||
const { sourceType } = images[0];
|
|
||||||
|
|
||||||
// Use our util from earlier to make our lives easier
|
|
||||||
const sourceAttributes = stringifyAttributes({
|
|
||||||
type: sourceType,
|
|
||||||
// srcset needs to be a comma-separated attribute
|
|
||||||
srcset: images.map((image) => image.srcset).join(", "),
|
|
||||||
sizes,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Return one <source> per format
|
|
||||||
return `<source ${sourceAttributes}>`;
|
|
||||||
})
|
|
||||||
.join("\n");
|
|
||||||
|
|
||||||
const getLargestImage = (format) => {
|
|
||||||
const images = imageMetadata[format];
|
|
||||||
return images[images.length - 1];
|
|
||||||
};
|
|
||||||
|
|
||||||
const largestUnoptimizedImg = getLargestImage(formats[0]);
|
|
||||||
const imgAttributes = stringifyAttributes({
|
|
||||||
src: largestUnoptimizedImg.url,
|
|
||||||
width: largestUnoptimizedImg.width,
|
|
||||||
height: largestUnoptimizedImg.height,
|
|
||||||
alt,
|
|
||||||
loading: "lazy",
|
|
||||||
decoding: "async",
|
|
||||||
});
|
|
||||||
const imgHtmlString = `<img ${imgAttributes}>`;
|
|
||||||
|
|
||||||
const pictureAttributes = stringifyAttributes({
|
|
||||||
class: className,
|
|
||||||
});
|
|
||||||
const picture = `<picture ${pictureAttributes}>
|
|
||||||
${sourceHtmlString}
|
|
||||||
${imgHtmlString}
|
|
||||||
</picture>`;
|
|
||||||
|
|
||||||
return outdent`${picture}`;
|
|
||||||
};
|
|
||||||
|
|
||||||
async function officialImageShortcode(src, alt, sizes = "100vw") {
|
|
||||||
if (alt === undefined) {
|
|
||||||
// You bet we throw an error on missing alt (alt="" works okay)
|
|
||||||
throw new Error(`Missing \`alt\` on responsiveimage from: ${src}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (src.startsWith("/screenshots")) {
|
|
||||||
src = "./src/" + src;
|
|
||||||
} else {
|
|
||||||
src = "./projects/" + src;
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log("officalImage: " + src + " " + alt);
|
|
||||||
|
|
||||||
let metadata = await Image(src, {
|
|
||||||
widths: [300, 600],
|
|
||||||
formats: ["webp", "jpeg"],
|
|
||||||
outputDir: "www/assets/images",
|
|
||||||
urlPath: "/assets/images",
|
|
||||||
});
|
|
||||||
|
|
||||||
console.log(metadata);
|
|
||||||
|
|
||||||
let lowsrc = metadata.jpeg[0];
|
|
||||||
let highsrc = metadata.jpeg[metadata.jpeg.length - 1];
|
|
||||||
|
|
||||||
return `<picture>
|
|
||||||
${Object.values(metadata)
|
|
||||||
.map((imageFormat) => {
|
|
||||||
return ` <source type="${
|
|
||||||
imageFormat[0].sourceType
|
|
||||||
}" srcset="${imageFormat
|
|
||||||
.map((entry) => entry.srcset)
|
|
||||||
.join(", ")}" sizes="${sizes}">`;
|
|
||||||
})
|
|
||||||
.join("\n")}
|
|
||||||
<img
|
|
||||||
src="${lowsrc.url}"
|
|
||||||
width="${highsrc.width}"
|
|
||||||
height="${highsrc.height}"
|
|
||||||
alt="${alt}"
|
|
||||||
class="card__img"
|
|
||||||
loading="lazy"
|
|
||||||
decoding="async">
|
|
||||||
</picture>`;
|
|
||||||
}
|
|
||||||
|
|
||||||
function imageShortcodeSync(
|
|
||||||
src,
|
|
||||||
alt,
|
|
||||||
sizes = "100vw",
|
|
||||||
widths = [300, 600],
|
|
||||||
cls = "card__img"
|
|
||||||
) {
|
|
||||||
let options = {
|
|
||||||
widths: widths,
|
|
||||||
formats: ["webp", "jpeg"],
|
|
||||||
outputDir: "www/assets/images",
|
|
||||||
urlPath: "/assets/images",
|
|
||||||
};
|
|
||||||
|
|
||||||
if (src.startsWith("/screenshots")) {
|
|
||||||
src = "./src/" + src;
|
|
||||||
} else {
|
|
||||||
src = "./projects/" + src;
|
|
||||||
}
|
|
||||||
|
|
||||||
// console.log("Sync: " + src + " " + alt);
|
|
||||||
// generate images, while this is async we don’t wait
|
|
||||||
Image(src, options);
|
|
||||||
|
|
||||||
let imageAttributes = {
|
|
||||||
class: cls,
|
|
||||||
alt,
|
|
||||||
sizes,
|
|
||||||
loading: "lazy",
|
|
||||||
decoding: "async",
|
|
||||||
};
|
|
||||||
// get metadata even if the images are not fully generated yet
|
|
||||||
let metadata = Image.statsSync(src, options);
|
|
||||||
return Image.generateHTML(metadata, imageAttributes);
|
|
||||||
}
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ jobs:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [20.x]
|
node-version: [17.x]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
@ -30,8 +30,6 @@ src/_includes/css
|
||||||
# my chosen output directory.
|
# my chosen output directory.
|
||||||
www
|
www
|
||||||
|
|
||||||
**/*/premdesigns
|
|
||||||
|
|
||||||
#### From FrontEnd Mentor gitignore. Just to avoid accidentally uploading design files
|
#### From FrontEnd Mentor gitignore. Just to avoid accidentally uploading design files
|
||||||
#
|
#
|
||||||
# Avoid accidental upload of the Sketch and Figma design files
|
# Avoid accidental upload of the Sketch and Figma design files
|
||||||
|
|
4
.hintrc
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"extends": ["development"],
|
|
||||||
"browserslist": ["defaults", "not IE 11"]
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
// Use IntelliSense to learn about possible attributes.
|
|
||||||
// Hover to view descriptions of existing attributes.
|
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"type": "edge",
|
|
||||||
"version": "stable",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "Launch Edge against localhost",
|
|
||||||
"url": "http://localhost:8080",
|
|
||||||
"webRoot": "${workspaceFolder}"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -2,9 +2,6 @@
|
||||||
"folders": [
|
"folders": [
|
||||||
{
|
{
|
||||||
"path": "."
|
"path": "."
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "projects/FrontendMentor/junior/github-user-search-app"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"settings": {}
|
"settings": {}
|
||||||
|
|
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 9.5 KiB |
Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 6.8 KiB |