Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shorthand way of getting inline style or getComputedStyle property #134

Closed
bob2517 opened this issue Mar 26, 2021 · 3 comments
Closed
Assignees
Labels
docs to do Documentation still needs doing before this can get released done on branch This issue has been committed to the latest branch, and will get merged with the next release
Milestone

Comments

@bob2517
Copy link
Member

bob2517 commented Mar 26, 2021

Need a handy way of referencing an inline style property. This has come up on a work project but there's a workaround so no major rush.

Possible syntax could be {:property}. Eg.

.myDiv:click {
    $rememberColor: "{:color}";    /* gets existing color and assigns to regular variable as a string */
    color: green;
}
.something:click {
    myDiv {
        color: {$rememberColor};
    }
}

Needs to work on any style. This is not the same solution as using CSS variables, which would work fine too.

This wouldn't be a variable type. Like the attribute {@...} syntax it can't be assigned to anything. It's just a way of getting values.

@bob2517 bob2517 self-assigned this Mar 26, 2021
@bob2517
Copy link
Member Author

bob2517 commented Oct 3, 2022

Probably worth doing a getComputedStyle variant for this too.

Maybe {::color} for that, which would follow the attribute @, property @@ convention. Basically doubling up the colon for the calculated value.

@bob2517 bob2517 closed this as completed Sep 30, 2023
@bob2517 bob2517 reopened this Mar 10, 2024
@bob2517
Copy link
Member Author

bob2517 commented Mar 10, 2024

Note to self: getComputedStyle returns a live CSSStyleDeclaration object, which could be remembered during an event flow to avoid doing it more than once for an element. Would just need to clean it up at the end of each event flow for the sake of SPA memory if that method is employed.

@bob2517 bob2517 added this to the 2.16.0 milestone Mar 10, 2024
@bob2517 bob2517 added the in progress This issue is currently being worked on label Mar 10, 2024
@bob2517 bob2517 changed the title Add way of getting style property Add shorthand way of getting defined style or getComputedStyle property Mar 10, 2024
@bob2517 bob2517 changed the title Add shorthand way of getting defined style or getComputedStyle property Add shorthand way of getting inline style or getComputedStyle property Apr 14, 2024
@bob2517 bob2517 added done on branch This issue has been committed to the latest branch, and will get merged with the next release docs to do Documentation still needs doing before this can get released and removed in progress This issue is currently being worked on labels Apr 14, 2024
@bob2517
Copy link
Member Author

bob2517 commented Apr 14, 2024

Closing pending release.

@bob2517 bob2517 closed this as completed Apr 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs to do Documentation still needs doing before this can get released done on branch This issue has been committed to the latest branch, and will get merged with the next release
Projects
None yet
Development

No branches or pull requests

1 participant