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:
which can then be used like
But I wanted to make something so I could immediatly have
3 Replies
But the only way Ive been able to make this work is by doing the following (work in progress testing):
which then results in the following workaround.
Because razor files are already brought dozn to C# through a roslyn generator, Im unsure if I could build something like I envisioned with the
<LucideIcon.Signature/>
ideaI don't know of any way you could make that work
Have eventually "figured out" a solution that I wanted, though Im still debating the fact if this is the best approach in the long run.
Made a small manual cli tool, instead of a Roslyn Incremental Generator, that parses the svg files from
lucide-static
into individual razor files, which follow the naming convention of Li{lucideName.ToPascalCase()}
(pseudo).
Ive also made the option to resolve the icon the old way, through a simple inject ILucideService
so you can now have two options. This service works by using an underlying dictionary with lazy loaded values, which is populated by a Roslyn Incremental Generator
meaning hat I can use an Icon in two ways:
For anyone wondering, the full package's code is here: (constructive feedback is always appreciated):
https://github.com/InfiniLore/lucide.blazorGitHub
GitHub - InfiniLore/lucide.blazor: Use Lucide Icons in your blazor ...
Use Lucide Icons in your blazor application. Contribute to InfiniLore/lucide.blazor development by creating an account on GitHub.