JeyDotC.JustCs.Mvc
1.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package JeyDotC.JustCs.Mvc --version 1.0.0
NuGet\Install-Package JeyDotC.JustCs.Mvc -Version 1.0.0
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="JeyDotC.JustCs.Mvc" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JeyDotC.JustCs.Mvc --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: JeyDotC.JustCs.Mvc, 1.0.0"
#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.
// Install JeyDotC.JustCs.Mvc as a Cake Addin #addin nuget:?package=JeyDotC.JustCs.Mvc&version=1.0.0 // Install JeyDotC.JustCs.Mvc as a Cake Tool #tool nuget:?package=JeyDotC.JustCs.Mvc&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
JustCs
Forget about templating, use just C#!
Create your page:
public class MyPage : ComponentElement
{
protected override Element Render(IElementAttributes props) =>
_<Html>(
_<Head>(
_<Title>("Hello World")
),
_<Body>(
_<H1>("Hello from JustCs!")
)
);
}
Serve your page:
[ApiController]
[Route("[controller]")]
public class MyPageController : ControllerBase
{
[HttpGet]
public IView Index() => new View<MyPage>();
}
Installation
dotnet add package JeyDotC.JustCs -version 1.0.1
dotnet add package JeyDotC.JustCs.Mvc --version 1.0.0
Setup
At your Startup.cs file, add this to your controller options:
public void ConfigureServices(IServiceCollection services)
{
services.AddControllers(options =>
{
options.WithJustCs(); //<-- This allows API controllers to render JustCs HTML views.
});
}
Basic Usage
Create a component
Just create a class that extends ComponentElement
(or ComponentElement<>
) and implement the Render
method.
public class MyPage : ComponentElement
{
protected override Element Render(IElementAttributes props) =>
_<Html>(
_<Head>(
_<Title>("Hello World")
),
_<Body>(
_<H1>("Hello from JustCs!")
_<Form>(new Attrs { Method = "POST", Action = "/login" },
_<Label>(new Attrs { For = "username" }, "Username"),
_<Input>(new Attrs { Id = "username", Name = "username", Type = "text", Placeholder = "User Name" }),
_<Label>(new Attrs { For = "password" }, "Password"),
_<Input>(new Attrs { Id = "username", Name = "username", Type = "password" }),
_<Button>(new Attrs { Type = "submit" }, "Login"),
)
)
);
}
Return the view as a response
At your controller, just create a View<>
instance which will serve as the HTTP response.
[ApiController]
[Route("[controller]")]
public class MyPageController : ControllerBase
{
[HttpGet]
public IView Index() => new View<MyPage>();
}
The View class, since it serves as the response, which means you can set the status code and headers too.
[ApiController]
[Route("[controller]")]
public class MyPageController : ControllerBase
{
[HttpGet]
public IView Index() => new View<MyPage>();
[HttpGet]
public IView Error() => new View<MyErrorPage>(null, HttpStatusCode.ServerError)
.WithHeader("X-Some-Header", "some-value");
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- JeyDotC.JustCs (>= 1.0.0)
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.