Skip to content
New issue

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

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

Already on GitHub? # to your account

Request: access to root in transform callback #108

Closed
luttje opened this issue Jun 11, 2022 · 1 comment
Closed

Request: access to root in transform callback #108

luttje opened this issue Jun 11, 2022 · 1 comment

Comments

@luttje
Copy link
Contributor

luttje commented Jun 11, 2022

Hi there, thanks for this useful plugin!

From your other posts you seem very busy atm, so please do ignore this request until you have time. I could help by making a PR for this if you like the idea.

Request

Right now the transform callback only receives strings as parameters. It would be useful if it at least also received the postcss root node to support more complex filtering.

Example use-case

I would use this for adding a prefix, but only on the condition that the root has no comment /* !allGlobal */ as it's first node. This is already possible, but requires having to parse the file again.

How it could work:

// [...]
transform: function (prefix, selector, prefixedSelector, file, root) {
    const rootNode = root.first;

    // etc.:
    if (rootNode.type === 'comment' && rootNode.text.trim().toLowerCase() === '!allglobal') {
        return selector;
    } else {
        return prefixedSelector;
    }
}

How I make this work now:

const fs = require('fs');
// [...]
transform: function (prefix, selector, prefixedSelector, file) {
    const rootNode = postcss.parse(fs.readFileSync(file)).first;

    // etc...
}

Thanks for your time. Good luck to you!

@RadValentin
Copy link
Owner

@luttje If you can make a PR implementing this functionality, I can find time to review it

RadValentin pushed a commit that referenced this issue Jun 17, 2022
* as discussed in #108

* seperate tests and fixtures

* uniform parameter names + readme
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants