VOOZH about

URL: https://www.nuget.org/packages/DragonFly.Proxy/

⇱ NuGet Gallery | DragonFly.Proxy 0.9.20




👁 Image
DragonFly.Proxy 0.9.20

dotnet add package DragonFly.Proxy --version 0.9.20
 
 
NuGet\Install-Package DragonFly.Proxy -Version 0.9.20
 
 
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="DragonFly.Proxy" Version="0.9.20" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DragonFly.Proxy" Version="0.9.20" />
 
Directory.Packages.props
<PackageReference Include="DragonFly.Proxy" />
 
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 DragonFly.Proxy --version 0.9.20
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DragonFly.Proxy, 0.9.20"
 
 
#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 DragonFly.Proxy@0.9.20
 
 
#: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=DragonFly.Proxy&version=0.9.20
 
Install as a Cake Addin
#tool nuget:?package=DragonFly.Proxy&version=0.9.20
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

DragonFly - Headless CMS based on ASP.NET Core and Blazor

👁 License: MIT

Package Release
DragonFly.Core 👁 NuGet
DragonFly.AspNetCore 👁 NuGet
DragonFly.API 👁 NuGet
DragonFly.Client 👁 NuGet
DragonFly.BlockField 👁 NuGet
DragonFly.Proxy 👁 NuGet
DragonFly.ImageWizard 👁 NuGet
DragonFly.MongoDB 👁 NuGet
DragonFly.Identity 👁 NuGet
DragonFly.ApiKeys 👁 NuGet

Getting started

Prerequisites

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": ""
 },

DragonFly

👁 grafik

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

[ContentItem("BlogPost")]
public class BlogPostModel : EntityPageModel
{
 [DateField(Required = true)]
 public virtual DateTime? Date { get; set; }

 [StringField(Required = true, Searchable = true, ListField = true, MinLength = 8, MaxLength = 512)]
 public virtual string Title { get; set; }

 [TextField]
 public virtual string Description { get; set; }

 [SlugField(Required = true, Index = true)]
 public virtual string Slug { get; set; }

 [AssetField(ListField = true, ShowPreview = true)]
 public virtual AssetField Image { get; set; }

 [BlockField]
 public virtual BlockField MainContent { get; set; }
}
Register typed content
builder.Services.AddDragonFly()
 .AddProxy(x => x.AddType<BlogPostModel>()); 
Use queries for typed content
//get first item
var first = await ContentStorage.FirstOrDefaultAsync<BlogPostModel>(x => x
 .SlugQuery(x => x.Slug, slug));

//get all items
var result = await ContentStorage.QueryAsync<BlogPostModel>(x => x
 .Published(true)
 .Top(10)
 .SlugQuery(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 net7.0 net7.0 is compatible.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  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
0.9.20 313 6/27/2023
0.9.19 267 6/22/2023
0.9.17 305 5/9/2023
0.9.16 303 4/28/2023
0.9.15 307 4/27/2023
0.9.14 303 4/27/2023
0.9.13 307 4/15/2023
0.9.12 366 3/19/2023
0.9.11 364 3/15/2023
0.9.10 386 3/5/2023
0.9.9 363 3/3/2023
0.9.8 363 3/2/2023
0.9.7 418 1/29/2023
0.9.6 408 1/27/2023
0.9.5 442 1/25/2023
0.9.3 456 1/2/2023
0.9.2 432 1/2/2023
0.9.0 437 12/28/2022
0.8.3 454 12/19/2022
0.8.2 433 12/18/2022
Loading failed