Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding prefix option #31

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,23 @@ Instead of emitting new TypeScript declarations, this will throw an error if a g

This workflow is similar to using the [Prettier](https://github.com/prettier/prettier) [`--list-different` option](https://prettier.io/docs/en/cli.html#list-different).

### Prefix

It is possible to customize generated interface name with prefix.

For example:

```js
{
loader: 'css-modules-typescript-loader',
options: {
prefix: 'I'
}
}
```

will generate `ICssModules` interface name.

## With Thanks

This package borrows heavily from [typings-for-css-modules-loader](https://github.com/Jimdo/typings-for-css-modules-loader).
Expand Down
10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const LineDiff = require('line-diff');
const bannerMessage =
'// This file is automatically generated.\n// Please do not change this file!';

const cssModuleExport = 'declare const cssExports: CssExports;\nexport = cssExports;\n';
const cssModuleExport = (prefix) => `declare const cssExports: ${prefix}CssExports;\nexport = cssExports;\n`;

const getNoDeclarationFileError = ({ filename }) =>
new Error(
Expand All @@ -21,13 +21,13 @@ const getTypeMismatchError = ({ filename, expected, actual }) => {
);
};

const cssModuleToInterface = (cssModuleKeys) => {
const cssModuleToInterface = (cssModuleKeys, prefix) => {
const interfaceFields = cssModuleKeys
.sort()
.map(key => ` '${key}': string;`)
.join('\n');

return `interface CssExports {\n${interfaceFields}\n}`;
return `interface ${prefix}CssExports {\n${interfaceFields}\n}`;
};

const filenameToTypingsFilename = filename => {
Expand Down Expand Up @@ -68,7 +68,7 @@ module.exports = function(content, ...rest) {
const { failed, success } = makeDoneHandlers(this.async(), content, rest);

const filename = this.resourcePath;
const { mode = 'emit' } = loaderUtils.getOptions(this) || {};
const { mode = 'emit', prefix = '' } = loaderUtils.getOptions(this) || {};
if (!validModes.includes(mode)) {
return failed(new Error(`Invalid mode option: ${mode}`));
}
Expand All @@ -88,7 +88,7 @@ module.exports = function(content, ...rest) {
}
}

const cssModuleDefinition = `${bannerMessage}\n${cssModuleToInterface(cssModuleKeys)}\n${cssModuleExport}`;
const cssModuleDefinition = `${bannerMessage}\n${cssModuleToInterface(cssModuleKeys, prefix)}\n${cssModuleExport(prefix)}`;

if (mode === 'verify') {
read((err, fileContents) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Should have prefixed interface name 1`] = `
"// This file is automatically generated.
// Please do not change this file!
interface ICssExports {
'hyphened-classname': string;
'otherClass': string;
'someClass': string;
'underscored_classname': string;
'validClass': string;
}
declare const cssExports: ICssExports;
export = cssExports;
"
`;
16 changes: 16 additions & 0 deletions test/verify-prefix-declaration/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.validClass {
position: relative;
}

.someClass {
position: relative;
}

.otherClass {
display: block;
}

.hyphened-classname,
.underscored_classname {
color: papayawhip;
}
11 changes: 11 additions & 0 deletions test/verify-prefix-declaration/index.css.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// This file is automatically generated.
// Please do not change this file!
interface ICssExports {
'hyphened-classname': string;
'otherClass': string;
'someClass': string;
'underscored_classname': string;
'validClass': string;
}
declare const cssExports: ICssExports;
export = cssExports;
1 change: 1 addition & 0 deletions test/verify-prefix-declaration/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import styles from './index.css';
17 changes: 17 additions & 0 deletions test/verify-prefix-declaration/verify-prefix-declaration.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const fs = require('fs');
const compiler = require('../compiler.js');

test('Should have prefixed interface name', async () => {
expect.assertions(1);

await compiler(require.resolve('./index.js'), {
prefix: 'I'
});

const declaration = fs.readFileSync(
require.resolve('./index.css.d.ts'),
'utf-8'
);

expect(declaration).toMatchSnapshot();
});