VOOZH about

URL: https://www.nuget.org/packages/slacker_HostedConsole/

⇱ NuGet Gallery | slacker_HostedConsole 1.0.3




slacker_HostedConsole 1.0.3

dotnet add package slacker_HostedConsole --version 1.0.3
 
 
NuGet\Install-Package slacker_HostedConsole -Version 1.0.3
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="slacker_HostedConsole" Version="1.0.3" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="slacker_HostedConsole" Version="1.0.3" />
 
Directory.Packages.props
<PackageReference Include="slacker_HostedConsole" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add slacker_HostedConsole --version 1.0.3
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: slacker_HostedConsole, 1.0.3"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package slacker_HostedConsole@1.0.3
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=slacker_HostedConsole&version=1.0.3
 
Install as a Cake Addin
#tool nuget:?package=slacker_HostedConsole&version=1.0.3
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

CodeSlackers.HostedConsole

Probably a bad name, but this sets up all the niceties you would get with a hosted app: DI and Logging, along with a way to split up a Console

Key Concepts

ConsoleScreenAppBuilder:

CreateConfigureConsoleScreenApplication to bootstrap the console app

var screen = ConsoleScreenAppBuilder.CreateConfigureConsoleScreenApplication(
 SolutionBuilderFlows.SolutionBuilderScreen,
 (context, collection) =>
 {
 collection.AddSingleton<IFlowIoService, FlowIoService>();
 collection.AddSingleton<IStateService<SolutionBuilderState>, StateService>();
 collection.AddTransient<IFlow, SolutionFlow>();
 collection.AddTransient<IFlow<SolutionBuilderState>, ProjectFlow>();
 collection.AddSingleton<IConsoleScreen, SolutionBuilderScreen>();
 });

await screen.Show();

IConsoleScreen:

This is the main view of any flow set. and the apps primary entry point to the user

public class SolutionBuilderScreen : IConsoleScreen
{
 
 private readonly IEnumerable<IFlow> _flows;
 public SolutionBuilderScreen(
 IEnumerable<IFlow> flows)
 {
 _flows = flows;

 }
 public string Title => SolutionBuilderFlows.SolutionBuilderScreen;
 public async Task Show()
 {
 Console.WriteLine("Welcome to the .net solution builder");
 var nextFlow = SolutionBuilderFlows.SolutionFlow;
 while (nextFlow != SolutionBuilderFlows.Quit)
 {
 var flow = _flows.FirstOrDefault(f => f.FlowName == nextFlow);

 if (flow == null)
 {
 Console.WriteLine("No solution flow found");
 return;
 }

 await flow.Run();
 nextFlow = flow.NextFlow;
 }
 
 }
}

IStateService

Manages the state from flow to flow. Just inject as a singleton and you are good

public interface IStateService<T>
{
 T GetState();
}

IFlow

This is where all the work happens. IO to the screen and, based on user selection set the next state.

public class SolutionFlow(
 IFlowIoService flowIoService, 
 IStateService<SolutionBuilderState> stateService,
 ILogger<SolutionFlow> logger) 
 : IFlow
{
 public string FlowName => SolutionBuilderFlows.SolutionFlow;
 public string NextFlow { get; set; } = SolutionBuilderFlows.Quit;
 public async Task Run()
 {
 var state = stateService.GetState();
 flowIoService.Writeline(what do you want?)
 //Removed for brevite---
 NextFlow = SolutionBuilderFlows.ProjectFlow;
 }
}```
### Menu Manager: 
simple wrapper around a console menu tool [ConsoleMenu](https://github.com/lechu445/ConsoleMenu)
```csharp
 // Simple yes or now
 var menuQuestions = MenuManager.AnswerQuestion(_questions, (menu, question) =>
 {
 projectType = question;
 menu.CloseMenu();
 }, "Please Select a Project Type");

 menuQuestions.Show();

 // multiple choise
 private readonly List<string> _questions = new() { "webapi", "worker", "blazor" };

 var menuQuestions = MenuManager.AnswerQuestion(_questions, (menu, question) =>
 {
 projectType = question;
 menu.CloseMenu();
 }, "Please Select a Project Type");


FAQ

Is this too complicated?

Probably, but it does make testing a lot easier, later I can show code coverage and the long term goal is to have a library of flows that can be chained togeter.

Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3 366 11/15/2023
1.0.2 231 11/15/2023