Skip to content
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

[WIP] GroupByVerb parameter and behaviours. #166

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Source/Private/CreateOrCleanFolder.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ function CreateOrCleanFolder() {
Helper function to create a folder OR remove it's contents if it already exists.
#>
param(
[Parameter(Mandatory = $True)][string]$Path
[Parameter(Mandatory = $True)][string]$Path,
[switch]$GroupByVerb
)

GetCallerPreference -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState
Expand All @@ -19,5 +20,12 @@ function CreateOrCleanFolder() {

# otherwise remove it's contents
Write-Verbose "=> cleaning folder $($Path)"
Remove-Item -Path (Join-Path -Path $Path -ChildPath *.*)
if ($GroupByVerb) {
# remove all files except the category files, start with verb subfolders
Remove-Item -Path (Join-Path -Path $Path -ChildPath */*.*) -Exclude @('_category_.yaml', '_category_.json')
# now remove all files in the root folder except the category files
Remove-Item -Path (Join-Path -Path $Path -ChildPath *.*) -Exclude @('_category_.yaml', '_category_.json')
} else {
Remove-Item -Path (Join-Path -Path $Path -ChildPath *.*)
}
}
32 changes: 24 additions & 8 deletions Source/Private/NewSidebarIncludeFile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,37 @@ function NewSidebarIncludeFile() {
.LINK
https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-powershell-1.0/ff730948(v=technet.10)
#>
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSReviewUnusedParameter", "Sidebar",
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', 'Sidebar',
Justification = 'False positive as rule does not scan child scopes')]
[CmdletBinding()]
param(
[Parameter(Mandatory = $True)][string]$TempFolder,
[Parameter(Mandatory = $True)][string]$OutputFolder,
[Parameter(Mandatory = $True)][string]$Sidebar,
[Parameter(Mandatory = $True)][Object]$MarkdownFiles,
[Parameter(Mandatory = $True)][Version]$Alt3Version
[Parameter(Mandatory = $True)][Version]$Alt3Version,
[switch]$GroupByVerb
)

GetCallerPreference -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState

Write-Verbose "Generating docusaurus.sidebar.js"
Write-Verbose 'Generating docusaurus.sidebar.js'

# generate a list of PowerShell commands by stripping .md from the generated PlatyPs files
[array]$commands = $MarkdownFiles | Select-Object @{ Name = "PowerShellCommand"; Expression = { "'$Sidebar/" + [System.IO.Path]::GetFileNameWithoutExtension($_) + "'" } } | Select-Object -Expand PowerShellCommand
# generate a list of PowerShell commands by stripping .md from the generated PlatyPs files then group by verb if needed
$commands = [System.Collections.Generic.List[string]]::new()
foreach ($MarkdownFile in $MarkdownFiles) {
if ($GroupByVerb) {
$parentPath = Split-Path $MarkdownFile -Parent
$verbFolder = Split-Path $parentPath -Leaf
$docParentPath = "'$Sidebar/" + $verbFolder
$docPath = "$docParentPath/" + [System.IO.Path]::GetFileNameWithoutExtension($MarkdownFile) + "'"
} else {
$docPath = "'$Sidebar/" + [System.IO.Path]::GetFileNameWithoutExtension($MarkdownFile) + "'"
}
$commands.Add($docPath)
}

Write-Verbose "=> $($commands.Count) commands found"

# generate content using Here-String block
$content = @"
Expand All @@ -41,7 +56,7 @@ module.exports = [
"@

# create the temp file
$fileName = "docusaurus.sidebar.js"
$fileName = 'docusaurus.sidebar.js'
$tempFile = Join-Path -Path $tempFolder -ChildPath $fileName
$fileEncoding = New-Object System.Text.UTF8Encoding $False
[System.IO.File]::WriteAllLines($tempFile, $content, $fileEncoding)
Expand All @@ -50,6 +65,7 @@ module.exports = [
if (-Not([System.IO.Path]::IsPathRooted($OutputFolder))) {
$outputFolder = Join-Path "$(Get-Location)" -ChildPath $OutputFolder
}

Copy-Item -Path $tempFile -Destination (Join-Path -Path $outputFolder -ChildPath $fileName)
$sidebarFile = Join-Path -Path $outputFolder -ChildPath $fileName
Write-Verbose "=> writing sidebar to $($sidebarFile)"
Copy-Item -Path $tempFile -Destination $sidebarFile
}
95 changes: 67 additions & 28 deletions Source/Public/New-DocusaurusHelp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ function New-DocusaurusHelp() {
For more information please
[visit this page](https://docusaurus-powershell.vercel.app/docs/faq/vendor-agnostic).

.PARAMETER GroupByVerb
Use this switch parameter to group your documentation into folders for each PowerShell approved verb.

If used, when the sidebar folder is cleaned it will be cleaned assuming it has the verb subfolder structure.

.NOTES
For debugging purposes, Docusaurus.Powershell creates a local temp folder with:

Expand All @@ -149,8 +154,8 @@ function New-DocusaurusHelp() {
[cmdletbinding()]
param(
[Parameter(Mandatory = $True)][string]$Module,
[Parameter(Mandatory = $False)][string]$DocsFolder = "docusaurus/docs",
[Parameter(Mandatory = $False)][string]$Sidebar = "commands",
[Parameter(Mandatory = $False)][string]$DocsFolder = 'docusaurus/docs',
[Parameter(Mandatory = $False)][string]$Sidebar = 'commands',
[Parameter(Mandatory = $False)][array]$Exclude = @(),
[Parameter(Mandatory = $False)][string]$EditUrl,
[Parameter(Mandatory = $False)][string]$MetaDescription,
Expand All @@ -162,7 +167,8 @@ function New-DocusaurusHelp() {
[switch]$HideTableOfContents,
[switch]$NoPlaceHolderExamples,
[switch]$Monolithic,
[switch]$VendorAgnostic
[switch]$VendorAgnostic,
[switch]$GroupByVerb
)

GetCallerPreference -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState
Expand All @@ -185,35 +191,39 @@ function New-DocusaurusHelp() {
Write-Verbose "Using Alt3 module version = $($alt3Version)"

# markdown for the module will be copied into the sidebar subfolder
Write-Verbose "Initializing sidebar folder:"
Write-Verbose 'Initializing sidebar folder:'
$sidebarFolder = Join-Path -Path $DocsFolder -ChildPath $Sidebar
CreateOrCleanFolder -Path $sidebarFolder
if ($GroupByVerb) {
CreateOrCleanFolder -Path $sidebarFolder -GroupByVerb
} else {
CreateOrCleanFolder -Path $sidebarFolder
}

# create tempfolder used for generating the PlatyPS files and creating the mdx files
$tempFolder = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath "Alt3.Docusaurus.Powershell" | Join-Path -ChildPath $moduleName
$tempFolder = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath 'Alt3.Docusaurus.Powershell' | Join-Path -ChildPath $moduleName
InitializeTempFolder -Path $tempFolder

# generate PlatyPs markdown files
Write-Verbose "Generating PlatyPS files."
Write-Verbose 'Generating PlatyPS files.'
New-MarkdownHelp -Module $Module -OutputFolder $tempFolder -Force | Out-Null

# remove files matching excluded commands
Write-Verbose "Removing excluded files:"
Write-Verbose 'Removing excluded files:'
$Exclude | ForEach-Object {
RemoveFile -Path (Join-Path -Path $tempFolder -ChildPath "$($_).md")
}

# rename PlatyPS files and create an `.mdx` copy we will transform
Write-Verbose "Cloning PlatyPS files."
Write-Verbose 'Cloning PlatyPS files.'
Get-ChildItem -Path $tempFolder -Filter *.md | ForEach-Object {
$platyPsFile = $_.FullName -replace '\.md$', '.PlatyPS.md'
$mdxFile = $_.FullName -replace '\.md$', '.mdx'
Move-Item -Path $_.FullName -Destination $platyPsFile
Copy-Item -Path $platyPsFile -Destination $mdxFile
Copy-Item -Path $platyPsFile -Destination $mdxFile
}

# update all remaining mdx files to make them Docusaurus compatible
Write-Verbose "Updating mdx files."
Write-Verbose 'Updating mdx files.'
$mdxFiles = Get-ChildItem -Path $tempFolder -Filter *.mdx

ForEach ($mdxFile in $mdxFiles) {
Expand All @@ -223,11 +233,11 @@ function New-DocusaurusHelp() {
$customEditUrl = GetCustomEditUrl -Module $Module -MarkdownFile $mdxFile -EditUrl $EditUrl -Monolithic:$Monolithic

$frontMatterArgs = @{
MarkdownFile = $mdxFile
MetaDescription = $metaDescription
CustomEditUrl = $customEditUrl
MetaKeywords = $metaKeywords
HideTitle = $HideTitle
MarkdownFile = $mdxFile
MetaDescription = $metaDescription
CustomEditUrl = $customEditUrl
MetaKeywords = $metaKeywords
HideTitle = $HideTitle
HideTableOfContents = $HideTableOfContents
}

Expand All @@ -241,13 +251,13 @@ function New-DocusaurusHelp() {
ReplaceHeader1 -MarkdownFile $mdxFile -KeepHeader1:$KeepHeader1

if ($PrependMarkdown) {
InsertUserMarkdown -MarkdownFile $mdxFile -Markdown $PrependMarkdown -Mode "Prepend"
InsertUserMarkdown -MarkdownFile $mdxFile -Markdown $PrependMarkdown -Mode 'Prepend'
}

ReplaceExamples -MarkdownFile $mdxFile -NoPlaceholderExamples:$NoPlaceholderExamples

if ($AppendMarkdown) {
InsertUserMarkdown -MarkdownFile $mdxFile -Markdown $AppendMarkdown -Mode "Append"
InsertUserMarkdown -MarkdownFile $mdxFile -Markdown $AppendMarkdown -Mode 'Append'
}

# Post-fix complex multiline code examples (https://github.com/pester/Pester/issues/2195)
Expand All @@ -272,16 +282,45 @@ function New-DocusaurusHelp() {
}

# copy updated mdx files to the target folder
Write-Verbose "Copying mdx files to sidebar folder."
Get-ChildItem -Path $tempFolder -Filter *.mdx | ForEach-Object {
Copy-Item -Path $_.FullName -Destination (Join-Path -Path $sidebarFolder -ChildPath ($_.Name))
}
Write-Verbose 'Copying mdx files to sidebar folder.'
$updatedMDXFiles = Get-ChildItem -Path $tempFolder -Filter *.mdx
if ($GroupByVerb) {
$processedMDXFiles = [System.Collections.Generic.List[System.IO.FileInfo]]::new()
$verbs = Get-Verb
foreach ($verb in $verbs.Verb) {
Write-Verbose "Processing verb $verb"
$filteredMDXFiles = [System.Collections.Generic.List[System.IO.FileInfo]]::new()
$updatedMDXFiles | Where-Object { $_.Name.StartsWith($verb) } | ForEach-Object { $filteredMDXFiles.Add($_) }
if ($filteredMDXFiles.Count -gt 0) {
Write-Verbose "Found $($filteredMDXFiles.Count) files for verb $verb"
foreach ($filteredMDXFile in $filteredMDXFiles) {
Write-Verbose "Processing file $($filteredMDXFile.Name)"
$subfolderPath = Join-Path -Path $sidebarFolder -ChildPath $verb
if (-not(Test-Path -Path $subfolderPath)) {
New-Item -Path $subfolderPath -ItemType Directory | Out-Null
}
$OutputFile = Join-Path -Path $subfolderPath -ChildPath $filteredMDXFile.Name
Copy-Item -Path $filteredMDXFile.FullName -Destination $OutputFile
$processedMDXFiles.Add($OutputFile)
}
} else {
Write-Verbose "Found 0 files for verb $verb"
}
}
# generate the `.js` file used for the docusaurus sidebar
if (-not($VendorAgnostic)) {
NewSidebarIncludeFile -MarkdownFiles $processedMDXFiles -TempFolder $tempFolder -OutputFolder $sidebarFolder -Sidebar $Sidebar -Alt3Version $alt3Version -GroupByVerb -UsedVerbs $usedVerbs
} else {
foreach ($updatedMDXFile in $updatedMDXFiles) {
Copy-Item -Path $updatedMDXFile.FullName -Destination (Join-Path -Path $sidebarFolder -ChildPath ($updatedMDXFile.Name))
}
# generate the `.js` file used for the docusaurus sidebar
if (-not($VendorAgnostic)) {
NewSidebarIncludeFile -MarkdownFiles $mdxFiles -TempFolder $tempFolder -OutputFolder $sidebarFolder -Sidebar $Sidebar -Alt3Version $alt3Version
}
}

# generate the `.js` file used for the docusaurus sidebar
if (-not($VendorAgnostic)) {
NewSidebarIncludeFile -MarkdownFiles $mdxFiles -TempFolder $tempFolder -OutputFolder $sidebarFolder -Sidebar $Sidebar -Alt3Version $alt3Version
# output Get-ChildItem so end-user can post-process generated files as they see fit
Get-ChildItem -Path $sidebarFolder
}

# output Get-ChildItem so end-user can post-process generated files as they see fit
Get-ChildItem -Path $sidebarFolder
}