forked from john-rock/docs-image-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathly-index.js
113 lines (91 loc) · 4.16 KB
/
ly-index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
const glob = require('glob');
const path = require('path');
const fs = require('fs-extra');
const loading = require('loading-cli');
const DOCS_DIR = '/Users/ly/docs.getdbt.com/'
const getFiles = (pattern, options = {}) => {
console.log(pattern)
console.log('In getFiles')
return glob.sync(pattern, { nodir: true, ...options } ) // match files that fit a pattern like all PNG files (*.png)
}
const getImageFiles = () => {
console.log('In getImageFiles')
return getFiles(`${DOCS_DIR}/website/static/**/*.{png,jpg,jpeg,gif,svg}`, { ignore: `${DOCS_DIR}/website/static/fonts/**/*`} )
}
// Get all reference files
const getReferenceFiles = () => {
console.log('In getReferenceFiles')
const patterns = [
`${DOCS_DIR}/website/*.js`, // Include the docusaurus.config.js file
`${DOCS_DIR}/website/docs/**/*.{md,mdx}`, // Include docs files
`${DOCS_DIR}/website/blog/**/*.{md,mdx,yml}`, // Include blog posts
`${DOCS_DIR}/website/snippets/**/*.{md,mdx}`, // Include reusables
`${DOCS_DIR}/website/src/**/*.{js,jsx,css}`, //Include all files in the src directory
`${DOCS_DIR}/contributing/**/*.md`, //Include folder
];
return patterns.flatMap(pattern => getFiles(pattern));
}
// Check if an image is used in reference files
const isImageUsed = async (baseImgFilename, fileList) => {
// Generate various paths and patterns for checking
const relativeImagePath = path.relative(`${DOCS_DIR}/website`, baseImgFilename).replace(/\\/g, '/'); // Convert backslashes to forward slashes
const imagePathInSrc = `/website/static/${relativeImagePath.replace(/^static\//, '')}`; // Handle images in src folder
const imageName = path.basename(baseImgFilename); // Image name with extension
const imageBaseName = path.basename(baseImgFilename, path.extname(baseImgFilename)); // Image name without extension
// Define regex patterns to match various ways an image might be referenced
const patterns = [
relativeImagePath, // Relative path to image
imagePathInSrc, // Relative path to image in src folder
imageName, // Image name with extension
imageBaseName, // Image name without extension
`url\\(['"]?${relativeImagePath}['"]?\\)`, // URL with relative path to image
`src=['"]?${relativeImagePath}['"]?`, // src attribute with relative path to image
`icon=['"]?${imageBaseName}['"]?` // icon attribute with image name
];
// Combine patterns into a single regex
const regex = new RegExp(patterns.join('|'), 'g');
// Initialize a variable to track if the image is found
let isUsed = false;
// Check each reference file for the image
for (const file of fileList) {
try {
// Read the file content asynchronously
const data = await fs.promises.readFile(file, 'utf8');
// Test the content against the regex patterns
if (regex.test(data)) {
isUsed = true; // Image is used
break; // Exit the loop early if the image is found
}
} catch (err) {
console.error('Error reading file:', file, err);
}
}
return isUsed; // Return whether the image is used
};
// Main function to find unused images
const findUnusedImages = async () => {
const imageFiles = getImageFiles();
const referenceFiles = getReferenceFiles();
const unusedImages = [];
const load = loading("Scanning in progress...").start(); // Start spinner
// console.log('Scanning in progress...');
// For each image file, check if it is used in reference files
for (const imgFile of imageFiles) {
const used = await isImageUsed(imgFile, referenceFiles);
if (!used) {
unusedImages.push(imgFile); // Collect unused images
}
}
// Stop spinner and use green checkmark
load.succeed("Scanning complete!");
// Output unused images
if (unusedImages.length > 0) {
console.log('Unused Images:');
unusedImages.forEach((image) => console.log(image));
} else {
console.log('No unused images found.');
}
}
findUnusedImages().catch((err) => {
console.error(err);
});