Skip to content

Commit

Permalink
Revert "Support shared signals in Preact islands (#4763)"
Browse files Browse the repository at this point in the history
This reverts commit 5e46be5.
  • Loading branch information
matthewp committed Sep 22, 2022
1 parent 1e7adaf commit 77b6145
Show file tree
Hide file tree
Showing 21 changed files with 39 additions and 272 deletions.
22 changes: 0 additions & 22 deletions .changeset/itchy-tigers-help.md

This file was deleted.

3 changes: 1 addition & 2 deletions examples/framework-preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"dependencies": {
"astro": "^1.2.8",
"preact": "^10.7.3",
"@astrojs/preact": "^1.1.0",
"@preact/signals": "1.0.3"
"@astrojs/preact": "^1.1.0"
}
}
8 changes: 5 additions & 3 deletions examples/framework-preact/src/components/Counter.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { h, Fragment } from 'preact';
import { useState } from 'preact/hooks';
import './Counter.css';

export default function Counter({ children, count }) {
const add = () => count.value++
const subtract = () => count.value--;
export default function Counter({ children }) {
const [count, setCount] = useState(0);
const add = () => setCount((i) => i + 1);
const subtract = () => setCount((i) => i - 1);

return (
<>
Expand Down
12 changes: 2 additions & 10 deletions examples/framework-preact/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@
// Component Imports
import Counter from '../components/Counter';
import { signal } from '@preact/signals';
// Full Astro Component Syntax:
// https://docs.astro.build/core-concepts/astro-components/
const count = signal(0);
---

<html lang="en">
Expand All @@ -29,12 +25,8 @@ const count = signal(0);
</head>
<body>
<main>
<Counter count={count} client:visible>
<h1>Hello, Preact 1!</h1>
</Counter>

<Counter count={count} client:visible>
<h1>Hello, Preact 2!</h1>
<Counter client:visible>
<h1>Hello, Preact!</h1>
</Counter>
</main>
</body>
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/runtime/server/hydration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export async function generateHydrateScript(
// Attach renderer-provided attributes
if (attrs) {
for (const [key, value] of Object.entries(attrs)) {
island.props[key] = escapeHTML(value);
island.props[key] = value;
}
}

Expand Down
4 changes: 1 addition & 3 deletions packages/astro/test/fixtures/preact-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
"private": true,
"dependencies": {
"@astrojs/preact": "workspace:*",
"astro": "workspace:*",
"@preact/signals": "1.0.3",
"preact": "^10.7.3"
"astro": "workspace:*"
}
}

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
Astro.response.headers.set('One-Two', 'three');
Astro.response.headers.set('Four-Five', 'six');
Astro.response.headers.set("Cache-Control", `max-age=0, s-maxage=86400`);
---
<html>
<head>
Expand Down
20 changes: 0 additions & 20 deletions packages/astro/test/preact-component.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import * as cheerio from 'cheerio';
import { loadFixture } from './test-utils.js';

describe('Preact component', () => {
/** @type {import('./test-utils').Fixture} */
let fixture;

before(async () => {
Expand Down Expand Up @@ -81,23 +80,4 @@ describe('Preact component', () => {
// test 1: preact/jsx-runtime is used for the component
expect(jsxRuntime).to.be.ok;
});

it('Can use shared signals between islands', async () => {
const html = await fixture.readFile('/signals/index.html');
const $ = cheerio.load(html);
expect($('.preact-signal')).to.have.a.lengthOf(2);

const sigs1Raw = $($('astro-island')[0]).attr('data-preact-signals');
const sigs2Raw = $($('astro-island')[1]).attr('data-preact-signals');

expect(sigs1Raw).to.not.be.undefined;
expect(sigs2Raw).to.not.be.undefined;


const sigs1 = JSON.parse(sigs1Raw);
const sigs2 = JSON.parse(sigs2Raw);

expect(sigs1.count).to.not.be.undefined;
expect(sigs1.count).to.equal(sigs2.count);
});
});
1 change: 0 additions & 1 deletion packages/astro/test/ssr-response.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,5 @@ describe('Using Astro.response in SSR', () => {
const headers = response.headers;
expect(headers.get('one-two')).to.equal('three');
expect(headers.get('four-five')).to.equal('six');
expect(headers.get('Cache-Control')).to.equal(`max-age=0, s-maxage=86400`)
});
});
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// @ts-ignore
import 'preact/debug';
import clientFn from './client.js';

Expand Down
14 changes: 14 additions & 0 deletions packages/integrations/preact/client.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { h, render } from 'preact';
import StaticHtml from './static-html.js';

export default (element) =>
(Component, props, { default: children, ...slotted }) => {
if (!element.hasAttribute('ssr')) return;
for (const [key, value] of Object.entries(slotted)) {
props[key] = h(StaticHtml, { value, name: key });
}
render(
h(Component, props, children != null ? h(StaticHtml, { value: children }) : children),
element
);
};
9 changes: 4 additions & 5 deletions packages/integrations/preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"homepage": "https://docs.astro.build/en/guides/integrations-guide/preact/",
"exports": {
".": "./dist/index.js",
"./client.js": "./dist/client.js",
"./client-dev.js": "./dist/client-dev.js",
"./server.js": "./dist/server.js",
"./client.js": "./client.js",
"./client-dev.js": "./client-dev.js",
"./server.js": "./server.js",
"./package.json": "./package.json"
},
"scripts": {
Expand All @@ -35,8 +35,7 @@
"@babel/core": ">=7.0.0-0 <8.0.0",
"@babel/plugin-transform-react-jsx": "^7.17.12",
"babel-plugin-module-resolver": "^4.1.0",
"preact-render-to-string": "^5.2.4",
"@preact/signals": "^1.1.0"
"preact-render-to-string": "^5.2.0"
},
"devDependencies": {
"astro": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
import type { AstroPreactAttrs, RendererContext } from './types';
import { h, Component as BaseComponent } from 'preact';
import render from 'preact-render-to-string';
import StaticHtml from './static-html.js';
import { getContext } from './context.js';
import { restoreSignalsOnProps, serializeSignals } from './signals.js';

const slotName = (str: string) => str.trim().replace(/[-_]([a-z])/g, (_, w) => w.toUpperCase());
const slotName = (str) => str.trim().replace(/[-_]([a-z])/g, (_, w) => w.toUpperCase());

let originalConsoleError: typeof console.error;
let originalConsoleError;
let consoleFilterRefs = 0;

function check(this: RendererContext, Component: any, props: Record<string, any>, children: any) {
function check(Component, props, children) {
if (typeof Component !== 'function') return false;

if (Component.prototype != null && typeof Component.prototype.render === 'function') {
Expand All @@ -21,7 +18,7 @@ function check(this: RendererContext, Component: any, props: Record<string, any>

try {
try {
const { html } = renderToStaticMarkup.call(this, Component, props, children);
const { html } = renderToStaticMarkup(Component, props, children);
if (typeof html !== 'string') {
return false;
}
Expand All @@ -38,33 +35,20 @@ function check(this: RendererContext, Component: any, props: Record<string, any>
}
}

function renderToStaticMarkup(this: RendererContext, Component: any, props: Record<string, any>, { default: children, ...slotted }: Record<string, any>) {
const ctx = getContext(this.result);

const slots: Record<string, ReturnType<typeof h>> = {};
function renderToStaticMarkup(Component, props, { default: children, ...slotted }) {
const slots = {};
for (const [key, value] of Object.entries(slotted)) {
const name = slotName(key);
slots[name] = h(StaticHtml, { value, name });
}

// Restore signals back onto props so that they will be passed as-is to components
let propsMap = restoreSignalsOnProps(ctx, props);

// Note: create newProps to avoid mutating `props` before they are serialized
const newProps = { ...props, ...slots };

const attrs: AstroPreactAttrs = {};
serializeSignals(ctx, props, attrs, propsMap);

const html = render(
h(Component, newProps, children != null ? h(StaticHtml, { value: children }) : children)
);
return {
attrs,
html
};
return { html };
}


/**
* Reduces console noise by filtering known non-problematic errors.
*
Expand Down Expand Up @@ -107,7 +91,7 @@ function finishUsingConsoleFilter() {
* Ignores known non-problematic errors while any code is using the console filter.
* Otherwise, simply forwards all arguments to the original function.
*/
function filteredConsoleError(msg: string, ...rest: any[]) {
function filteredConsoleError(msg, ...rest) {
if (consoleFilterRefs > 0 && typeof msg === 'string') {
// In `check`, we attempt to render JSX components through Preact.
// When attempting this on a React component, React may output
Expand Down
29 changes: 0 additions & 29 deletions packages/integrations/preact/src/client.ts

This file was deleted.

32 changes: 0 additions & 32 deletions packages/integrations/preact/src/context.ts

This file was deleted.

48 changes: 0 additions & 48 deletions packages/integrations/preact/src/signals.ts

This file was deleted.

0 comments on commit 77b6145

Please sign in to comment.