GithubHelp home page GithubHelp logo

Comments (6)

Log1x avatar Log1x commented on August 16, 2024 1

Alpine and React don't play nice together in the backend. If you get it working I'm interested.

from acf-composer.

fabianwurk avatar fabianwurk commented on August 16, 2024

Yeah, thought there may be a conflict. I'll have a deeper dig to see if I can find out more, and maybe test with Vue too. Will keep you posted.

from acf-composer.

fabianwurk avatar fabianwurk commented on August 16, 2024

I think JSX is the troublemaker - see this article: https://codewithhugo.com/alpine-js-react/

So, can disable it via on block:

    public $supports = [
       ............
        'jsx' => false,
    ];

But not sure what knock on effect that might have 🧐

from acf-composer.

Log1x avatar Log1x commented on August 16, 2024

It'd prevent the use of <InnerBlocks />

from acf-composer.

fabianwurk avatar fabianwurk commented on August 16, 2024

Suppose its a bit of a trade-off, with using Alpine or Inner Blocks - can't imagine using both together, so this method is a viable workaround.

from acf-composer.

dsturm avatar dsturm commented on August 16, 2024

I would rather use the $block->preview attribute to conditionally include the Alpine directives. Furthermore you should avoid use event shorthand @click and instead use x-on:click to prevent issues coming from blade directives. So in this example:

<div class="{{ $block->classes }}">

  <div @if (!$block->preview) x-data="{ count: 1 }" @endif>
    <p @if (!$block->preview) x-text="count" @endif></p>
    <button x-on:click="count++">Count Up</button>
    <button x-on:click="count--">Count Down</button>
  </div>

  <div>
    <InnerBlocks />
  </div>
</div>

from acf-composer.

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.