Compare commits
17 commits
Author | SHA1 | Date | |
---|---|---|---|
3071e76493 | |||
7c6639cbb7 | |||
5cbd1168d4 | |||
c598e946b9 | |||
b825a2577f | |||
06be04b053 | |||
21e29e3d8f | |||
73dcd1769e | |||
411f26fc84 | |||
e93e8dc1f6 | |||
1eba931ab2 | |||
65971a84c0 | |||
f3caf901cf | |||
60d4e420ab | |||
cc366297a7 | |||
ae77ce1387 | |||
7e978a7038 |
5 changed files with 5017 additions and 4920 deletions
9
build.js
9
build.js
|
@ -13,9 +13,12 @@ try {
|
||||||
|
|
||||||
fileNames.forEach((filename) => {
|
fileNames.forEach((filename) => {
|
||||||
const filePath = path.join(ICONS_DIR, filename)
|
const filePath = path.join(ICONS_DIR, filename)
|
||||||
const contents = readFileSync(filePath, 'utf8').trimEnd()
|
const contents = readFileSync(filePath, 'utf8').trim()
|
||||||
const lines = contents.split('\n')
|
|
||||||
const guts = lines.slice(1, -1).join('').replace(/\s+/g, '')
|
const guts = contents
|
||||||
|
.replace(/^<svg[^>]*>/, '')
|
||||||
|
.replace(/<\/svg>$/, '')
|
||||||
|
.replace(/\s{2,}/g, ' ')
|
||||||
|
|
||||||
object[filename.slice(0, -4)] = guts
|
object[filename.slice(0, -4)] = guts
|
||||||
})
|
})
|
||||||
|
|
12
package-lock.json
generated
12
package-lock.json
generated
|
@ -1,16 +1,16 @@
|
||||||
{
|
{
|
||||||
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
||||||
"version": "2.0.2",
|
"version": "2.13.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
||||||
"version": "2.0.2",
|
"version": "2.13.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@11ty/eleventy": "v3.0.0",
|
"@11ty/eleventy": "v3.0.0",
|
||||||
"@tabler/icons": "^3.19.0"
|
"@tabler/icons": "^3.34.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@11ty/dependency-tree": {
|
"node_modules/@11ty/dependency-tree": {
|
||||||
|
@ -349,9 +349,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@tabler/icons": {
|
"node_modules/@tabler/icons": {
|
||||||
"version": "3.19.0",
|
"version": "3.34.0",
|
||||||
"resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.19.0.tgz",
|
"resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.34.0.tgz",
|
||||||
"integrity": "sha512-A4WEWqpdbTfnpFEtwXqwAe9qf9sp1yRPvzppqAuwcoF0q5YInqB+JkJtSFToCyBpPVeLxJUxxkapLvt2qQgnag==",
|
"integrity": "sha512-jtVqv0JC1WU2TTEBN32D9+R6mc1iEBuPwLnBsWaR02SIEciu9aq5806AWkCHuObhQ4ERhhXErLEK7Fs+tEZxiA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"funding": {
|
"funding": {
|
||||||
|
|
10
package.json
10
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
||||||
"version": "2.0.2",
|
"version": "2.13.1",
|
||||||
"description": "Shortcodes to add Tabler icons to your Eleventy projects",
|
"description": "Shortcodes to add Tabler icons to your Eleventy projects",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "tablericons.js",
|
"main": "tablericons.js",
|
||||||
|
@ -25,15 +25,15 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/cdransf/eleventy-plugin-tabler-icons.git"
|
"url": "git+https://git.apps.coryd.dev/cdransf/eleventy-plugin-tabler-icons.git"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/cdransf/eleventy-plugin-tabler-icons#readme",
|
"homepage": "https://git.apps.coryd.dev/cdransf/eleventy-plugin-tabler-icons#readme",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/cdransf/eleventy-plugin-tabler-icons/issues"
|
"url": "https://git.apps.coryd.dev/cdransf/eleventy-plugin-tabler-icons/issues"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@11ty/eleventy": "v3.0.0",
|
"@11ty/eleventy": "v3.0.0",
|
||||||
"@tabler/icons": "^3.19.0"
|
"@tabler/icons": "^3.34.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,48 +1,58 @@
|
||||||
import ICONS from './icons.js'
|
import ICONS from './icons.js';
|
||||||
|
|
||||||
const tablericons = (eleventyConfig, config = {}) => {
|
const tablericons = (eleventyConfig, config = {}) => {
|
||||||
const { className = '', errorOnMissing = false } = config
|
const { className = '', errorOnMissing = false } = config;
|
||||||
|
|
||||||
const renderIcon = (context = this, name, alt, attrs) => {
|
const renderIcon = (context = {}, name, alt = '', attrs = {}) => {
|
||||||
const contents = ICONS[name]
|
const contents = ICONS[name];
|
||||||
if (!contents) {
|
if (!contents) {
|
||||||
handleMissingIcon(name, context.page.inputPath)
|
handleMissingIcon(name, context.page?.inputPath);
|
||||||
return ''
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
return `${head(alt, className, name, attrs)}${contents}${ICONS.TAIL}`
|
return `${buildHead(alt, className, name, attrs)}${contents}${ICONS.TAIL}`;
|
||||||
}
|
};
|
||||||
|
|
||||||
const handleMissingIcon = (name, inputPath) => {
|
const handleMissingIcon = (name, inputPath) => {
|
||||||
const message = `No tablericons found for name '${name}'`
|
const message = `No tablericon found for name '${name}'`;
|
||||||
if (errorOnMissing) {
|
if (errorOnMissing) {
|
||||||
throw new Error(message)
|
throw new Error(message);
|
||||||
} else {
|
} else {
|
||||||
console.warn(`${message} in ${inputPath}`)
|
console.warn(`${message}${inputPath ? ` in ${inputPath}` : ''}`);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
// Register shortcode for Eleventy 3.0
|
eleventyConfig.addShortcode('tablericon', function (name, alt, attrs) {
|
||||||
eleventyConfig.addShortcode('tablericon', (name, alt, attrs) => {
|
return renderIcon(this, name, alt, attrs);
|
||||||
return renderIcon(this, name, alt, attrs)
|
});
|
||||||
})
|
};
|
||||||
}
|
|
||||||
|
|
||||||
const head = (alt, className, iconName, attrs) => {
|
const buildHead = (alt = '', className = '', iconName, attrs = {}) => {
|
||||||
let output = `${ICONS.HEAD.slice(0, -1)} aria-hidden='true'`
|
let output = `${ICONS.HEAD.slice(0, -1)} aria-hidden="true"`;
|
||||||
|
|
||||||
if (className) output += ` class='${className}'`
|
if (className) output += ` class="${className}"`;
|
||||||
output += ` data-tablericon-name='${iconName}'`
|
output += ` data-tablericon-name="${iconName}"`;
|
||||||
|
|
||||||
if (typeof attrs === 'string') {
|
if (typeof attrs === 'string') {
|
||||||
output += ` ${attrs}`
|
output += ` ${attrs}`;
|
||||||
} else if (attrs && typeof attrs === 'object') {
|
} else if (attrs && typeof attrs === 'object') {
|
||||||
output += Object.entries(attrs)
|
output += Object.entries(attrs)
|
||||||
.map(([property, value]) => (property && value ? ` ${property}='${value}'` : ''))
|
.map(([key, val]) => (key && val ? ` ${key}="${val}"` : ''))
|
||||||
.join('')
|
.join('');
|
||||||
}
|
}
|
||||||
|
|
||||||
return `${output}>`
|
return `${output}>`;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function renderTablerIcon(name, alt = '', attrs = {}, options = {}) {
|
||||||
|
const context = { page: { inputPath: options.inputPath || '' } };
|
||||||
|
const contents = ICONS[name];
|
||||||
|
if (!contents) {
|
||||||
|
console.warn(`No tablericon found for name '${name}'${options.inputPath ? ` in ${options.inputPath}` : ''}`);
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
return `${buildHead(alt, options.className || '', name, attrs)}${contents}${ICONS.TAIL}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default tablericons
|
export default tablericons;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue