File size: 2,572 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
import type { LoaderTree } from '../lib/app-dir-module'
export const BUILTIN_PREFIX = '__next_builtin__'
const nextInternalPrefixRegex =
/^(.*[\\/])?next[\\/]dist[\\/]client[\\/]components[\\/]builtin[\\/]/
export function normalizeConventionFilePath(
projectDir: string,
conventionPath: string | undefined
) {
const cwd = process.env.NEXT_RUNTIME === 'edge' ? '' : process.cwd()
let relativePath = (conventionPath || '')
// remove turbopack [project] prefix
.replace(/^\[project\][\\/]/, '')
// remove the project root from the path
.replace(projectDir, '')
// remove cwd prefix
.replace(cwd, '')
// remove /(src/)?app/ dir prefix
.replace(/^([\\/])*(src[\\/])?app[\\/]/, '')
// If it's internal file only keep the filename, strip nextjs internal prefix
if (nextInternalPrefixRegex.test(relativePath)) {
relativePath = relativePath.replace(nextInternalPrefixRegex, '')
// Add a special prefix to let segment explorer know it's a built-in component
relativePath = `${BUILTIN_PREFIX}${relativePath}`
}
return relativePath
}
// if a filepath is a builtin file. e.g.
// .../project/node_modules/next/dist/client/components/builtin/global-error.js -> true
// .../project/app/global-error.js -> false
export const isNextjsBuiltinFilePath = (filePath: string) => {
return nextInternalPrefixRegex.test(filePath)
}
export const BOUNDARY_SUFFIX = '@boundary'
export function normalizeBoundaryFilename(filename: string) {
return filename
.replace(new RegExp(`^${BUILTIN_PREFIX}`), '')
.replace(new RegExp(`${BOUNDARY_SUFFIX}$`), '')
}
export const BOUNDARY_PREFIX = 'boundary:'
export function isBoundaryFile(fileType: string) {
return fileType.startsWith(BOUNDARY_PREFIX)
}
// if a filename is a builtin file.
// __next_builtin__global-error.js -> true
// page.js -> false
export function isBuiltinBoundaryFile(fileType: string) {
return fileType.startsWith(BUILTIN_PREFIX)
}
export function getBoundaryOriginFileType(fileType: string) {
return fileType.replace(BOUNDARY_PREFIX, '')
}
export function getConventionPathByType(
tree: LoaderTree,
dir: string,
conventionType:
| 'layout'
| 'template'
| 'page'
| 'not-found'
| 'error'
| 'loading'
| 'forbidden'
| 'unauthorized'
| 'defaultPage'
| 'global-error'
) {
const modules = tree[2]
const conventionPath = modules[conventionType]
? modules[conventionType][1]
: undefined
if (conventionPath) {
return normalizeConventionFilePath(dir, conventionPath)
}
return undefined
}
|