Compare commits
20 commits
Author | SHA1 | Date | |
---|---|---|---|
87ec17fbc6 | |||
76ddf1d01b | |||
56a78d5d2a | |||
3d2792afa5 | |||
c592874ce5 | |||
ae4d43b437 | |||
1040def4cc | |||
d3f676d03c | |||
31b01ad395 | |||
a4c1995561 | |||
5908965aef | |||
4520e0c9d4 | |||
7d95234fa3 | |||
86eaf1ded5 | |||
919b3717f8 | |||
284c76225a | |||
5026eb74f1 | |||
a6f5d1d1cd | |||
8282f1e0a4 | |||
b1cf9859fa |
5 changed files with 6079 additions and 990 deletions
56
build.js
56
build.js
|
@ -1,28 +1,36 @@
|
||||||
const fs = require('fs');
|
import { readdirSync, readFileSync, writeFileSync } from 'fs'
|
||||||
const path = `./node_modules/@tabler/icons/icons/filled/`;
|
import path from 'path'
|
||||||
const fileNames = fs.readdirSync(path);
|
|
||||||
const object = {};
|
const ICONS_DIR = path.join('node_modules', '@tabler', 'icons', 'icons', 'outline')
|
||||||
const CONTENTS = {
|
const CONTENTS = {
|
||||||
HEAD: "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\">",
|
HEAD: `<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">`,
|
||||||
TAIL: "</svg>",
|
TAIL: '</svg>'
|
||||||
};
|
}
|
||||||
|
const object = {}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const fileNames = readdirSync(ICONS_DIR)
|
||||||
|
|
||||||
fileNames.forEach((filename) => {
|
fileNames.forEach((filename) => {
|
||||||
const contents = fs
|
const filePath = path.join(ICONS_DIR, filename)
|
||||||
.readFileSync(path + filename)
|
const contents = readFileSync(filePath, 'utf8').trim()
|
||||||
.toString()
|
|
||||||
.trimEnd();
|
|
||||||
const lines = contents.split("\n");
|
|
||||||
const guts = lines
|
|
||||||
.slice(1, lines.length - 1)
|
|
||||||
.join("")
|
|
||||||
.replace(/\ \ /g, "");
|
|
||||||
if (object) object[filename.slice(0, -4)] = guts;
|
|
||||||
});
|
|
||||||
|
|
||||||
fs.writeFileSync(
|
const guts = contents
|
||||||
"./icons.js",
|
.replace(/^<svg[^>]*>/, '')
|
||||||
`// Generated by build.js at ${new Date().toISOString()}\n\nmodule.exports = ${JSON.stringify(
|
.replace(/<\/svg>$/, '')
|
||||||
{...object, HEAD: CONTENTS['HEAD'], TAIL: CONTENTS['TAIL']}
|
.replace(/\s{2,}/g, ' ')
|
||||||
)};\n`
|
|
||||||
);
|
object[filename.slice(0, -4)] = guts
|
||||||
|
})
|
||||||
|
|
||||||
|
const output = `// Generated by build.js at ${new Date().toISOString()}
|
||||||
|
|
||||||
|
export default ${JSON.stringify({ ...object, HEAD: CONTENTS.HEAD, TAIL: CONTENTS.TAIL }, null, 2)};
|
||||||
|
`
|
||||||
|
|
||||||
|
writeFileSync('./icons.js', output)
|
||||||
|
|
||||||
|
console.log('Icons successfully generated and saved to icons.js!')
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Error processing icons:', err)
|
||||||
|
}
|
4943
icons.js
4943
icons.js
File diff suppressed because one or more lines are too long
1972
package-lock.json
generated
1972
package-lock.json
generated
File diff suppressed because it is too large
Load diff
13
package.json
13
package.json
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
"name": "@cdransf/eleventy-tabler-icons-filled",
|
"name": "@cdransf/eleventy-tabler-icons-filled",
|
||||||
"version": "1.14.0",
|
"version": "2.11.1",
|
||||||
"description": "Shortcodes to add filled Tabler icons to your Eleventy projects",
|
"description": "Shortcodes to add filled Tabler icons to your Eleventy projects",
|
||||||
|
"type": "module",
|
||||||
"main": "tablericons.js",
|
"main": "tablericons.js",
|
||||||
"files": [
|
"files": [
|
||||||
"tablericons.js",
|
"tablericons.js",
|
||||||
|
@ -24,15 +25,15 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/cdransf/eleventy-tabler-icons-filled.git"
|
"url": "git+https://git.apps.coryd.dev/cdransf/eleventy-tabler-icons-filled.git"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/cdransf/eleventy-tabler-icons-filled#readme",
|
"homepage": "https://git.apps.coryd.dev/cdransf/eleventy-tabler-icons-filled#readme",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/cdransf/eleventy-tabler-icons-filled/issues"
|
"url": "https://git.apps.coryd.dev/cdransf/eleventy-tabler-icons-filled/issues"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@11ty/eleventy": "^2.0.1",
|
"@11ty/eleventy": "v3.0.0",
|
||||||
"@tabler/icons": "^3.16.0"
|
"@tabler/icons": "^3.31.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,55 +1,48 @@
|
||||||
const ICONS = require("./icons");
|
import ICONS from './icons.js'
|
||||||
|
|
||||||
const initialConfig = {
|
const tablericons = (eleventyConfig, config = {}) => {
|
||||||
className: "",
|
const { className = '', errorOnMissing = false } = config
|
||||||
errorOnMissing: false,
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = function tablericons(eleventyConfig, config = initialConfig) {
|
const renderIcon = (context = this, name, alt, attrs) => {
|
||||||
function tablericons(context = this, name, alt) {
|
const contents = ICONS[name]
|
||||||
const contents = ICONS[name];
|
|
||||||
if (!contents) {
|
if (!contents) {
|
||||||
const message = `No tablericons found for name "${name}"`;
|
handleMissingIcon(name, context.page.inputPath)
|
||||||
if (config.errorOnMissing) {
|
return ''
|
||||||
throw new Error(message);
|
}
|
||||||
|
|
||||||
|
return `${head(alt, className, name, attrs)}${contents}${ICONS.TAIL}`
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleMissingIcon = (name, inputPath) => {
|
||||||
|
const message = `No tablericons found for name '${name}'`
|
||||||
|
if (errorOnMissing) {
|
||||||
|
throw new Error(message)
|
||||||
} else {
|
} else {
|
||||||
console.warn(message + ` in ${context.page.inputPath}`);
|
console.warn(`${message} in ${inputPath}`)
|
||||||
return "";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!contents) return "";
|
// Register shortcode for Eleventy 3.0
|
||||||
|
eleventyConfig.addShortcode('tablericon', (name, alt, attrs) => {
|
||||||
return `${head(alt, config.className, name)}${contents}${
|
return renderIcon(this, name, alt, attrs)
|
||||||
ICONS.TAIL
|
})
|
||||||
}`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
eleventyConfig.addShortcode("tablericon-filled", function (name, alt, attrs) {
|
const head = (alt, className, iconName, attrs) => {
|
||||||
return tablericons(this, name, alt, attrs);
|
let output = `${ICONS.HEAD.slice(0, -1)} aria-hidden='true'`
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
function head(alt, className, iconName, attrs) {
|
if (className) output += ` class='${className}'`
|
||||||
let output = ICONS.HEAD.slice(0, -1); // Open tag
|
output += ` data-tablericon-name='${iconName}'`
|
||||||
if (!alt) output += ` aria-hidden="true"`;
|
|
||||||
if (className) output += ` class="${className}"`;
|
|
||||||
output += ` data-tablericon-name="${iconName}"`;
|
|
||||||
|
|
||||||
if (attrs) {
|
if (typeof attrs === 'string') {
|
||||||
if (typeof attrs === "string") {
|
output += ` ${attrs}`
|
||||||
output += ` ${attrs}`;
|
} else if (attrs && typeof attrs === 'object') {
|
||||||
} else {
|
output += Object.entries(attrs)
|
||||||
Object.entries(attrs).forEach(([property, value]) => {
|
.map(([property, value]) => (property && value ? ` ${property}='${value}'` : ''))
|
||||||
if (property && value) {
|
.join('')
|
||||||
output += ` ${property}="${value}"`;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
output += ">"; // Close tag
|
return `${output}>`
|
||||||
if (alt) output += `<title>${alt}</title>`;
|
|
||||||
|
|
||||||
return output;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default tablericons
|
Loading…
Reference in a new issue