material-icon-theme 4.22.0 → 4.23.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +51 -51
- package/.github/workflows/build.yml +45 -45
- package/.github/workflows/color-check.yml +22 -22
- package/.github/workflows/release.yml +73 -73
- package/.vscodeignore +21 -21
- package/CHANGELOG.md +1292 -1267
- package/README.md +199 -199
- package/icons/craco.svg +45 -0
- package/icons/folder-changesets-open.svg +5 -0
- package/icons/folder-changesets.svg +2 -0
- package/icons/folder-decorators-open.svg +2 -2
- package/icons/folder-decorators.svg +5 -5
- package/icons/folder-supabase-open.svg +5 -5
- package/icons/folder-supabase.svg +2 -2
- package/icons/sonarcloud.svg +4 -4
- package/icons/stylable.svg +10 -10
- package/icons/supabase.svg +4 -4
- package/icons/vitest.svg +6 -0
- package/images/contributors.png +0 -0
- package/images/fileIcons.png +0 -0
- package/images/folderIcons.png +0 -0
- package/package.json +252 -252
- package/package.nls.de.json +32 -32
- package/package.nls.es.json +29 -29
- package/package.nls.fr.json +29 -29
- package/package.nls.ja.json +32 -32
- package/package.nls.json +32 -32
- package/package.nls.nl.json +32 -32
- package/package.nls.pl.json +32 -32
- package/package.nls.pt-BR.json +29 -29
- package/package.nls.pt-PT.json +29 -29
- package/package.nls.ru.json +29 -29
- package/package.nls.zh-CN.json +29 -29
- package/package.nls.zh-TW.json +29 -29
- package/src/commands/activate.ts +28 -28
- package/src/commands/explorerArrows.ts +55 -55
- package/src/commands/folderColor.ts +96 -96
- package/src/commands/folders.ts +55 -55
- package/src/commands/grayscale.ts +55 -55
- package/src/commands/iconPacks.ts +64 -64
- package/src/commands/index.ts +30 -30
- package/src/commands/opacity.ts +46 -46
- package/src/commands/saturation.ts +46 -46
- package/src/extension.ts +37 -37
- package/src/helpers/customIcons.ts +8 -8
- package/src/helpers/index.ts +88 -88
- package/src/i18n/index.ts +78 -78
- package/src/i18n/lang-de.ts +43 -43
- package/src/i18n/lang-en.ts +43 -43
- package/src/i18n/lang-es.ts +43 -43
- package/src/i18n/lang-fr.ts +43 -43
- package/src/i18n/lang-ja.ts +43 -43
- package/src/i18n/lang-nl.ts +43 -43
- package/src/i18n/lang-pl.ts +43 -43
- package/src/i18n/lang-pt-br.ts +43 -43
- package/src/i18n/lang-pt-pt.ts +43 -43
- package/src/i18n/lang-ru.ts +43 -43
- package/src/i18n/lang-uk.ts +43 -43
- package/src/i18n/lang-zh-cn.ts +43 -43
- package/src/i18n/lang-zh-tw.ts +43 -43
- package/src/icons/fileIcons.ts +2197 -2159
- package/src/icons/folderIcons.ts +806 -804
- package/src/icons/generator/folderGenerator.ts +340 -340
- package/src/icons/generator/iconOpacity.ts +111 -111
- package/src/icons/generator/iconSaturation.ts +140 -140
- package/src/icons/generator/jsonGenerator.ts +191 -191
- package/src/icons/languageIcons.ts +141 -141
- package/src/models/i18n/translation.ts +41 -41
- package/src/models/iconConfiguration.ts +37 -37
- package/src/models/icons/iconJsonOptions.ts +21 -21
- package/src/models/index.ts +3 -3
- package/src/scripts/contributors/index.ts +138 -138
- package/src/scripts/helpers/screenshots.ts +32 -32
- package/src/scripts/icons/checks/checkIconAvailability.ts +215 -215
- package/src/scripts/icons/checks/checkIconConflicts.ts +152 -152
- package/src/scripts/icons/checks/checkIconUsage.ts +137 -137
- package/src/scripts/icons/checks/index.ts +7 -7
- package/src/scripts/preview/index.ts +40 -40
- package/src/scripts/preview/preview.ts +163 -163
- package/src/test/runTest.ts +26 -26
- package/src/test/spec/i18n/i18n.spec.ts +54 -54
- package/src/test/spec/icons/fileIcons.spec.ts +250 -250
- package/src/test/spec/icons/folderIcons.spec.ts +418 -418
- package/src/test/spec/icons/languageIcons.spec.ts +184 -184
|
@@ -1,138 +1,138 @@
|
|
|
1
|
-
import { writeFileSync } from 'fs';
|
|
2
|
-
import { request, RequestOptions } from 'https';
|
|
3
|
-
import { join } from 'path';
|
|
4
|
-
import { Contributor } from '../../models/scripts/contributors/contributor';
|
|
5
|
-
import { green, red, yellow } from '../helpers/painter';
|
|
6
|
-
import { createScreenshot } from '../helpers/screenshots';
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* Parse link header
|
|
10
|
-
* @param linkHeader Link header as string
|
|
11
|
-
* @returns Object that contains the page numbers of `prev`, `next` and `last`.
|
|
12
|
-
*/
|
|
13
|
-
const parseLinkHeader = (linkHeader: string) => {
|
|
14
|
-
const nextPagePattern = new RegExp(/\bpage=(\d)[^>]*>;\srel="next"/);
|
|
15
|
-
const lastPagePattern = new RegExp(/\bpage=(\d)[^>]*>;\srel="last"/);
|
|
16
|
-
const prevPagePattern = new RegExp(/\bpage=(\d)[^>]*>;\srel="prev"/);
|
|
17
|
-
|
|
18
|
-
const nextPage = nextPagePattern.exec(linkHeader) ?? '';
|
|
19
|
-
const lastPage = lastPagePattern.exec(linkHeader) ?? '';
|
|
20
|
-
const prevPage = prevPagePattern.exec(linkHeader) ?? '';
|
|
21
|
-
|
|
22
|
-
return { nextPage, lastPage, prevPage };
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Get all contributors from GitHub API.
|
|
27
|
-
*/
|
|
28
|
-
const fetchContributors = (
|
|
29
|
-
page: string
|
|
30
|
-
): Promise<{ contributorsOfPage: Contributor[]; nextPage: string }> => {
|
|
31
|
-
return new Promise((resolve, reject) => {
|
|
32
|
-
const requestOptions: RequestOptions = {
|
|
33
|
-
method: 'GET',
|
|
34
|
-
hostname: 'api.github.com',
|
|
35
|
-
path: `/repos/pkief/vscode-material-icon-theme/contributors?page=${page}`,
|
|
36
|
-
port: 443,
|
|
37
|
-
headers: {
|
|
38
|
-
link: 'next',
|
|
39
|
-
accept: 'application/json',
|
|
40
|
-
'User-Agent': 'Contributors script',
|
|
41
|
-
},
|
|
42
|
-
};
|
|
43
|
-
|
|
44
|
-
const req = request(requestOptions, (res) => {
|
|
45
|
-
const { nextPage, lastPage, prevPage } = parseLinkHeader(
|
|
46
|
-
res.headers?.link?.toString() ?? ''
|
|
47
|
-
);
|
|
48
|
-
console.log(
|
|
49
|
-
'> Material Icon Theme:',
|
|
50
|
-
yellow(
|
|
51
|
-
`[${page}/${
|
|
52
|
-
lastPage ? lastPage[1] : +prevPage[1] + 1
|
|
53
|
-
}] Loading contributors from GitHub...`
|
|
54
|
-
)
|
|
55
|
-
);
|
|
56
|
-
const result: Uint8Array[] = [];
|
|
57
|
-
res.on('data', (data: Buffer) => {
|
|
58
|
-
result.push(data);
|
|
59
|
-
});
|
|
60
|
-
|
|
61
|
-
res.on('end', () => {
|
|
62
|
-
try {
|
|
63
|
-
const buffer = Buffer.concat(result);
|
|
64
|
-
const bufferAsString = buffer.toString('utf8');
|
|
65
|
-
const contributorsOfPage = JSON.parse(bufferAsString);
|
|
66
|
-
resolve({ contributorsOfPage, nextPage: nextPage?.[1] });
|
|
67
|
-
} catch (error) {
|
|
68
|
-
reject(error);
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
req.on('error', (error) => {
|
|
74
|
-
console.error(error);
|
|
75
|
-
reject(error);
|
|
76
|
-
});
|
|
77
|
-
|
|
78
|
-
req.end();
|
|
79
|
-
});
|
|
80
|
-
};
|
|
81
|
-
|
|
82
|
-
const createContributorsList = (contributors: Contributor[]) => {
|
|
83
|
-
const list = contributors
|
|
84
|
-
.map((c) => {
|
|
85
|
-
return `<li title="${c.login}"><img src="${c.avatar_url}" alt="${c.login}"/></li>`;
|
|
86
|
-
})
|
|
87
|
-
.join('\n');
|
|
88
|
-
|
|
89
|
-
const htmlDoctype = '<!DOCTYPE html>';
|
|
90
|
-
const styling = '<link rel="stylesheet" href="contributors.css">';
|
|
91
|
-
const generatedHtml = `${htmlDoctype}${styling}<ul>${list}</ul>`;
|
|
92
|
-
|
|
93
|
-
const outputPath = join(__dirname, 'contributors.html');
|
|
94
|
-
writeFileSync(outputPath, generatedHtml);
|
|
95
|
-
return outputPath;
|
|
96
|
-
};
|
|
97
|
-
|
|
98
|
-
const init = async () => {
|
|
99
|
-
const contributorsList: Contributor[] = [];
|
|
100
|
-
let page = '1';
|
|
101
|
-
|
|
102
|
-
// iterate over the pages of GitHub API
|
|
103
|
-
while (page !== undefined) {
|
|
104
|
-
const result = await fetchContributors(page);
|
|
105
|
-
contributorsList.push(...result.contributorsOfPage);
|
|
106
|
-
page = result.nextPage;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
if (contributorsList.length > 0) {
|
|
110
|
-
console.log(
|
|
111
|
-
'> Material Icon Theme:',
|
|
112
|
-
green('Successfully fetched all contributors from GitHub!')
|
|
113
|
-
);
|
|
114
|
-
} else {
|
|
115
|
-
console.log(
|
|
116
|
-
'> Material Icon Theme:',
|
|
117
|
-
red('Error: Could not fetch contributors from GitHub!')
|
|
118
|
-
);
|
|
119
|
-
throw Error();
|
|
120
|
-
}
|
|
121
|
-
const outputPath = createContributorsList(contributorsList);
|
|
122
|
-
|
|
123
|
-
// create the image
|
|
124
|
-
console.log('> Material Icon Theme:', yellow('Creating image...'));
|
|
125
|
-
const fileName = 'contributors';
|
|
126
|
-
createScreenshot(outputPath, fileName)
|
|
127
|
-
.then(() => {
|
|
128
|
-
console.log(
|
|
129
|
-
'> Material Icon Theme:',
|
|
130
|
-
green(`Successfully created ${fileName} image!`)
|
|
131
|
-
);
|
|
132
|
-
})
|
|
133
|
-
.catch(() => {
|
|
134
|
-
throw Error(red(`Error while creating ${fileName} image`));
|
|
135
|
-
});
|
|
136
|
-
};
|
|
137
|
-
|
|
138
|
-
init();
|
|
1
|
+
import { writeFileSync } from 'fs';
|
|
2
|
+
import { request, RequestOptions } from 'https';
|
|
3
|
+
import { join } from 'path';
|
|
4
|
+
import { Contributor } from '../../models/scripts/contributors/contributor';
|
|
5
|
+
import { green, red, yellow } from '../helpers/painter';
|
|
6
|
+
import { createScreenshot } from '../helpers/screenshots';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Parse link header
|
|
10
|
+
* @param linkHeader Link header as string
|
|
11
|
+
* @returns Object that contains the page numbers of `prev`, `next` and `last`.
|
|
12
|
+
*/
|
|
13
|
+
const parseLinkHeader = (linkHeader: string) => {
|
|
14
|
+
const nextPagePattern = new RegExp(/\bpage=(\d)[^>]*>;\srel="next"/);
|
|
15
|
+
const lastPagePattern = new RegExp(/\bpage=(\d)[^>]*>;\srel="last"/);
|
|
16
|
+
const prevPagePattern = new RegExp(/\bpage=(\d)[^>]*>;\srel="prev"/);
|
|
17
|
+
|
|
18
|
+
const nextPage = nextPagePattern.exec(linkHeader) ?? '';
|
|
19
|
+
const lastPage = lastPagePattern.exec(linkHeader) ?? '';
|
|
20
|
+
const prevPage = prevPagePattern.exec(linkHeader) ?? '';
|
|
21
|
+
|
|
22
|
+
return { nextPage, lastPage, prevPage };
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Get all contributors from GitHub API.
|
|
27
|
+
*/
|
|
28
|
+
const fetchContributors = (
|
|
29
|
+
page: string
|
|
30
|
+
): Promise<{ contributorsOfPage: Contributor[]; nextPage: string }> => {
|
|
31
|
+
return new Promise((resolve, reject) => {
|
|
32
|
+
const requestOptions: RequestOptions = {
|
|
33
|
+
method: 'GET',
|
|
34
|
+
hostname: 'api.github.com',
|
|
35
|
+
path: `/repos/pkief/vscode-material-icon-theme/contributors?page=${page}`,
|
|
36
|
+
port: 443,
|
|
37
|
+
headers: {
|
|
38
|
+
link: 'next',
|
|
39
|
+
accept: 'application/json',
|
|
40
|
+
'User-Agent': 'Contributors script',
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const req = request(requestOptions, (res) => {
|
|
45
|
+
const { nextPage, lastPage, prevPage } = parseLinkHeader(
|
|
46
|
+
res.headers?.link?.toString() ?? ''
|
|
47
|
+
);
|
|
48
|
+
console.log(
|
|
49
|
+
'> Material Icon Theme:',
|
|
50
|
+
yellow(
|
|
51
|
+
`[${page}/${
|
|
52
|
+
lastPage ? lastPage[1] : +prevPage[1] + 1
|
|
53
|
+
}] Loading contributors from GitHub...`
|
|
54
|
+
)
|
|
55
|
+
);
|
|
56
|
+
const result: Uint8Array[] = [];
|
|
57
|
+
res.on('data', (data: Buffer) => {
|
|
58
|
+
result.push(data);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
res.on('end', () => {
|
|
62
|
+
try {
|
|
63
|
+
const buffer = Buffer.concat(result);
|
|
64
|
+
const bufferAsString = buffer.toString('utf8');
|
|
65
|
+
const contributorsOfPage = JSON.parse(bufferAsString);
|
|
66
|
+
resolve({ contributorsOfPage, nextPage: nextPage?.[1] });
|
|
67
|
+
} catch (error) {
|
|
68
|
+
reject(error);
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
req.on('error', (error) => {
|
|
74
|
+
console.error(error);
|
|
75
|
+
reject(error);
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
req.end();
|
|
79
|
+
});
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
const createContributorsList = (contributors: Contributor[]) => {
|
|
83
|
+
const list = contributors
|
|
84
|
+
.map((c) => {
|
|
85
|
+
return `<li title="${c.login}"><img src="${c.avatar_url}" alt="${c.login}"/></li>`;
|
|
86
|
+
})
|
|
87
|
+
.join('\n');
|
|
88
|
+
|
|
89
|
+
const htmlDoctype = '<!DOCTYPE html>';
|
|
90
|
+
const styling = '<link rel="stylesheet" href="contributors.css">';
|
|
91
|
+
const generatedHtml = `${htmlDoctype}${styling}<ul>${list}</ul>`;
|
|
92
|
+
|
|
93
|
+
const outputPath = join(__dirname, 'contributors.html');
|
|
94
|
+
writeFileSync(outputPath, generatedHtml);
|
|
95
|
+
return outputPath;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
const init = async () => {
|
|
99
|
+
const contributorsList: Contributor[] = [];
|
|
100
|
+
let page = '1';
|
|
101
|
+
|
|
102
|
+
// iterate over the pages of GitHub API
|
|
103
|
+
while (page !== undefined) {
|
|
104
|
+
const result = await fetchContributors(page);
|
|
105
|
+
contributorsList.push(...result.contributorsOfPage);
|
|
106
|
+
page = result.nextPage;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
if (contributorsList.length > 0) {
|
|
110
|
+
console.log(
|
|
111
|
+
'> Material Icon Theme:',
|
|
112
|
+
green('Successfully fetched all contributors from GitHub!')
|
|
113
|
+
);
|
|
114
|
+
} else {
|
|
115
|
+
console.log(
|
|
116
|
+
'> Material Icon Theme:',
|
|
117
|
+
red('Error: Could not fetch contributors from GitHub!')
|
|
118
|
+
);
|
|
119
|
+
throw Error();
|
|
120
|
+
}
|
|
121
|
+
const outputPath = createContributorsList(contributorsList);
|
|
122
|
+
|
|
123
|
+
// create the image
|
|
124
|
+
console.log('> Material Icon Theme:', yellow('Creating image...'));
|
|
125
|
+
const fileName = 'contributors';
|
|
126
|
+
createScreenshot(outputPath, fileName)
|
|
127
|
+
.then(() => {
|
|
128
|
+
console.log(
|
|
129
|
+
'> Material Icon Theme:',
|
|
130
|
+
green(`Successfully created ${fileName} image!`)
|
|
131
|
+
);
|
|
132
|
+
})
|
|
133
|
+
.catch(() => {
|
|
134
|
+
throw Error(red(`Error while creating ${fileName} image`));
|
|
135
|
+
});
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
init();
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { join } from 'path';
|
|
2
|
-
import Puppeteer from 'puppeteer';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Create a screenshot from an HTML file and save it as image.
|
|
6
|
-
* @param filePath Path of an HTML file
|
|
7
|
-
* @param fileName Name of the output image
|
|
8
|
-
*/
|
|
9
|
-
export const createScreenshot = async (filePath: string, fileName: string) => {
|
|
10
|
-
try {
|
|
11
|
-
const htmlFilePath = join('file:', filePath);
|
|
12
|
-
const browser = await Puppeteer.launch();
|
|
13
|
-
const page = await browser.newPage();
|
|
14
|
-
await page.setViewport({
|
|
15
|
-
height: 10,
|
|
16
|
-
width: 1000,
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
await page.goto(htmlFilePath);
|
|
20
|
-
|
|
21
|
-
await page.screenshot({
|
|
22
|
-
path: `images/${fileName}.png`,
|
|
23
|
-
omitBackground: true,
|
|
24
|
-
fullPage: true,
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
await browser.close();
|
|
28
|
-
} catch (error) {
|
|
29
|
-
console.error(error);
|
|
30
|
-
throw Error('Could not create screenshot for a preview');
|
|
31
|
-
}
|
|
32
|
-
};
|
|
1
|
+
import { join } from 'path';
|
|
2
|
+
import Puppeteer from 'puppeteer';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Create a screenshot from an HTML file and save it as image.
|
|
6
|
+
* @param filePath Path of an HTML file
|
|
7
|
+
* @param fileName Name of the output image
|
|
8
|
+
*/
|
|
9
|
+
export const createScreenshot = async (filePath: string, fileName: string) => {
|
|
10
|
+
try {
|
|
11
|
+
const htmlFilePath = join('file:', filePath);
|
|
12
|
+
const browser = await Puppeteer.launch();
|
|
13
|
+
const page = await browser.newPage();
|
|
14
|
+
await page.setViewport({
|
|
15
|
+
height: 10,
|
|
16
|
+
width: 1000,
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
await page.goto(htmlFilePath);
|
|
20
|
+
|
|
21
|
+
await page.screenshot({
|
|
22
|
+
path: `images/${fileName}.png`,
|
|
23
|
+
omitBackground: true,
|
|
24
|
+
fullPage: true,
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
await browser.close();
|
|
28
|
+
} catch (error) {
|
|
29
|
+
console.error(error);
|
|
30
|
+
throw Error('Could not create screenshot for a preview');
|
|
31
|
+
}
|
|
32
|
+
};
|