Git Product home page Git Product logo

Comments (5)

sophiebits avatar sophiebits commented on May 24, 2024 1

Bunch of discussion about this problem in React proper here: facebook/react#6701.

from aphrodite.

kentcdodds avatar kentcdodds commented on May 24, 2024

Yeah, I don't think that you're doing anything wrong. I guess that aphrodite doesn't support this use case. I like the solution with an array of styles personally. Thoughts from others who actually can commit to this repo? :-)

from aphrodite.

jlfwong avatar jlfwong commented on May 24, 2024

Hi @einarlove, thanks for the report! There is indeed no way to get these semantics in Aphrodite.

The array proposal seems reasonable to me, but am unsure of the desired behavior in the case of overrides.

In CSS, if you have the following:

.a {
  color: #435;
  color: hsl(40, 50%, 50%);
}

#b {
  color: hsl(20, 30%, 50%);
}

Then does the fallback of #435 still apply when you have <div class="a" id="b">?

If it does, replicating that functionality on Aphrodite is going to be super awkward, because the semantics of the following would be unclear to me:

const styles = StyleSheet.create({
   a: { color: ['#435', 'hsl(40, 50%, 50%)'] },
   b: { color: 'hsl(20, 30%, 50%)' }
});

<div className={css(styles.a, styles.b)}>

Right now, for merging values we do a deep merge, so the result would be { color: 'hsl(20, 30%, 50%)' }, and you'd lose the fallback in the case of an override. If that's acceptable, then this diff shouldn't be too crazy.

from aphrodite.

einarlove avatar einarlove commented on May 24, 2024

I'm not familiar with the implementation of aphrodite, so the merge came as a surprise.

If it's not possible / hard to refactor the current implementation, would it be possible to start with the above example and give notice in the docs of the gotcha?

Right now we have no way to give a fallback.

from aphrodite.

austenpayan avatar austenpayan commented on May 24, 2024

Have there been any updates on this topic since last year?

from aphrodite.

Related Issues (20)

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.