AnnaSasDev
AnnaSasDev
CC#
Created by AnnaSasDev on 3/20/2025 in #help
Extending a razor component so I can make developer experience a bit easier
Hey there, this might be a qustion that has no answer but Im making a small library so I can easily use Lucide icons in my blazor web app. Ive made a small component that is basically a wrapper around the svg data: LucideIcon.razor:
@inherits ComponentBase
<svg xmlns="http://www.w3.org/2000/svg"
width="@Width"
height="@Height"
viewBox="0 0 24 24"
fill="@Fill"
stroke="@Stroke"
stroke-width="@StrokeWidth"
stroke-linecap="@StrokeLineCap"
stroke-linejoin="@StrokeLineJoin"
@attributes="AdditionalAttributes">
@SvgContent
</svg>

@code {
[Parameter] public int Width { get; set; } = 24;
[Parameter] public int Height { get; set; } = 24;
[Parameter] public string Fill { get; set; } = "none";
[Parameter] public string Stroke { get; set; } = "currentColor";
[Parameter] public int StrokeWidth { get; set; } = 2;
[Parameter] public string StrokeLineCap { get; set; } = "round";
[Parameter] public string StrokeLineJoin { get; set; } = "round";

public string NameCache = string.Empty;
[Parameter] public string Name {
get => NameCache;
set {
NameCache = value;
SvgContent = LucideService.GetIconContent(NameCache);
}
}

[Parameter(CaptureUnmatchedValues = true)]
public Dictionary<string, object> AdditionalAttributes { get; set; } = null!;

[Parameter]
public MarkupString SvgContent { get; set; }
}
@inherits ComponentBase
<svg xmlns="http://www.w3.org/2000/svg"
width="@Width"
height="@Height"
viewBox="0 0 24 24"
fill="@Fill"
stroke="@Stroke"
stroke-width="@StrokeWidth"
stroke-linecap="@StrokeLineCap"
stroke-linejoin="@StrokeLineJoin"
@attributes="AdditionalAttributes">
@SvgContent
</svg>

@code {
[Parameter] public int Width { get; set; } = 24;
[Parameter] public int Height { get; set; } = 24;
[Parameter] public string Fill { get; set; } = "none";
[Parameter] public string Stroke { get; set; } = "currentColor";
[Parameter] public int StrokeWidth { get; set; } = 2;
[Parameter] public string StrokeLineCap { get; set; } = "round";
[Parameter] public string StrokeLineJoin { get; set; } = "round";

public string NameCache = string.Empty;
[Parameter] public string Name {
get => NameCache;
set {
NameCache = value;
SvgContent = LucideService.GetIconContent(NameCache);
}
}

[Parameter(CaptureUnmatchedValues = true)]
public Dictionary<string, object> AdditionalAttributes { get; set; } = null!;

[Parameter]
public MarkupString SvgContent { get; set; }
}
which can then be used like
<LucideIcon Name="signature" />
<LucideIcon Name="signature" />
But I wanted to make something so I could immediatly have
<LucideIcon.Signature/>
<LucideIcon.Signature/>
4 replies
CC#
Created by AnnaSasDev on 3/1/2025 in #help
Issue with Github Actions when using Node & Dotnet together
So this is quite a bit of a weird issue Ive been stuck on for a few hours now, no AI can help and reading docs isnt working either. Ive made a small library so I can use Lucide Icons as Components within Blazor, and it works> The issue isnt with the code, but with the github action. I rely on downloading the lucide-static npm package, which is then used by my source generator in InfiniLore.Lucide.Generators.Raw to extract all the data that I need. Somewhere somehow I dont understand how github actions is installing the node module correctly, but then dotnet cant find it ... Ill link the repo directly, because I think just giving some snippets will fill everything up with random files too much https://github.com/InfiniLore/lucide.blazor Thanks for any help in advance (The repo is not in its final state but is functional, as I want to try and see if I can implement some kind of system close to tree-shaking so I have the option to only send over icons used by the library in Wasm mode, so we arent sending over tons of unused data )
2 replies
CC#
Created by AnnaSasDev on 2/20/2025 in #help
Issue with configuring Auth0 and the "Allowed Callback url"
Hey I've been trying to setup auth0 for a project of mine now for the past few days and I don't have a clue what I'm doing wrong anymore. The login and logout code are working perfectly, but on auth/callback it doesn't ever trigger. in Auth0's application dashboard, I have set my allowed Callback Urls to https://localhost:7059/callback, so all should in theory work as far as I understand. (the server is defined to run on port 7059 and is running well thanks to me knowing the login and logout system work. I've tried to look up for the same issue, and although I have founds lots forum posts on their own website, I still can't figure out what I'm doing wrong. Any help would be greatly appreciated.
13 replies
CC#
Created by AnnaSasDev on 1/9/2025 in #help
Roslyn not finding a referenced package
Hey there Over the past months I've really fallen in love with writing my own Roslyn code generators. My Discriminated Unions library heavily relies on this, and because I have noticed that some of my generators share the same basic code, I wanted to write a simple library I could use in my various projects : https://github.com/code-of-chaos/cs-code_of_chaos-generator_tools The issue now is that I try and use the uploaded nuget package in the consumer Roslyn generator found here: https://github.com/AterraEngine/unions-cs/blob/core/src/AterraEngine.Unions.Generators/AterraEngine.Unions.Generators.csproj Within the IDE (rider) everything seems to be fine in the generator's code as it discovers all the types within the package and I'm able to use them when I'm writing code, but whenever I try and use the generator no code appears and I get the error :
System.IO.FileNotFoundException: Could not load file or assembly 'CodeOfChaos.GeneratorTools, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
File name: 'CodeOfChaos.GeneratorTools, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null'
at AterraEngine.Unions.Generators.UnionGenerator.GenerateUnionCode(UnionObject unionObject)
at AterraEngine.Unions.Generators.UnionGenerator.GenerateSources(SourceProductionContext context, ValueTuple`2 source) in C:\Dev\unions-cs\src\AterraEngine.Unions.Generators\UnionGenerator.cs:line 163
at Microsoft.CodeAnalysis.UserFunctionExtensions.<>c__DisplayClass3_0`2.<WrapUserAction>b__0(TInput1 input1, TInput2 input2, CancellationToken token)
System.IO.FileNotFoundException: Could not load file or assembly 'CodeOfChaos.GeneratorTools, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
File name: 'CodeOfChaos.GeneratorTools, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null'
at AterraEngine.Unions.Generators.UnionGenerator.GenerateUnionCode(UnionObject unionObject)
at AterraEngine.Unions.Generators.UnionGenerator.GenerateSources(SourceProductionContext context, ValueTuple`2 source) in C:\Dev\unions-cs\src\AterraEngine.Unions.Generators\UnionGenerator.cs:line 163
at Microsoft.CodeAnalysis.UserFunctionExtensions.<>c__DisplayClass3_0`2.<WrapUserAction>b__0(TInput1 input1, TInput2 input2, CancellationToken token)
I've been stuck at this for a few hours now, and I'm lost at where I've created some issue
8 replies