Skip to content

Commit 6aeda59

Browse files
authored
Merge pull request #71 from oklas/autoscan
feat: autoscan
2 parents 125b072 + 7f04ddb commit 6aeda59

File tree

5 files changed

+53
-3
lines changed

5 files changed

+53
-3
lines changed

example/main/config-overrides.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
const {aliasWebpack, aliasJest} = require('react-app-alias')
22

3-
const options = {}
3+
const options = {
4+
autoscan: 'src',
5+
}
46

57
module.exports = aliasWebpack(options)
68
module.exports.jest = aliasJest(options)

example/main/src/App.test.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ test('renders text', () => {
88
expect(linkElement).toBeInTheDocument();
99
});
1010

11+
test('renders internal component from src', () => {
12+
render(<App />);
13+
const nearElement = screen.getByText(/Internal/i);
14+
expect(nearElement).toBeInTheDocument();
15+
});
16+
1117
test('renders component from near src', () => {
1218
render(<App />);
1319
const nearElement = screen.getByText(/Near src/i);

example/main/src/App.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import React from 'react'
22
import NearSrc from 'near-src/NearSrc'
3+
import Internal from 'Internal/index'
34
import './App.css'
45

56
function App() {
67
return (
78
<div className="App">
89
<h2>Main</h2>
10+
<Internal />
911
<NearSrc />
1012
</div>
1113
);

example/main/src/Internal/index.tsx

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from 'react'
2+
3+
function Internal() {
4+
return (
5+
<h3>Internal</h3>
6+
)
7+
}
8+
9+
export default Internal

packages/react-app-alias/src/index.js

+33-2
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,30 @@ function aliasJest(options) {
9999
}
100100
}
101101

102+
function autoscan(tasks) {
103+
const dirlist = dir =>
104+
fs.readdirSync(dir).filter(
105+
file => fs.statSync(path.resolve(dir, file)).isDirectory())
106+
if(!Array.isArray(tasks)) tasks = tasks ? [tasks] : []
107+
tasks = tasks.map(task => (task===task+'') ? {path: task} : task)
108+
tasks = tasks.map(task => ({
109+
prefix: '',
110+
suffix: '',
111+
...task,
112+
}))
113+
const aliasMap = tasks.map(task => (
114+
dirlist(task.path).reduce(
115+
(a, alias) => ({
116+
...a,
117+
[task.prefix + alias + task.suffix]:
118+
path.join(task.path, alias)
119+
}),
120+
{}
121+
)
122+
)).reduce((a, map) => ({...a, ...map}), {})
123+
return aliasMap
124+
}
125+
102126
function configFilePath(configPath = '') {
103127
if(
104128
configPath.length > 0 && fs.existsSync(path.resolve(paths.appPath, configPath))
@@ -140,22 +164,28 @@ function configPathsRaw(confPath) {
140164
function configPaths(configPath = '') {
141165
const confPath = configFilePath(configPath)
142166
const paths = configPathsRaw(confPath)
143-
return Object.keys(paths).reduce( (a, path) => {
167+
const aliasMap = Object.keys(paths).reduce( (a, path) => {
144168
const value = paths[path]
145169
const target = Array.isArray(value) ? value[0] : value
146170
a[path.replace(/\/\*$/,'')] = target.replace(/\/\*$/,'')
147171
return a
148172
}, {})
173+
return aliasMap
149174
}
150175

151176
function defaultOptions(options) {
152177
const configPath = configFilePath(
153178
options.tsconfig || options.jsconfig
154179
)
155180
const aliasMap = options.alias || configPaths(configPath)
181+
const aliasAutoMap = autoscan(options.autoscan)
182+
156183
const opts = {
157184
...options,
158-
aliasMap,
185+
aliasMap: {
186+
...aliasAutoMap,
187+
...aliasMap,
188+
},
159189
}
160190
return opts
161191
}
@@ -182,6 +212,7 @@ const CracoAliasPlugin = {
182212
module.exports = {
183213
aliasWebpack,
184214
aliasJest,
215+
autoscan,
185216
configFilePath,
186217
configPathsRaw,
187218
configPaths,

0 commit comments

Comments
 (0)