Code Monkey home page Code Monkey logo

Comments (8)

morgante avatar morgante commented on June 12, 2024 2

This should work:

engine marzano(0.1)
      language js
      
      `<$name $props>$body</$name>` where {
          $props <: contains `label={$label}` => ``,
          $newbody = `{$label}`,
      } => `<$name $props>$newbody</$name>`

from gritql.

morgante avatar morgante commented on June 12, 2024 1

jsx_attribute is a syntax tree node: https://docs.grit.io/language/patterns#syntax-tree-nodes

You can inspect the AST by clicking "debug" in the studio.

Text.Heading is technically two identifiers. Try using a string match instead:

                    $name <: "Text.Heading", // not found

from gritql.

gaki2 avatar gaki2 commented on June 12, 2024

@morgante Thank you so much.

from gritql.

romanlex avatar romanlex commented on June 12, 2024

@morgante what about if content is plain text?
<Text size={24} content='Some content'/>
https://app.grit.io/studio?key=MTd7mR3taj5k6i2sDL1mZ

from gritql.

morgante avatar morgante commented on June 12, 2024

@romanlex It looks like you have it working fine. You can drop the {} from the pattern to make it match a plain text property.

from gritql.

romanlex avatar romanlex commented on June 12, 2024

@morgante its work only when I use regexp for find string
see same link
work

$props <: contains r"content=\'(.*)\'"($children) => .

doesn't work

$props <: contains content='$children'

from gritql.

morgante avatar morgante commented on June 12, 2024

This should work instead of a regex:

$props <: contains jsx_attribute(name=`content`, $value) => .,
                or {
                    and {
                        $value <: string($fragment),
                        $value <: contains string_fragment() as $children
                    },
                    $children = $value
                }

from gritql.

romanlex avatar romanlex commented on June 12, 2024

oh, thx
where I can read about jsx_attribute?

And another question. Why I can find components with name wich contain .
For example

<$name $props />` where {
                or {
                    $name <: `Text`,
                    $name <: `Text.Heading`, // not found
                    $name <: `Anchor`,
                    $name <: `Amount`,
                    $name <: `ContextMenu.Item`, // not found
                },
                $props <: contains r"content=\{`(.*)`\}"($children) => .,
                $children = replaceSybmol($children)
            } => `<$name $props>$children</$name>

from gritql.

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.