aboutsummaryrefslogtreecommitdiff
path: root/examples/framework-multiple/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-multiple/src')
-rw-r--r--examples/framework-multiple/src/components/preact/PreactCounter.tsx22
-rw-r--r--examples/framework-multiple/src/components/react/ReactCounter.tsx21
-rw-r--r--examples/framework-multiple/src/components/solid/SolidCounter.tsx21
-rw-r--r--examples/framework-multiple/src/components/svelte/SvelteCounter.svelte30
-rw-r--r--examples/framework-multiple/src/components/vue/VueCounter.vue33
-rw-r--r--examples/framework-multiple/src/pages/index.astro48
-rw-r--r--examples/framework-multiple/src/styles/global.css21
7 files changed, 196 insertions, 0 deletions
diff --git a/examples/framework-multiple/src/components/preact/PreactCounter.tsx b/examples/framework-multiple/src/components/preact/PreactCounter.tsx
new file mode 100644
index 000000000..5ad164cc2
--- /dev/null
+++ b/examples/framework-multiple/src/components/preact/PreactCounter.tsx
@@ -0,0 +1,22 @@
+/** @jsxImportSource preact */
+
+import { useState } from 'preact/hooks';
+import type { ComponentChildren } from 'preact';
+
+/** A counter written with Preact */
+export function PreactCounter({ children }: { children?: ComponentChildren }) {
+ const [count, setCount] = useState(0);
+ const add = () => setCount((i) => i + 1);
+ const subtract = () => setCount((i) => i - 1);
+
+ return (
+ <>
+ <div class="counter">
+ <button onClick={subtract}>-</button>
+ <pre>{count}</pre>
+ <button onClick={add}>+</button>
+ </div>
+ <div class="counter-message">{children}</div>
+ </>
+ );
+}
diff --git a/examples/framework-multiple/src/components/react/ReactCounter.tsx b/examples/framework-multiple/src/components/react/ReactCounter.tsx
new file mode 100644
index 000000000..84681035d
--- /dev/null
+++ b/examples/framework-multiple/src/components/react/ReactCounter.tsx
@@ -0,0 +1,21 @@
+/** @jsxImportSource react */
+
+import { useState, type ReactNode } from 'react';
+
+/** A counter written with React */
+export function Counter({ children }: { children?: ReactNode }) {
+ const [count, setCount] = useState(0);
+ const add = () => setCount((i) => i + 1);
+ const subtract = () => setCount((i) => i - 1);
+
+ return (
+ <>
+ <div className="counter">
+ <button onClick={subtract}>-</button>
+ <pre>{count}</pre>
+ <button onClick={add}>+</button>
+ </div>
+ <div className="counter-message">{children}</div>
+ </>
+ );
+}
diff --git a/examples/framework-multiple/src/components/solid/SolidCounter.tsx b/examples/framework-multiple/src/components/solid/SolidCounter.tsx
new file mode 100644
index 000000000..cb9219608
--- /dev/null
+++ b/examples/framework-multiple/src/components/solid/SolidCounter.tsx
@@ -0,0 +1,21 @@
+/** @jsxImportSource solid-js */
+
+import { createSignal, type JSX } from 'solid-js';
+
+/** A counter written with Solid */
+export default function SolidCounter(props: { children?: JSX.Element }) {
+ const [count, setCount] = createSignal(0);
+ const add = () => setCount(count() + 1);
+ const subtract = () => setCount(count() - 1);
+
+ return (
+ <>
+ <div id="solid" class="counter">
+ <button onClick={subtract}>-</button>
+ <pre>{count()}</pre>
+ <button onClick={add}>+</button>
+ </div>
+ <div class="counter-message">{props.children}</div>
+ </>
+ );
+}
diff --git a/examples/framework-multiple/src/components/svelte/SvelteCounter.svelte b/examples/framework-multiple/src/components/svelte/SvelteCounter.svelte
new file mode 100644
index 000000000..641312ae1
--- /dev/null
+++ b/examples/framework-multiple/src/components/svelte/SvelteCounter.svelte
@@ -0,0 +1,30 @@
+<!-- @component
+A counter written with Svelte
+-->
+<script lang="ts">
+ import type { Snippet } from 'svelte';
+
+ interface Props {
+ children?: Snippet
+ }
+
+ let { children }: Props = $props();
+ let count = $state(0);
+
+ function add() {
+ count += 1;
+ }
+
+ function subtract() {
+ count -= 1;
+ }
+</script>
+
+<div class="counter">
+ <button onclick={subtract}>-</button>
+ <pre>{count}</pre>
+ <button onclick={add}>+</button>
+</div>
+<div class="counter-message">
+ {@render children?.()}
+</div>
diff --git a/examples/framework-multiple/src/components/vue/VueCounter.vue b/examples/framework-multiple/src/components/vue/VueCounter.vue
new file mode 100644
index 000000000..74820f7f0
--- /dev/null
+++ b/examples/framework-multiple/src/components/vue/VueCounter.vue
@@ -0,0 +1,33 @@
+<template>
+ <!--
+ Seeing type errors on the word `class`?
+ This unfortunately happens because @types/react's JSX definitions leak into every file due to being declared globally.
+ There's currently no way to prevent this when using both Vue and React with TypeScript in the same project.
+ You can read more about this issue here: https://github.com/johnsoncodehk/volar/discussions/592
+ -->
+ <div class="counter">
+ <button @click="subtract()">-</button>
+ <pre>{{ count }}</pre>
+ <button @click="add()">+</button>
+ </div>
+ <div class="counter-message">
+ <slot />
+ </div>
+</template>
+
+<script lang="ts">
+import { ref } from 'vue';
+export default {
+ setup() {
+ const count = ref(0);
+ const add = () => (count.value = count.value + 1);
+ const subtract = () => (count.value = count.value - 1);
+
+ return {
+ count,
+ add,
+ subtract,
+ };
+ },
+};
+</script>
diff --git a/examples/framework-multiple/src/pages/index.astro b/examples/framework-multiple/src/pages/index.astro
new file mode 100644
index 000000000..d420111a2
--- /dev/null
+++ b/examples/framework-multiple/src/pages/index.astro
@@ -0,0 +1,48 @@
+---
+// Style Imports
+import '../styles/global.css';
+
+// Component Imports
+// For JSX components, all the common ways of exporting (under a namespace, specific export, default export etc) are supported!
+import * as react from '../components/react/ReactCounter';
+import { PreactCounter } from '../components/preact/PreactCounter';
+import SolidCounter from '../components/solid/SolidCounter';
+
+import VueCounter from '../components/vue/VueCounter.vue';
+import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
+
+// Full Astro Component Syntax:
+// https://docs.astro.build/basics/astro-components/
+---
+
+<html lang="en">
+ <head>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width" />
+ <meta name="generator" content={Astro.generator} />
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
+ </head>
+ <body>
+ <main>
+ <react.Counter client:visible>
+ <h1>Hello from React!</h1>
+ </react.Counter>
+
+ <PreactCounter client:visible>
+ <h1>Hello from Preact!</h1>
+ </PreactCounter>
+
+ <SolidCounter client:visible>
+ <h1>Hello from Solid!</h1>
+ </SolidCounter>
+
+ <VueCounter client:visible>
+ <h1>Hello from Vue!</h1>
+ </VueCounter>
+
+ <SvelteCounter client:visible>
+ <h1>Hello from Svelte!</h1>
+ </SvelteCounter>
+ </main>
+ </body>
+</html>
diff --git a/examples/framework-multiple/src/styles/global.css b/examples/framework-multiple/src/styles/global.css
new file mode 100644
index 000000000..4912b4c39
--- /dev/null
+++ b/examples/framework-multiple/src/styles/global.css
@@ -0,0 +1,21 @@
+html,
+body {
+ font-family: system-ui;
+ margin: 0;
+}
+
+body {
+ padding: 2rem;
+}
+
+.counter {
+ display: grid;
+ font-size: 2em;
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+ margin-top: 2em;
+ place-items: center;
+}
+
+.counter-message {
+ text-align: center;
+}