Giter Site home page Giter Site logo

[request] `wpjson.settings` callback `fn` required to return passed `theme` instance; missing generated `theme.json` parts otherwise about bud HOT 2 CLOSED

strarsis avatar strarsis commented on June 2, 2024
[request] `wpjson.settings` callback `fn` required to return passed `theme` instance; missing generated `theme.json` parts otherwise

from bud.

Comments (2)

kellymears avatar kellymears commented on June 2, 2024

I'm willing to hear out arguments for the behavior being different, but this function is working as intended (and as documented).

It gives you the object and asks you to return something:

export interface Mutator {
  (
    json:
      | Partial<Theme.GlobalSettingsAndStyles['settings']>
      | Container<Partial<Theme.GlobalSettingsAndStyles['settings']>>,
  ):
    | Partial<Theme.GlobalSettingsAndStyles['settings']>
    | Container<Partial<Theme.GlobalSettingsAndStyles['settings']>>
}

interface settings {
  (
    input?:
      | Mutator
      | Container<Partial<Theme.GlobalSettingsAndStyles['settings']>>
      | Partial<Theme.GlobalSettingsAndStyles['settings']>
      | boolean,
    raw?: boolean,
  ): this
}

I think it's more confusing for this function to not use what is returned as a value. And it's pretty easy to always return a value with arrow fns and the container interface:

bud.wpjson.settings(theme => theme
  .set('color.custom', false)
  .set('color.customDuotone', false)
)

Regardless, wpjson.settings should arguably be deprecated in #2079 (currently not planning on that). But, I would use bud.wpjson.set over bud.wpjson.settings (PR soon on sage itself):

bud.wpjson
  .set(`settings.color.custom`, false)
  .set(`settings.color.customDuotone`, false)
  .set(`settings.color.customGradient`, false)
  .set(`settings.color.defaultDuotone`, false)

from bud.

github-actions avatar github-actions commented on June 2, 2024

Message to comment on stale issues. If none provided, will not mark issues stale

from bud.

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.