- 
                Notifications
    
You must be signed in to change notification settings  - Fork 0
 
feat!: add get static paths helper function (#688) #693
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
          
     Merged
      
      
    
  
     Merged
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            2 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      
    File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
      
      Oops, something went wrong.
      
    
  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| import fs from "fs"; | ||
| import * as path from "path"; | ||
| 
     | 
||
| /** | ||
| * Returns true if the file is an MDX file. | ||
| * @param fileName - File name. | ||
| * @returns true if the file is an MDX file. | ||
| */ | ||
| function isMdxFile(fileName: string): boolean { | ||
| return fileName.endsWith(".mdx"); | ||
| } | ||
| 
     | 
||
| /** | ||
| * Maps each MDX file path to its slug. | ||
| * @param docsDirectory - Docs directory. | ||
| * @param dirPath - Directory path. | ||
| * @param slugByFilePaths - Accumulator: Map of slug by mdx file path. | ||
| * @returns returns slug by mdx file path. | ||
| */ | ||
| export function mapMDXSlugByFilePaths( | ||
| docsDirectory: string, | ||
| dirPath = docsDirectory, | ||
| slugByFilePaths: Map<string, string[]> = new Map() | ||
| ): Map<string, string[]> { | ||
| const dirents = fs.readdirSync(dirPath, { withFileTypes: true }); | ||
| return dirents.reduce((acc, dirent) => { | ||
| /* Accumulate the slug for each MDX file. */ | ||
| if (dirent.isFile() && isMdxFile(dirent.name)) { | ||
| const mdxPath = path.resolve(dirPath, dirent.name); | ||
| /* Build the slug from the file relative directory and file name. */ | ||
| const mdxRelativePath = path.relative(docsDirectory, mdxPath); | ||
| const { dir, name } = path.parse(mdxRelativePath); | ||
| let slug = [] as string[]; | ||
| if (dir) slug = dir.split(path.sep); | ||
| slug.push(name); | ||
| acc.set(mdxPath, slug); | ||
| } | ||
| /* Recurse into subdirectories. */ | ||
| if (dirent.isDirectory()) { | ||
| mapMDXSlugByFilePaths( | ||
| docsDirectory, | ||
| path.resolve(dirPath, dirent.name), | ||
| acc | ||
| ); | ||
| } | ||
| return acc; | ||
| }, slugByFilePaths); | ||
| } | ||
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| import * as path from "path"; | ||
| 
     | 
||
| /** | ||
| * Resolves an absolute docs path from a single set of directory segments. | ||
| * @param relativeDirs - Directory segments relative to the docs root. | ||
| * @returns Absolute path. | ||
| */ | ||
| export function resolveRelativeDirs(relativeDirs: string[]): string { | ||
| return path.join(process.cwd(), ...relativeDirs); | ||
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| import { GetStaticPathsResult } from "next"; | ||
| import { mapMDXSlugByFilePaths } from "../files/mapMDXSlugByFilePaths"; | ||
| import { resolveRelativeDirs } from "../files/resolveRelativeDirs"; | ||
| 
     | 
||
| /** | ||
| * Builds Next.js static paths for MDX page files found under the given relative directories. | ||
| * Each path’s `slug` is composed of the file’s relative directory segments plus the MDX filename (without extension). | ||
| * @param relativeDirs - Relative directories to scan for MDX pages. | ||
| * @returns Array of path objects suitable for `getStaticPaths`. | ||
| */ | ||
| export function buildStaticPaths( | ||
| relativeDirs: string[] | ||
| ): GetStaticPathsResult["paths"] { | ||
| const slugByFilePaths = mapMDXSlugByFilePaths( | ||
| resolveRelativeDirs(relativeDirs) | ||
| ); | ||
| return [...slugByFilePaths].map(([, slug]) => ({ params: { slug } })); | ||
| } | 
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.