Compare commits

...

19 commits
v1.15 ... main

5 changed files with 6079 additions and 990 deletions

View file

@ -1,28 +1,36 @@
const fs = require('fs');
const path = `./node_modules/@tabler/icons/icons/filled/`;
const fileNames = fs.readdirSync(path);
const object = {};
import { readdirSync, readFileSync, writeFileSync } from 'fs'
import path from 'path'
const ICONS_DIR = path.join('node_modules', '@tabler', 'icons', 'icons', 'outline')
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\">",
TAIL: "</svg>",
};
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>'
}
const object = {}
fileNames.forEach((filename) => {
const contents = fs
.readFileSync(path + filename)
.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;
});
try {
const fileNames = readdirSync(ICONS_DIR)
fs.writeFileSync(
"./icons.js",
`// Generated by build.js at ${new Date().toISOString()}\n\nmodule.exports = ${JSON.stringify(
{...object, HEAD: CONTENTS['HEAD'], TAIL: CONTENTS['TAIL']}
)};\n`
);
fileNames.forEach((filename) => {
const filePath = path.join(ICONS_DIR, filename)
const contents = readFileSync(filePath, 'utf8').trim()
const guts = contents
.replace(/^<svg[^>]*>/, '')
.replace(/<\/svg>$/, '')
.replace(/\s{2,}/g, ' ')
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

File diff suppressed because one or more lines are too long

1976
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,8 @@
{
"name": "@cdransf/eleventy-tabler-icons-filled",
"version": "1.15.0",
"version": "2.11.1",
"description": "Shortcodes to add filled Tabler icons to your Eleventy projects",
"type": "module",
"main": "tablericons.js",
"files": [
"tablericons.js",
@ -24,15 +25,15 @@
},
"repository": {
"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": {
"url": "https://github.com/cdransf/eleventy-tabler-icons-filled/issues"
"url": "https://git.apps.coryd.dev/cdransf/eleventy-tabler-icons-filled/issues"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@tabler/icons": "^3.17.0"
"@11ty/eleventy": "v3.0.0",
"@tabler/icons": "^3.31.0"
}
}

View file

@ -1,55 +1,48 @@
const ICONS = require("./icons");
import ICONS from './icons.js'
const initialConfig = {
className: "",
errorOnMissing: false,
};
const tablericons = (eleventyConfig, config = {}) => {
const { className = '', errorOnMissing = false } = config
module.exports = function tablericons(eleventyConfig, config = initialConfig) {
function tablericons(context = this, name, alt) {
const contents = ICONS[name];
const renderIcon = (context = this, name, alt, attrs) => {
const contents = ICONS[name]
if (!contents) {
const message = `No tablericons found for name "${name}"`;
if (config.errorOnMissing) {
throw new Error(message);
} else {
console.warn(message + ` in ${context.page.inputPath}`);
return "";
}
handleMissingIcon(name, context.page.inputPath)
return ''
}
if (!contents) return "";
return `${head(alt, config.className, name)}${contents}${
ICONS.TAIL
}`;
return `${head(alt, className, name, attrs)}${contents}${ICONS.TAIL}`
}
eleventyConfig.addShortcode("tablericon-filled", function (name, alt, attrs) {
return tablericons(this, name, alt, attrs);
});
};
function head(alt, className, iconName, attrs) {
let output = ICONS.HEAD.slice(0, -1); // Open tag
if (!alt) output += ` aria-hidden="true"`;
if (className) output += ` class="${className}"`;
output += ` data-tablericon-name="${iconName}"`;
if (attrs) {
if (typeof attrs === "string") {
output += ` ${attrs}`;
const handleMissingIcon = (name, inputPath) => {
const message = `No tablericons found for name '${name}'`
if (errorOnMissing) {
throw new Error(message)
} else {
Object.entries(attrs).forEach(([property, value]) => {
if (property && value) {
output += ` ${property}="${value}"`;
}
});
console.warn(`${message} in ${inputPath}`)
}
}
output += ">"; // Close tag
if (alt) output += `<title>${alt}</title>`;
return output;
// Register shortcode for Eleventy 3.0
eleventyConfig.addShortcode('tablericon', (name, alt, attrs) => {
return renderIcon(this, name, alt, attrs)
})
}
const head = (alt, className, iconName, attrs) => {
let output = `${ICONS.HEAD.slice(0, -1)} aria-hidden='true'`
if (className) output += ` class='${className}'`
output += ` data-tablericon-name='${iconName}'`
if (typeof attrs === 'string') {
output += ` ${attrs}`
} else if (attrs && typeof attrs === 'object') {
output += Object.entries(attrs)
.map(([property, value]) => (property && value ? ` ${property}='${value}'` : ''))
.join('')
}
return `${output}>`
}
export default tablericons