Compare commits

...

24 commits
v1.11 ... main

Author SHA1 Message Date
87ec17fbc6
chore: update repo url 2025-03-28 08:30:58 -07:00
76ddf1d01b
chore: update icons 2025-03-04 17:05:15 -08:00
56a78d5d2a
chore: update icons 2025-02-07 09:20:14 -08:00
3d2792afa5
chore: update icons 2025-01-21 16:21:31 -08:00
c592874ce5
chore: update icons 2025-01-08 06:44:46 -08:00
ae4d43b437
chore: update icons 2025-01-06 11:46:17 -08:00
1040def4cc
chore: update icons 2024-12-16 09:15:04 -08:00
d3f676d03c
chore: update icons 2024-12-15 12:07:36 -08:00
31b01ad395
chore: update icons 2024-12-02 15:50:07 -08:00
a4c1995561
chore: update icons 2024-11-28 12:08:35 -08:00
5908965aef
chore: update icons 2024-11-12 16:04:48 -08:00
4520e0c9d4
fix: build script 2024-10-31 04:34:45 -07:00
7d95234fa3
chore: update icons 2024-10-23 06:44:16 -07:00
86eaf1ded5
fix: build script 2024-10-02 20:35:31 -07:00
919b3717f8
fix: build script 2024-10-02 20:30:32 -07:00
284c76225a
fix: type 2024-10-02 20:22:04 -07:00
5026eb74f1
chore: upgrade to 11ty v3 2024-10-02 19:43:11 -07:00
a6f5d1d1cd
chore: update icons 2024-09-28 07:48:39 -07:00
8282f1e0a4
chore: update icons 2024-09-26 16:17:44 -07:00
b1cf9859fa
chore: update icons 2024-09-15 11:29:27 -07:00
f0b2df2fab
chore: update icons 2024-09-10 14:40:43 -07:00
e5df8b942b
chore: update icons 2024-09-08 16:55:35 -07:00
3405232bc5
chore: update icons 2024-08-27 15:15:38 -07:00
9e64691845
chore: update icons 2024-08-08 15:59:02 -07:00
5 changed files with 6079 additions and 990 deletions

View file

@ -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 = {}
fileNames.forEach((filename) => { try {
const contents = fs const fileNames = readdirSync(ICONS_DIR)
.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;
});
fs.writeFileSync( fileNames.forEach((filename) => {
"./icons.js", const filePath = path.join(ICONS_DIR, filename)
`// Generated by build.js at ${new Date().toISOString()}\n\nmodule.exports = ${JSON.stringify( const contents = readFileSync(filePath, 'utf8').trim()
{...object, HEAD: CONTENTS['HEAD'], TAIL: CONTENTS['TAIL']}
)};\n` 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", "name": "@cdransf/eleventy-tabler-icons-filled",
"version": "1.10.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.11.0" "@tabler/icons": "^3.31.0"
} }
} }

View file

@ -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);
} else {
console.warn(message + ` in ${context.page.inputPath}`);
return "";
}
} }
if (!contents) return ""; return `${head(alt, className, name, attrs)}${contents}${ICONS.TAIL}`
return `${head(alt, config.className, name)}${contents}${
ICONS.TAIL
}`;
} }
eleventyConfig.addShortcode("tablericon-filled", function (name, alt, attrs) { const handleMissingIcon = (name, inputPath) => {
return tablericons(this, name, alt, attrs); const message = `No tablericons found for name '${name}'`
}); if (errorOnMissing) {
}; throw new Error(message)
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}`;
} else { } else {
Object.entries(attrs).forEach(([property, value]) => { console.warn(`${message} in ${inputPath}`)
if (property && value) {
output += ` ${property}="${value}"`;
}
});
} }
} }
output += ">"; // Close tag // Register shortcode for Eleventy 3.0
if (alt) output += `<title>${alt}</title>`; eleventyConfig.addShortcode('tablericon', (name, alt, attrs) => {
return renderIcon(this, name, alt, attrs)
return output; })
} }
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