ts-react-display-name
v1.2.2
Published
Typescript transformer that adds displayName to React components
Downloads
3,406
Maintainers
Readme
ts-react-display-name
Typescript transformer that adds displayName to React components.
Setup
Installation
Install the library:
npm install --save-dev ts-react-display-name
Webpack
If you are using Webpack, import the tranformer:
const { addDisplayNameTransformer } = require('ts-react-display-name')
Then add it to ts-loader's options:
{
test: /\.(tsx?)$/,
loader: 'ts-loader',
options: {
getCustomTransformers: () => ({
before: [addDisplayNameTransformer()]
})
}
}
TTypeScript
Add it to plugins
in your tsconfig.json
{
"compilerOptions": {
"plugins": [
{
"transform": "ts-react-display-name"
}
]
}
}
Example
Using this transformer, the following code:
// Function component
const TestFuncComponent: React.FC<{}> = () => <p>...</p>
// React component
export class TestComponent extends React.Component<{}, {}> {
render() { ... }
}
Becomes:
// Function component
const TestFuncComponent: React.FC<{}> = () => <p>...</p>
TestFuncComponent.displayName = 'TestFuncComponent'
// React component
export class TestComponent extends React.Component<{}, {}> {
static displayName = 'TestComponent'
render() { ... }
}
// Factory component
const TextFactoryComponent = React.forwardRef<HTMLParagraphElement, {}>(
(props, ref) => <p ref={ref}>...</p>
)
TextFactoryComponent.displayName = 'TextFactoryComponent'
Advanced
Options
onlyFileRoot
Looking for components everywhere in the typescript file can take time. This option reduces the scope of research to just the root of the file. Most of the time components are declared at the root so looking further isn't really worth it.
- Default: false
addDisplayNameTransformer({
onlyFileRoot: true,
})
{
"transform": "ts-react-display-name",
"onlyFileRoot": true
}
funcTypes
List of function types to add displayName to. Display names will only be added to functions explicitly typed with one of those.
If you import React as "R" then you will have to update this list to be ['R.FunctionComponent', 'R.FC']. This list needs to match exactly what is in the source code.
- Default: ['React.FunctionComponent', 'React.FC']
addDisplayNameTransformer({
funcTypes: ['React.FunctionComponent', 'React.FC'],
})
{
"transform": "ts-react-display-name",
"funcTypes": ["React.FunctionComponent", "React.FC"]
}
classTypes
List of class types to add displayName to. Display names will only be added to classes explicitly extending one of those.
If you import React as "R" then you will have to update this list to be ['R.Component', 'R.PureComponent']. This list needs to match exactly what is in the source code.
- Default: ['React.Component', 'React.PureComponent']
addDisplayNameTransformer({
classTypes: ['React.Component', 'React.PureComponent'],
})
{
"transform": "ts-react-display-name",
"classTypes": ["React.Component", "React.PureComponent"]
}
factoryFuncs
List of factory functions to add displayName to. Display names will only be added to variables explicitly called with one of those.
If you import React as "R" then you will have to update this list to be ['R.forwardRef', 'R.memo']. This list needs to match exactly what is in the source code.
- Default: ['React.forwardRef', 'React.memo']
addDisplayNameTransformer({
factoryFuncs: ['React.forwardRef', 'React.memo'],
})
{
"transform": "ts-react-display-name",
"factoryFuncs": ["React.forwardRef", "React.memo"]
}
Contributing to this project
Feel free to contribute to this project and submit pull requests.
Here are a couple useful commands:
npm run test
: Runs tests and linters.npm run build
: Builds the library.
Adding Unit test data
- Add your origin test data file as
/test/data/xxx.tsx
- Paste your raw
/test/data/xxx.tsx
file into Typescript Playround using the link settings, then add the displayName (function or static property) and save the generated output totest/data/xxx.ts
TODOs
- Try to find a better way to compare types (without converting to text using getText(sourceFile))
- Optionally detect if there is already a displayName for functional componments and don't override it.