Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp authored and astrobot-houston committed Feb 2, 2023
1 parent 9bec6bc commit 10550f5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/astro/src/runtime/server/jsx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {
voidElementNames,
} from './index.js';
import { HTMLParts } from './render/common.js';
import { ScopeFlags } from './render/util.js';
import type { ComponentIterable } from './render/component';
import { ScopeFlags } from './render/util.js';

const ClientOnlyPlaceholder = 'astro-client-only';

Expand Down Expand Up @@ -95,7 +95,7 @@ Did you forget to import the component or is it possible there is a typo?`);
props[key] = value;
}
}
result.scope |= ScopeFlags.JSX;
result.scope |= ScopeFlags.JSX;
return markHTMLString(await renderToString(result, vnode.type as any, props, slots));
}
case !vnode.type && (vnode.type as any) !== 0:
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/runtime/server/render/astro/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import type { HeadAndContent } from './head-and-content';
import type { RenderTemplateResult } from './render-template';

import { HTMLParts } from '../common.js';
import { ScopeFlags } from '../util.js';
import { isHeadAndContent } from './head-and-content.js';
import { renderAstroTemplateResult } from './render-template.js';
import { ScopeFlags } from '../util.js';

export type AstroFactoryReturnValue = RenderTemplateResult | Response | HeadAndContent;

Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/runtime/server/render/head.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function* maybeRenderHead(result: SSRResult) {

// Don't render the head inside of a JSX component that's inside of an Astro component
// as the Astro component will be the one to render the head.
switch(result.scope) {
switch (result.scope) {
case ScopeFlags.JSX | ScopeFlags.Slot | ScopeFlags.Astro: {
return;
}
Expand Down
6 changes: 5 additions & 1 deletion packages/astro/src/runtime/server/render/slot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ export function isSlotString(str: string): str is any {
return !!(str as any)[slotString];
}

export async function renderSlot(result: SSRResult, slotted: string, fallback?: any): Promise<string> {
export async function renderSlot(
result: SSRResult,
slotted: string,
fallback?: any
): Promise<string> {
if (slotted) {
result.scope |= ScopeFlags.Slot;
let iterator = renderChild(slotted);
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/runtime/server/render/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,5 @@ export function renderElement(
export const ScopeFlags = {
Astro: 1 << 0,
JSX: 1 << 1,
Slot: 1 << 2
Slot: 1 << 2,
};

0 comments on commit 10550f5

Please sign in to comment.