Skip to content
This repository was archived by the owner on Sep 4, 2023. It is now read-only.

Commit 128e02a

Browse files
committed
chore: init monorepo with wip lib + demo
0 parents  commit 128e02a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+9697
-0
lines changed

.eslintignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
vitest.config.ts
2+
bin.js
3+
samples-generator.ts
4+
example

.gitignore

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
node_modules
5+
.pnp
6+
.pnp.js
7+
8+
# testing
9+
coverage
10+
11+
# next.js
12+
.next/
13+
out/
14+
build
15+
16+
# misc
17+
.DS_Store
18+
*.pem
19+
20+
# debug
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
.pnpm-debug.log*
25+
26+
# local env files
27+
.env.local
28+
.env.development.local
29+
.env.test.local
30+
.env.production.local
31+
32+
# turbo
33+
.turbo
34+
35+
dist
36+
.eslintcache

.prettierrc.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"printWidth": 120,
3+
"tabWidth": 4,
4+
"arrowParens": "always",
5+
"useTabs": false,
6+
"semi": true,
7+
"singleQuote": false,
8+
"trailingComma": "es5"
9+
}

demo/.eslintrc.build.js

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// @ts-check
2+
const { defineConfig } = require("eslint-define-config");
3+
4+
module.exports = defineConfig({
5+
parserOptions: {
6+
files: ["*.ts"],
7+
project: ["./tsconfig.json"],
8+
},
9+
ignorePatterns: ["**/*.test.ts", "*.typegen.ts"],
10+
extends: "@astahmer/eslint-config-react",
11+
settings: {
12+
"import/extensions": [".ts"],
13+
},
14+
rules: {
15+
// "file-progress/activate": 1
16+
"unicorn/prefer-module": 0,
17+
"sonarjs/cognitive-complexity": ["warn", 30],
18+
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
19+
},
20+
overrides: [
21+
{
22+
files: ["src/toasts.ts", "src/Playground/Playground.machine.ts"],
23+
rules: {
24+
"import/no-unused-modules": 0,
25+
},
26+
},
27+
],
28+
});

demo/.eslintrc.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// @ts-check
2+
const { defineConfig } = require("eslint-define-config");
3+
4+
module.exports = defineConfig({
5+
extends: ["./.eslintrc.build.js"],
6+
rules: {
7+
// better DX
8+
"import/no-unused-modules": "off",
9+
"unused-imports/no-unused-imports": "off",
10+
"simple-import-sort/imports": "off",
11+
"@typescript-eslint/consistent-type-imports": "off",
12+
"@typescript-eslint/no-unused-vars": "off",
13+
"@typescript-eslint/no-unused-expressions": "off",
14+
"no-empty": "off",
15+
"prettier/prettier": "off",
16+
"@typescript-eslint/semi": "off",
17+
},
18+
});

demo/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Front SPA with:
2+
3+
- [React](https://github.com/facebook/react) 18+ / Typescript 4.7+
4+
- Dev server / builder: [Vite](https://github.com/vitejs/vite/)

demo/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite App</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.tsx"></script>
12+
</body>
13+
</html>

demo/package.json

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"name": "vite-box-extractor-demo",
3+
"private": true,
4+
"version": "0.0.1",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/astahmer/vite-box-extractor.git"
8+
},
9+
"author": "Alexandre Stahmer <[email protected]>",
10+
"scripts": {
11+
"dev": "vite",
12+
"build": "vite build",
13+
"preview": "vite preview",
14+
"format": "prettier --write \"./{src,tests}/**/*\"",
15+
"lint:ts": "tsc --noEmit",
16+
"lint": "eslint './{src,tests}/**/*.ts' --cache ",
17+
"lint:fix": "eslint './{src,tests}/**/*.ts' --cache --fix",
18+
"lint:debug": "TIMING=1 eslint './{src,tests}/**/*.ts'"
19+
},
20+
"dependencies": {
21+
"@dessert-box/react": "^0.4.0",
22+
"@unocss/preset-icons": "^0.46.4",
23+
"@vanilla-extract/css": "^1.9.1",
24+
"@vanilla-extract/recipes": "^0.2.5",
25+
"@vanilla-extract/sprinkles": "^1.5.0",
26+
"pastable": "^2.0.10",
27+
"rainbow-sprinkles": "^0.14.3",
28+
"react": "^18.2.0",
29+
"react-dom": "^18.2.0",
30+
"react-error-boundary": "^3.1.4",
31+
"ts-morph": "^16.0.0",
32+
"ts-pattern": "^4.0.5",
33+
"unocss": "^0.46.4",
34+
"vite-box-extractor": "workspace:^0.0.1"
35+
},
36+
"devDependencies": {
37+
"@astahmer/eslint-config-react": "^0.1.5",
38+
"@iconify/json": "^2.1.135",
39+
"@types/react": "^18.0.15",
40+
"@types/react-dom": "^18.0.6",
41+
"@typescript-eslint/eslint-plugin": "^5.42.1",
42+
"@vanilla-extract/vite-plugin": "^3.6.1",
43+
"@vitejs/plugin-react": "^2.0.0",
44+
"eslint": "^8.27.0",
45+
"eslint-formatter-pretty": "^4.1.0",
46+
"prettier": "^2.7.1",
47+
"ts-toolbelt": "^9.6.0",
48+
"type-fest": "^3.2.0",
49+
"typescript": "^4.7.4",
50+
"vite": "^3.0.4",
51+
"vite-plugin-checker": "^0.4.9",
52+
"vite-plugin-compress": "^2.1.1",
53+
"vite-plugin-inspect": "^0.7.7"
54+
}
55+
}

demo/src/App.css

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
html,
2+
body,
3+
#root {
4+
height: 100%;
5+
}

demo/src/App.tsx

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import "./App.css";
2+
import { Demo } from "./components/Demo";
3+
4+
function App() {
5+
return (
6+
<div style={{ display: "flex", flexDirection: "column", height: "100%" }}>
7+
<Demo />
8+
</div>
9+
);
10+
}
11+
12+
export default App;

demo/src/components/Demo.tsx

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
/* eslint-disable unicorn/no-abusive-eslint-disable */
2+
/* eslint-disable */
3+
import { PropsWithChildren, useState } from "react";
4+
import { ColorSprinkes, colorSprinkes } from "./colors.css";
5+
// import { DessertBox } from "../theme/DessertBox";
6+
7+
import { Show } from "./Show";
8+
9+
const staticColor = "gray.100" as const;
10+
const staticColor2 = "gray.200" as any;
11+
const staticColor3 = "gray.300" as any;
12+
13+
const dynamicColorName = "something";
14+
const nestedReference = { ref: dynamicColorName } as const;
15+
const deepReference = nestedReference.ref;
16+
17+
const dynamicElement = "staticColor";
18+
const dynamicPart1 = "static";
19+
const dynamicPart2 = "Color";
20+
const dynamicPartsAsTemplateString = `${dynamicPart1}${dynamicPart2}` as const;
21+
const withDynamicPart = {
22+
dynamicPart1,
23+
dynamicPart2: dynamicPart2,
24+
};
25+
26+
const dynamicName = "dynamicColor";
27+
const dynamicLiteralColor = "gray.900";
28+
29+
const colorMap = {
30+
staticColor,
31+
literalColor: "gray.600",
32+
[dynamicColorName]: "gray.700",
33+
[deepReference]: "gray.800",
34+
[dynamicName]: dynamicLiteralColor,
35+
};
36+
const dynamicAttribute = "borderColor";
37+
const objectWithAttributes = { color: "blackAlpha.400" } as any;
38+
39+
const dynamicColor = colorMap[dynamicElement];
40+
41+
export const Demo = () => {
42+
const [isShown, setIsShown] = useState(false);
43+
const obj = isShown ? { text: "children" } : undefined;
44+
45+
// const [controlledColor, setControlledColor] = useState("gray.400" as any);
46+
// const [dynamicVarColor, setDynamicVarColor] = useState("gray.500" as any);
47+
48+
return (
49+
<div style={{ display: "flex", flexDirection: "column", height: "100%" }}>
50+
<div style={{ display: "flex", flexDirection: "column", margin: "auto" }}>
51+
<div style={{ textAlign: "center", fontSize: "50px" }}>Ready to go</div>
52+
<div style={{ display: "flex", flexDirection: "column", justifyContent: "center" }}>
53+
<h1>{isShown ? "Shown" : "Hidden"}</h1>
54+
<div>
55+
<input type="checkbox" onChange={() => setIsShown((current) => !current)} />
56+
<Show when={isShown} fallback="fallback">
57+
{() => obj!.text}
58+
</Show>
59+
</div>
60+
{/* <DessertBox>box</DessertBox> */}
61+
<div className={colorSprinkes({ color: "blue.100" })}>blue100 without ColorBox</div>
62+
<ColorBox color="red.200" />
63+
<ColorBox color="yellow.300" backgroundColor="blackAlpha.100">
64+
yellow.300 with children
65+
</ColorBox>
66+
<ColorBox color={isShown ? "cyan.400" : "cyan.500"}>ternary</ColorBox>
67+
<ColorBox {...{ color: "facebook.100" }}>spread</ColorBox>
68+
<ColorBox {...objectWithAttributes}>var spread</ColorBox>
69+
<ColorBox {...(isShown ? objectWithAttributes : null)}>conditional var spread</ColorBox>
70+
<ColorBox
71+
{...{
72+
color: "facebook.100",
73+
backgroundColor: "blackAlpha.100",
74+
[dynamicAttribute]: "blackAlpha.300",
75+
}}
76+
>
77+
multiple spread
78+
</ColorBox>
79+
<ColorBox {...(isShown ? { color: "facebook.200" } : undefined)}>spread ternary</ColorBox>
80+
<ColorBox {...(isShown && { color: "facebook.300" })}>spread &&</ColorBox>
81+
<ColorBox color={"facebook.400"}>string in expression</ColorBox>
82+
<ColorBox color={staticColor}>staticColor</ColorBox>
83+
<ColorBox color={1 === 1 ? "facebook.500" : staticColor3}>staticColor ternary</ColorBox>
84+
<ColorBox color={isShown ? "facebook.600" : staticColor2}>staticColor ternary</ColorBox>
85+
{/* gray200/gray300 */}
86+
<ColorBox color={isShown ? staticColor2 : staticColor3}>staticColor ternary</ColorBox>
87+
{/* gray100 */}
88+
<ColorBox color={colorMap.staticColor}>colorMap dot staticColor</ColorBox>
89+
<ColorBox color={colorMap["staticColor"]}>colorMap bracket staticColor</ColorBox>
90+
<ColorBox color={colorMap["static" + "Color"] as any}>
91+
colorMap bracket binary expression with 2 string literal
92+
</ColorBox>
93+
<ColorBox color={colorMap["static" + `${"Color"}`] as any}>
94+
colorMap bracket binary expression with 1 string literal & 1 template string using string
95+
literal
96+
</ColorBox>
97+
<ColorBox color={colorMap["static" + `${dynamicPart2}`] as any}>
98+
colorMap bracket binary expression with 1 string literal & 1 template string using identifier
99+
</ColorBox>
100+
<ColorBox color={colorMap[("static" as any) + `${withDynamicPart["dynamicPart2"]}`] as any}>
101+
colorMap bracket binary expression with 1 string literal & as expression & 1 template string
102+
using identifier
103+
</ColorBox>
104+
<ColorBox color={colorMap[dynamicPart1 + "Color"]!}>
105+
colorMap bracket binary expression with 1 string literal & 1 identifier and exclamation mark
106+
</ColorBox>
107+
<ColorBox color={colorMap[dynamicPart1 + dynamicPart2]}>
108+
colorMap bracket binary expression with 2 identifier
109+
</ColorBox>
110+
{/* gray100 */}
111+
<ColorBox color={colorMap[dynamicElement]}>colorMap bracket var</ColorBox>
112+
{/* gray600/gray700 */}
113+
<ColorBox color={colorMap[isShown ? ("literalColor" as const) : deepReference] as any}>
114+
colorMap bracket conditonal access with ref and literal wrapped with as any
115+
</ColorBox>
116+
{/* gray700/gray100 */}
117+
<ColorBox color={(isShown ? colorMap?.[dynamicColorName] : dynamicColor) as any}>
118+
conditional colorMap bracket with optional dynamic access and fallback to ref
119+
</ColorBox>
120+
{/* gray100 */}
121+
<ColorBox color={colorMap?.staticColor}>colorMap dot optional staticColor</ColorBox>
122+
123+
{/* unlikely this will ever be supported (unless ezno delivers) */}
124+
{/* <ColorBox color={controlledColor}>controlledColor</ColorBox>
125+
<div onClick={() => setDynamicVarColor("gray.600")}>
126+
<ColorBox color={dynamicVarColor}>dynamicVarColor</ColorBox>
127+
</div> */}
128+
</div>
129+
</div>
130+
</div>
131+
);
132+
};
133+
134+
const ColorBox = ({ children, ...props }: PropsWithChildren<ColorSprinkes>) => {
135+
return <div className={colorSprinkes(props)} children={children} />;
136+
};

demo/src/components/Show.tsx

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import type { ReactElement, ReactNode } from "react";
2+
import { ErrorBoundary } from "react-error-boundary";
3+
4+
export function Show({
5+
when,
6+
children,
7+
fallback,
8+
not,
9+
}: {
10+
children?: ReactNode | (() => ReactNode);
11+
when: boolean;
12+
not?: boolean;
13+
fallback?: ReactNode;
14+
}): ReactElement | null {
15+
if (not) {
16+
return null;
17+
}
18+
19+
if (when) {
20+
return (
21+
<ErrorBoundary fallback={(fallback ?? null) as ReactElement}>
22+
{typeof children === "function" ? children() : children}
23+
</ErrorBoundary>
24+
);
25+
}
26+
27+
return (fallback ?? null) as ReactElement;
28+
}

demo/src/components/colors.css.ts

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { createSprinkles, defineProperties } from "@vanilla-extract/sprinkles";
2+
import { flatColors } from "../theme/colors.css";
3+
4+
const colorProps = defineProperties({
5+
// conditions: {
6+
// default: {},
7+
// lightMode: { "@media": "(prefers-color-scheme: light)" },
8+
// darkMode: { "@media": "(prefers-color-scheme: dark)" },
9+
// focus: { selector: "&:focus" },
10+
// hover: { selector: "&:hover" },
11+
// },
12+
// defaultCondition: "default",
13+
properties: {
14+
color: flatColors,
15+
background: flatColors,
16+
backgroundColor: flatColors,
17+
borderColor: flatColors,
18+
borderTopColor: flatColors,
19+
borderBottomColor: flatColors,
20+
borderLeftColor: flatColors,
21+
borderRightColor: flatColors,
22+
outlineColor: flatColors,
23+
},
24+
shorthands: {
25+
bg: ["background"],
26+
bgColor: ["backgroundColor"],
27+
borderXColor: ["borderLeftColor", "borderRightColor"],
28+
},
29+
});
30+
31+
export const colorSprinkes = createSprinkles(colorProps);
32+
export type ColorSprinkes = Parameters<typeof colorSprinkes>[0];

0 commit comments

Comments
 (0)