mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-11-16 00:59:07 +02:00
expose getIconsData*
util functions (#7394)
This commit is contained in:
parent
388727251f
commit
b2cf3885ce
@ -95,24 +95,28 @@ export const htmlFriendlyToTitle = (htmlFriendlyTitle) =>
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get contents of _data/simple-icons.json.
|
* Get contents of _data/simple-icons.json.
|
||||||
|
* @param {String|undefined} rootDir Path to the root directory of the project.
|
||||||
*/
|
*/
|
||||||
export const getIconsDataString = () => {
|
export const getIconsDataString = (rootDir) => {
|
||||||
const __dirname = getDirnameFromImportMeta(import.meta.url);
|
if (rootDir === undefined) {
|
||||||
const rootDir = path.resolve(__dirname, '..');
|
rootDir = path.resolve(getDirnameFromImportMeta(import.meta.url), '..');
|
||||||
|
}
|
||||||
const iconDataPath = path.resolve(rootDir, '_data', 'simple-icons.json');
|
const iconDataPath = path.resolve(rootDir, '_data', 'simple-icons.json');
|
||||||
return fs.readFile(iconDataPath, 'utf8');
|
return fs.readFile(iconDataPath, 'utf8');
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get icon data as object from _data/simple-icons.json.
|
* Get icons data as object from _data/simple-icons.json.
|
||||||
|
* @param {String|undefined} rootDir Path to the root directory of the project.
|
||||||
*/
|
*/
|
||||||
export const getIconsData = async () => {
|
export const getIconsData = async (rootDir) => {
|
||||||
const fileContents = await getIconsDataString();
|
const fileContents = await getIconsDataString(rootDir);
|
||||||
return JSON.parse(fileContents).icons;
|
return JSON.parse(fileContents).icons;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the directory name from import.meta.url.
|
* Get the directory name where this file is located from `import.meta.url`,
|
||||||
|
* equivalent to the `__dirname` global variable in CommonJS.
|
||||||
* @param {String} importMetaUrl import.meta.url
|
* @param {String} importMetaUrl import.meta.url
|
||||||
*/
|
*/
|
||||||
export const getDirnameFromImportMeta = (importMetaUrl) =>
|
export const getDirnameFromImportMeta = (importMetaUrl) =>
|
||||||
|
Loading…
Reference in New Issue
Block a user