1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/server/resolve.js

56 lines
1 KiB
JavaScript
Raw Normal View History

2016-10-19 12:41:45 +00:00
import { join, sep } from 'path'
import fs from 'mz/fs'
2016-10-08 12:01:58 +00:00
2016-10-19 12:41:45 +00:00
export default async function resolve (id) {
const paths = getPaths(id)
for (const p of paths) {
if (await isFile(p)) {
return p
}
}
const err = new Error(`Cannot find module ${id}`)
err.code = 'ENOENT'
throw err
}
export function resolveFromList (id, files) {
const paths = getPaths(id)
const set = new Set(files)
for (const p of paths) {
if (set.has(p)) return p
}
}
function getPaths (id) {
const i = sep === '/' ? id : id.replace(/\//g, sep)
if (i.slice(-3) === '.js') return [i]
if (i.slice(-5) === '.json') return [i]
if (i[i.length - 1] === sep) {
return [
i + 'index.json',
i + 'index.js'
]
}
2016-10-19 12:41:45 +00:00
return [
i + '.js',
join(i, 'index.js'),
i + '.json',
join(i, 'index.json')
2016-10-19 12:41:45 +00:00
]
2016-10-08 12:01:58 +00:00
}
2016-10-19 12:41:45 +00:00
async function isFile (p) {
let stat
try {
stat = await fs.stat(p)
} catch (err) {
if (err.code === 'ENOENT') return false
throw err
}
return stat.isFile() || stat.isFIFO()
}