Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow $state in return statements #15589

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/sharp-rings-march.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'svelte': patch
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe new features are normally considered a minor release

Suggested change
'svelte': patch
'svelte': minor

---

feat: allow `$state` in return statements
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,20 @@ export function CallExpression(node, context) {
}

case '$state':
if (
(!(parent.type === 'VariableDeclarator' || parent.type === 'ReturnStatement') ||
get_parent(context.path, -3).type === 'ConstTag') &&
!(parent.type === 'PropertyDefinition' && !parent.static && !parent.computed) &&
!(parent.type === 'ArrowFunctionExpression' && parent.body === node)
) {
e.state_invalid_placement(node, rune);
}

if (node.arguments.length > 1) {
e.rune_invalid_arguments_length(node, rune, 'zero or one arguments');
}

break;
case '$state.raw':
case '$derived':
case '$derived.by':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ import { dev, is_ignored } from '../../../../state.js';
import * as b from '../../../../utils/builders.js';
import { get_rune } from '../../../scope.js';
import { transform_inspect_rune } from '../../utils.js';
import { should_proxy } from '../utils.js';

/**
* @param {CallExpression} node
* @param {Context} context
*/
export function CallExpression(node, context) {
const parent = context.path.at(-1);
switch (get_rune(node, context.state.scope)) {
case '$host':
return b.id('$$props.$$host');
Expand All @@ -33,6 +35,23 @@ export function CallExpression(node, context) {
case '$inspect':
case '$inspect().with':
return transform_inspect_rune(node, context);
case '$state':
if (
parent?.type === 'ReturnStatement' ||
(parent?.type === 'ArrowFunctionExpression' && parent.body === node)
) {
if (
node.arguments[0] &&
should_proxy(
/** @type {Expression} */ (context.visit(node.arguments[0])),
context.state.scope
)
) {
return b.call('$.proxy', node.arguments[0]);
} else {
return node.arguments[0] ?? b.void0;
}
}
}

if (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @import { CallExpression, Expression } from 'estree' */
/** @import { ArrowFunctionExpression, CallExpression, Expression } from 'estree' */
/** @import { Context } from '../types.js' */
import { is_ignored } from '../../../../state.js';
import * as b from '../../../../utils/builders.js';
Expand Down Expand Up @@ -37,5 +37,17 @@ export function CallExpression(node, context) {
return transform_inspect_rune(node, context);
}

if (
rune === '$state' &&
(context.path.at(-1)?.type === 'ReturnStatement' ||
(context.path.at(-1)?.type === 'ArrowFunctionExpression' &&
/** @type {ArrowFunctionExpression} */ (context.path.at(-1)).body === node))
) {
if (node.arguments[0]) {
return context.visit(node.arguments[0]);
}
return b.void0;
}

context.next();
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* index.svelte.js generated by Svelte VERSION */
import * as $ from 'svelte/internal/client';

export default function proxy(object) {
return $.proxy(object);
}

export function createCounter() {
let count = $.state(0);

$.update(count);
}

export const proxy_in_arrow = (object) => $.proxy(object);
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* index.svelte.js generated by Svelte VERSION */
import * as $ from 'svelte/internal/server';

export default function proxy(object) {
return object;
}

export function createCounter() {
let count = 0;

count++;
}

export const proxy_in_arrow = (object) => object;
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function proxy(object) {
return $state(object);
}
export function createCounter() {
let count = $state(0);
count++;
}
export const proxy_in_arrow = (object) => $state(object);