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: Using CSS data urls for bundling #513

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions packages/babel-plugin/src/utils/css-serialize.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
*/

type Rule = [string, { ltr: string, rtl?: string | null }, number];

export function ruleToCSSDataURI([_, { ltr, rtl }, priority]: Rule): string {
const ltrLayer = `@layer __stylex__ltr { ${ltr} }`;
const rtlLayer = rtl != null ? `@layer __stylex__rtl { ${rtl} }` : '';
const css = `@layer __stylex__${priority} { ${ltrLayer} ${rtlLayer} }`;

return `data:text/css;charset=utf-8,${encodeURIComponent(css)}`;
}