PoshCode Archive  Artifact [6c3227d3f6]

Artifact 6c3227d3f6895f21ba9f3db19bec95eb98f3453830d3cd639c0d55b2642a0b64:

  • File Start-Demo-1-for-PS3-ISE.ps1 — part of check-in [8a0175650a] at 2018-06-10 13:37:14 on branch trunk — The first version of a Start-Demo script (module) for ISE from PowerShell 3+ (user: Joel Bennett size: 2359)

# encoding: ascii
# api: powershell
# title: Start-Demo 1 for PS3 ISE
# description: The first version of a Start-Demo script (module) for ISE from PowerShell 3+
# version: 0.1
# type: function
# author: Joel Bennett
# license: CC0
# function: Start-Demo
# x-poshcode-id: 4132
# x-archived: 2017-01-08T16:43:25
# x-published: 2014-04-25T17:44:00
#
# Import this as a module and call Start-Demo
#
function Start-Demo {
    param(
       $Text = $PSISE.CurrentFile.Editor.Text
    )
    $psISE.CurrentPowerShellTab.ConsolePane.Clear()

    $Tokens =  $Errors = $null
    $Script:Editor = $PSISE.CurrentFile.Editor
    $Script:Text = $Script:Editor.Text
    $AST = [System.Management.Automation.Language.Parser]::ParseInput( $Text, [ref]$Tokens, [ref]$Errors )
    if($Errors) { $Errors | Write-Error }
    # Assumes that demo scripts don't have begin/process blocks
    $Script:Statements = $AST.EndBlock.Statements.Extent
    $Script:Index = $Script:Offset = 0

    $Function:Prompt = { PreDemoPrompt; Pop-Demo }
}

function Stop-Demo {
    $Function:Prompt = $function:PreDemoPrompt
}

function Pop-Demo {
    if($Script:Index -lt $Script:Statements.Count) {
        $Statement = $Script:Statements[$Script:Index]
        # use the offset to make sure we type any leading comments, and not just the statement
        # $DemoStep = $Script:Text.Substring($Script:Offset, $Statement.EndOffset - $Script:Offset).TrimStart("`r`n")
        
        $DemoStep = $Statement.Text

        $Script:Editor.Select($Statement.StartLineNumber, $Statement.StartColumnNumber, $Statement.EndLineNumber, $Statement.EndColumnNumber)
        $Script:Offset = $Statement.EndOffset + 1
        # put it in the console
        $psISE.CurrentPowerShellTab.ConsolePane.InputText = $DemoStep
        $psISE.CurrentPowerShellTab.ConsolePane.Focus()
        $Script:Index += 1
    } else {
        Stop-Demo
    }
}

$function:PreDemoPrompt = $function:Prompt

if(!($psISE.CurrentPowerShellTab.AddOnsMenu.Submenus.DisplayName -eq "Start Demo")) {
    try {
        $psISE.CurrentPowerShellTab.AddOnsMenu.Submenus.Add('Start Demo',{Start-Demo},"F6")
    } catch [System.Management.Automation.MethodInvocationException] {
        $psISE.CurrentPowerShellTab.AddOnsMenu.Submenus.Add('Start Demo',{Start-Demo},$null)
    }
}