DragonFly.AspNetCore
1.0.2
See the version list below for details.
dotnet add package DragonFly.AspNetCore --version 1.0.2
NuGet\Install-Package DragonFly.AspNetCore -Version 1.0.2
<PackageReference Include="DragonFly.AspNetCore" Version="1.0.2" />
paket add DragonFly.AspNetCore --version 1.0.2
#r "nuget: DragonFly.AspNetCore, 1.0.2"
// Install DragonFly.AspNetCore as a Cake Addin #addin nuget:?package=DragonFly.AspNetCore&version=1.0.2 // Install DragonFly.AspNetCore as a Cake Tool #tool nuget:?package=DragonFly.AspNetCore&version=1.0.2
DragonFly » Headless ASP.NET Core CMS + Blazor
Features
- Define schema with custom fields
- Create, update, delete and publish/unpublish content items based on schema
- Create new Fields with FieldGenerator
- Create typed content items with ModelGenerator
- BlockField for structured page content
- TextBlock, HtmlBlock, ColumnBlock, GridBlock, AssetBlock, YouTubeBlock, CodeBlock,..
- Asset management
- Folder tree
- Asset metadata like ImageMetadata and PdfMetadata
- Use IAssetProcessing after asset upload
- Create thumbnails for image and pdf files with ImageWizard
- REST API
- Permissions for content, schema, asset, asset folder, webhooks
- Dynamic permissions for every schema
- Background tasks
- WebHooks
- MongoDB storage
- Create proxies with ProxyGenerator
- Admin interface with Blazor
Getting started
Prerequisites
- .NET 8.0 SDK
- Visual Studio 2022
- MongoDB instance
Create a new project from template
To use the project template you need first to download and install it from NuGet.
dotnet new install DragonFly.Templates
After this you can create the project with:
dotnet new DragonFly
If you have a remote MongoDB instance, you need to add some appsettings:
"MongoDB": {
"Hostname": "localhost",
"Database": "DragonFly_App",
"Port": 27017,
"Username": "",
"Password": ""
},
Use source generators to avoid reflection
- FieldGenerator
- ModelGenerator
- ProxyGenerator
- JsonSerializerContext
Supported fields
- StringField
- FloatField
- BoolField
- AssetField
- ReferenceField
- ComponentField
- ArrayField
- DateField
- IntegerField
- ColorField
- GeolocationField
- SlugField
- XmlField
- HtmlField
- BlockField (HeadingBlock, TextBlock, HtmlBlock, CodeBlock, ContainerBlock, ColumnBlock, AssetBlock, ReferenceBlock, GridBlock,..)
How to create new content schema and content item
IContentStorage contentStorage = ...;//use MongoStorage or ClientContentService (http client)
//create brand schema
ContentSchema schemaBrand = new ContentSchema("Brand")
.AddString("Name")
.AddSlug("Slug")
.AddTextArea("Description");
//Define schema for product
ContentSchema schemaProduct = new ContentSchema("Product")
.AddReference("Brand")
.AddString("Name", options => options.IsRequired = true)
.AddSlug("Slug")
.AddBool("IsAvailable", options => options.DefaultValue = true)
.AddFloat("Price")
.AddTextArea("Description", options => options.MaxLength = 255)
.AddArray("Attributes", options => options
.AddString("Name")
.AddString("Value"));
await contentStorage.CreateAsync(schemaProduct);
//create product by schema
ContentItem contentProduct = schemaProduct
.CreateContent()
.SetReference("Brand", new ContentItem(Guid.Parse(""), schemaBrand))
.SetString("Name", "ProductA")
.SetBool("IsAvailable", true)
.SetFloat("Price", 9.99)
.SetTextArea("Description", "...")
.AddArrayItem("Attributes", schemaProduct, item => item
.SetString("Name", "Size")
.SetString("Value", "M"));
await contentStorage.CreateAsync(contentProduct);
Create typed content
DragonFly.Generator
[ContentItem]
public partial class BlogPost
{
[DateField(Required = true)]
private DateTime? _date;
[StringField(Required = true, Searchable = true, ListField = true, MinLength = 8, MaxLength = 512)]
private string? _title;
[TextField]
private string? _description;
[SlugField(Required = true, Index = true)]
private string? _slug;
[AssetField(ListField = true, ShowPreview = true)]
private AssetField _image;
[BlockField]
private BlockField _mainContent;
}
Register typed content
builder.Services.AddDragonFly()
.AddModels(x => x.Add<BlogPost>());
Use queries for typed content
//get first item
var first = await ContentStorage.FirstOrDefaultAsync<BlogPostModel>(x => x
.Slug(x => x.Slug, slug));
//get all items
var result = await ContentStorage.QueryAsync<BlogPostModel>(x => x
.Published(true)
.Top(10)
.Slug(x => x.Slug, slug));
BackgroundTask
For long running jobs you can use the BackgroundTaskManager.
IBackgroundTaskManager taskManager = app.Services.GetRequiredService<IBackgroundTaskManager>();
taskManager.Start("Test", async ctx => await Task.Delay(TimeSpan.FromSeconds(60), ctx.CancellationToken));
DragonFly.AspNetCore
builder.Services.Configure<DragonFlyOptions>(Configuration.GetSection("General"));
builder.Services.Configure<MongoDbOptions>(Configuration.GetSection("MongoDB"));
//add DragonFly services
builder.Services.AddDragonFly()
.AddImageWizard()
.AddRestApi()
.AddMongoDbStorage()
.AddMongoDbIdentity()
.AddBlockField()
.AddApiKeys();
var app = builder.Build();
//init DragonFly
await app.InitDragonFlyAsync();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseWebAssemblyDebugging();
}
app.UseDragonFly(x => x
.MapImageWizard()
.MapApiKey()
.MapIdentity()
.MapRestApi());
app.UseDragonFlyManager();
app.UseRouting();
app.Run();
DragonFly.Client (Blazor)
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<DragonFly.App.Client.App>("app");
//Register DragonFly components
builder.AddDragonFly()
.AddRestApi()
.AddBlockField()
.AddIdentity()
.AddApiKeys();
WebAssemblyHost host = builder.Build();
await host.InitDragonFlyAsync();
await host.RunAsync();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- DragonFly.Core (>= 1.0.2)
- Microsoft.AspNetCore.Components.WebAssembly.Server (>= 8.0.0)
- PdfPig (>= 0.1.8)
- SixLabors.ImageSharp (>= 3.0.2)
NuGet packages (8)
Showing the top 5 NuGet packages that depend on DragonFly.AspNetCore:
Package | Downloads |
---|---|
DragonFly.ApiKeys
Headless CMS based on ASP.NET Core and Blazor |
|
DragonFly.Identity
Headless CMS based on ASP.NET Core and Blazor |
|
DragonFly.Permissions
Headless CMS based on ASP.NET Core and Blazor |
|
DragonFly.BlockField
Headless CMS based on ASP.NET Core and Blazor |
|
DragonFly.ImageWizard
Headless CMS based on ASP.NET Core and Blazor |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.15 | 209 | 4/27/2024 |
1.0.14 | 221 | 3/19/2024 |
1.0.13 | 141 | 3/19/2024 |
1.0.12 | 240 | 3/7/2024 |
1.0.11 | 204 | 3/7/2024 |
1.0.10 | 220 | 3/6/2024 |
1.0.9 | 250 | 3/3/2024 |
1.0.8 | 254 | 2/22/2024 |
1.0.7 | 294 | 2/7/2024 |
1.0.6 | 324 | 1/18/2024 |
1.0.5 | 433 | 12/18/2023 |
1.0.4 | 411 | 12/2/2023 |
1.0.3 | 389 | 11/30/2023 |
1.0.2 | 395 | 11/30/2023 |
1.0.1 | 387 | 11/30/2023 |
0.9.32 | 678 | 8/25/2023 |
0.9.31 | 720 | 7/27/2023 |
0.9.30 | 731 | 7/27/2023 |
0.9.22 | 766 | 6/30/2023 |
0.9.20 | 787 | 6/27/2023 |
0.9.19 | 802 | 6/22/2023 |
0.9.17 | 834 | 5/9/2023 |
0.9.16 | 869 | 4/28/2023 |
0.9.15 | 842 | 4/27/2023 |
0.9.14 | 774 | 4/27/2023 |
0.9.13 | 1,062 | 4/15/2023 |
0.9.12 | 1,033 | 3/19/2023 |
0.9.11 | 1,076 | 3/15/2023 |
0.9.10 | 1,050 | 3/5/2023 |
0.9.9 | 1,047 | 3/3/2023 |
0.9.8 | 1,056 | 3/2/2023 |
0.9.7 | 1,138 | 1/29/2023 |
0.9.6 | 1,178 | 1/27/2023 |
0.9.5 | 1,164 | 1/25/2023 |
0.9.3 | 1,192 | 1/2/2023 |
0.9.2 | 1,227 | 1/2/2023 |
0.9.0 | 956 | 12/28/2022 |
0.8.3 | 416 | 12/19/2022 |
0.8.2 | 400 | 12/18/2022 |
0.4.5-alpha | 235 | 10/1/2022 |
0.4.4-alpha | 267 | 9/22/2022 |
0.4.3-alpha | 249 | 9/22/2022 |
0.4.2-alpha | 252 | 9/21/2022 |
0.4.1-alpha | 217 | 9/21/2022 |
0.4.0-alpha | 162 | 9/21/2022 |
0.3.2 | 659 | 8/14/2022 |
0.3.1 | 523 | 8/14/2022 |
0.3.0 | 797 | 3/20/2022 |
0.2.5 | 825 | 1/31/2022 |
0.2.4 | 438 | 11/22/2021 |
0.2.2 | 466 | 11/11/2021 |
0.2.1 | 497 | 11/10/2021 |
0.2.0 | 347 | 11/10/2021 |
0.1.4 | 433 | 3/5/2021 |
0.1.0 | 601 | 2/16/2021 |