Home >Web Front-end >JS Tutorial >Write in Astro: the syntax ✍️
Hello everyone ?
In this article, we'll talk about Astro syntax and how it's incredibly easy to learn if you're comfortable with HTML.
Let's start! ?
The answer to the question is yes.
Astro syntax is a "superset" of HTML. The syntax was designed to feel familiar to anyone with experience writing HTML or JSX, and adds support for including components and JavaScript expressions.
If you're a React developer, you'll find a lot of similarities when developing a project at the syntax.
You can define local JavaScript variables inside of the frontmatter component script between the two code fences of an Astro component. You can then inject these variables into the component’s HTML template.
Where you've seen this practice before? That's right, JSX! ?
--- const name = "Hugo"; --- <div> <h1>Hello, I'm {name}!</h1> </div>
Local variables can be used in curly brackets to pass values to components created and invoked in the project.
We think the example above is a generic component that takes "name" as props:
--- const name = "Hugo"; --- <HelloComponent name={name} />
It is not possible to pass functions and objects to HTML elements, because HTML attributes will be converted to strings.
For example:
--- function handleClick () { console.log("button clicked!"); } --- <!-- ❌ This doesn't work! ❌ --> <button onClick={handleClick}>Click me!</button>
If you want use a client-side script to add the event handler, you'll need to use vanilla JavaScript like this:
<button> <h2> Dynamic HTML </h2> <p>It is possible generate dynamic HTML with JavaScript function like JSX, in this way for example:<br> </p> <pre class="brush:php;toolbar:false">--- const languages = ["Python", "JavaScript", "C#"]; --- <ul> {languages.map((lang) => ( <li>{lang}</li> ))} </ul>
Astro can conditionally display HTML using JSX logical operators and ternary expressions, in this way:
--- const visible = true; --- {visible && <p>Show me!</p>} {visible ? <p>Show me!</p> : <p>Else show me!</p>}
This is a great feature: Astro provide the possibility to assign an HTML tag or even a component to a variable:
--- import HelloComponent from "./HelloComponent.astro"; const Title = 'h1' const Component = HelloComponent; --- <Title>Hello!</Title> <Component />
However, three points must be considered when using dynamic tags:
Variable names must be capitalized. For example, use Title, not title: Astro will try to render your variable name as a literal HTML tag.
Hydration directives are not supported. When using client:* hydration directives, Astro needs to know which components to bundle for production, and the dynamic tag pattern prevents this from working.
The define:vars directive is not supported. If you cannot wrap the children with an extra element, then you can manually add a to your Element (Title in the example above).
Astro supports <>> notation like JSX's syntax to wrap any element within and also provides a built-in
As mentioned at the beginning, Astro syntax is a superset of HTML: it was designed to feel familiar to anyone with HTML or JSX.
But there are a couple of key differences between .astro files and JSX.
Attributes: in Astro, you use the standard kebab-case format for all HTML attributes instead of the camelCase used in JSX and this even works for class, which is not supported by React.
Multiple Elements: Astro component template can render multiple elements with no need to wrap everything in a single
Comments: both HTML and JavaScript comments are supported.
Astro's syntax is a super set of HTML, which allows frontend developers of all kinds to work as if they were using HTML or JSX.
It is amazing, and now...
Happy coding!✨
Hi??
My name is Domenico, software developer passionate of Vue.js framework, I write article about it for share my knowledge and experience.
Don't forget to visit my Linktree to discover my projects ??
Linktree: https://linktr.ee/domenicotenace
Follow me on dev.to for other articles ??
If you like my content or want to support my work on GitHub, you can support me with a very small donation.
I would be grateful ?
The above is the detailed content of Write in Astro: the syntax ✍️. For more information, please follow other related articles on the PHP Chinese website!