Coder Social home page Coder Social logo

chanan / blazorous Goto Github PK

View Code? Open in Web Editor NEW
47.0 5.0 3.0 2.72 MB

Maintainable CSS with Blazor

Home Page: https://chanan.github.io/Blazorous/

License: The Unlicense

C# 19.29% CSS 0.87% HTML 41.49% JavaScript 38.35%
blazor css glamor glamorous

blazorous's Issues

Provide a way to add shorthand css attributes

Example from Glamorous:

<glamorous.Div maxWidth={600} margin="70px auto" fontSize={24} />

Convert "Unknown" attributes that match css properties to a css style.

So this:

<Dynamic TagName="div" maxWidth="600" margin="70px auto" fontSize="24" />

Should be equivalent to:

<Dynamic TagName="div"css="@css" />

@functions {
   Css css = Css.CreateNew().AddRule("max-width", 600).AddRule("margin", "70px auto").AddRule("font-size", 24);
}

Strings in json not working

From: https://glamorous.rocks/getting-started/

The following does not work in Blazorous:

const ListItem = glamorous.li({
  ':before': {
    content: '"๐Ÿ’Ž"',
  }
})

The error:

MonoPlatform.ts:70 Uncaught (in promise) Error: Microsoft.AspNetCore.Blazor.Browser.Interop.JavaScriptException: Unexpected token * in JSON at position 26
SyntaxError: Unexpected token ๐Ÿ’Ž in JSON at position 26
    at JSON.parse (<anonymous>)

Add a library of pre made components?

Consider making a library of pre made components for each html tag such as:

<Dynamic TagName="h1" ...>@ChildContent</Dynamic>

Give it a standard name such as BlazorousH1 that can then be used in the site:

<BlazorousH1>Heading 1</BlazorousH1>

The heading can then be styled like other Dynamic tags either with the css prop or if css style attributes are implemented.

Allow setting a class name

From Glamorous:

const Alert = glamorous.div('alert', props => `alert-${props.type}`);

This will result in:

<div class="alert alert-danger">...</div>

Merging styles does not work

The following does not work correctly:

Css secondPre = Css.CreateNew()
        .AddRule("position", "relative")
        .AddRule("padding", 20)
        .OpenSelector(":before")
            .AddRule("position", "absolute")
            .AddRule("top", 0)
            .AddRule("opacity", 0.6)
            .AddRule("left", "7px")
            .AddRule("font-size", "0.8rem")
        .CloseSelector()
        .AddDynamicRule((css, attributes) =>
        {
            var lang = attributes.GetStringAttribute("language");
            var isHtml = "html" == lang;
            css.OpenSelector(":before")
                .AddRule("content", $"\\\"{lang}\\\"")
            .CloseSelector();
            if (isHtml)
            {
                css.AddRule("background-color", "#0c1e35")
                    .AddRule("color", "white");
            }
        });

When converted to json, :before isn't merged, its overwritten.

Support speedy mode

From glamor readme:

there are two methods by which the library adds styles to the document -

  • by appending css 'rules' to a browser backed stylesheet. This is really fast, but has the disadvantage of making the styles uneditable in the devtools sidebar.
  • by appending text nodes to a style tag. This is fairly slow, but doesn't have the editing drawback.

as a compromise, we enable the former 'speedy' mode NODE_ENV=production, and disable it otherwise. You can manually toggle this with the speedy() function.

Add pseudo selectors to Dynamic

Consider adding something like so:

<Dynamic TagName="a" hover="@hover">Link with a red hover</Dynamic>

ICss hover = Css.CreateNew().AddRule("color", "red");

Append an array of rules

Add to the API a way to append multiple rules at once. Something like:

css.AddRules("font-size", "2.4em", "margin-top", 10);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.