Skip to content

Commit 9b63b88

Browse files
authored
feat: updates (#44)
1 parent 5fee312 commit 9b63b88

37 files changed

+4384
-5546
lines changed

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,40 @@
11
# panda-vscode
2+
23
The official Panda CSS VSCode extension
4+
5+
## Contributing
6+
7+
### Setup
8+
9+
```bash
10+
yarn install
11+
```
12+
13+
### Development
14+
15+
```bash
16+
yarn dev
17+
```
18+
19+
Then start the VSCode extension development host with [the `Run extension` launch config.](.vscode/launch.json)
20+
21+
### Build
22+
23+
```bash
24+
yarn build
25+
```
26+
27+
### Test
28+
29+
```bash
30+
yarn test
31+
```
32+
33+
```bash
34+
yarn typecheck
35+
```
36+
37+
### Publishing
38+
39+
Done automatically when the release PR (generated with
40+
[Changesets](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md)) is merged.

package.json

+13-12
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,27 @@
1919
"author": "Segun Adebayo <[email protected]>",
2020
"license": "MIT",
2121
"dependencies": {
22-
"@changesets/changelog-github": "0.4.8",
23-
"@changesets/cli": "2.26.2",
24-
"@types/node": "20.4.5",
25-
"@typescript-eslint/eslint-plugin": "6.2.1",
26-
"@typescript-eslint/parser": "6.2.1",
27-
"prettier": "^2.8.8",
28-
"tsup": "7.1.0",
29-
"typescript": "5.2.2",
30-
"vitest": "0.33.0"
22+
"@changesets/changelog-github": "0.5.0",
23+
"@changesets/cli": "2.27.1",
24+
"@types/node": "20.11.30",
25+
"@typescript-eslint/eslint-plugin": "7.3.1",
26+
"@typescript-eslint/parser": "7.3.1",
27+
"prettier": "^3.2.5",
28+
"tsup": "8.0.2",
29+
"typescript": "5.4.2",
30+
"vitest": "1.4.0"
3131
},
3232
"resolutions": {
33-
"panda-css-vscode/esbuild": "npm:[email protected]"
33+
"panda-css-vscode/esbuild": "npm:[email protected]",
34+
"panda-css-vscode/lightningcss": "npm:[email protected]"
3435
},
3536
"packageManager": "[email protected]",
3637
"workspaces": [
3738
"packages/*",
3839
"sandbox/**"
3940
],
4041
"devDependencies": {
41-
"@types/eslint": "^8",
42-
"eslint": "^8.52.0"
42+
"@types/eslint": "^8.56.6",
43+
"eslint": "^8.57.0"
4344
}
4445
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
import { mergeConfigs } from '@pandacss/config'
2+
import { PandaContext } from '@pandacss/node'
3+
import presetBase from '@pandacss/preset-base'
4+
import presetPanda from '@pandacss/preset-panda'
5+
import { parseJson, stringifyJson } from '@pandacss/shared'
6+
import type { Config, LoadConfigResult, PresetCore, UserConfig } from '@pandacss/types'
7+
import { utils } from './utils'
8+
9+
const buttonRecipe = {
10+
className: 'button',
11+
description: 'The styles for the Button component',
12+
base: {
13+
display: 'flex',
14+
cursor: 'pointer',
15+
fontWeight: 'bold',
16+
},
17+
variants: {
18+
visual: {
19+
funky: { bg: 'red.200', color: 'slate.800' },
20+
edgy: { border: '1px solid {colors.red.500}' },
21+
},
22+
size: {
23+
sm: { padding: '4', fontSize: '12px' },
24+
lg: { padding: '8', fontSize: '40px' },
25+
},
26+
shape: {
27+
square: { borderRadius: '0' },
28+
circle: { borderRadius: 'full' },
29+
},
30+
},
31+
defaultVariants: {
32+
visual: 'funky',
33+
size: 'sm',
34+
shape: 'circle',
35+
},
36+
}
37+
38+
const fixturePreset: Omit<PresetCore, 'globalCss' | 'staticCss'> = {
39+
...presetBase,
40+
...presetPanda,
41+
theme: {
42+
...presetPanda.theme,
43+
recipes: {
44+
button: buttonRecipe,
45+
},
46+
},
47+
}
48+
49+
const config: UserConfig = {
50+
...fixturePreset,
51+
optimize: true,
52+
cwd: '',
53+
outdir: 'styled-system',
54+
include: [],
55+
//
56+
cssVarRoot: ':where(html)',
57+
jsxFramework: 'react',
58+
}
59+
60+
const fixtureDefaults = {
61+
dependencies: [],
62+
config,
63+
path: '',
64+
hooks: {},
65+
serialized: stringifyJson(config),
66+
deserialize: () => parseJson(stringifyJson(config)),
67+
} as LoadConfigResult
68+
69+
export const createConfigResult = (userConfig?: Config) => {
70+
const resolvedConfig = (
71+
userConfig ? mergeConfigs([userConfig, fixtureDefaults.config]) : fixtureDefaults.config
72+
) as UserConfig
73+
74+
return { ...fixtureDefaults, config: resolvedConfig }
75+
}
76+
77+
export const createContext = (userConfig?: Config) => {
78+
let resolvedConfig = (
79+
userConfig ? mergeConfigs([userConfig, fixtureDefaults.config]) : fixtureDefaults.config
80+
) as UserConfig
81+
82+
const hooks = userConfig?.hooks ?? {}
83+
84+
// This allows editing the config before the context is created
85+
// since this function is only used in tests, we only look at the user hooks
86+
// not the presets hooks, so that we can keep this fn sync
87+
if (hooks['config:resolved']) {
88+
const result = hooks['config:resolved']({
89+
config: resolvedConfig,
90+
path: fixtureDefaults.path,
91+
dependencies: fixtureDefaults.dependencies,
92+
utils: utils,
93+
})
94+
if (result) {
95+
resolvedConfig = result as UserConfig
96+
}
97+
}
98+
99+
return new PandaContext({
100+
...fixtureDefaults,
101+
hooks,
102+
config: resolvedConfig,
103+
tsconfig: {
104+
// @ts-expect-error
105+
useInMemoryFileSystem: true,
106+
},
107+
})
108+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './create-config-result'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { traverse } from '@pandacss/shared'
2+
3+
const omit = <T, K extends keyof T | (string & {})>(obj: T, paths: K[]): Omit<T, K> => {
4+
const result = { ...obj }
5+
6+
traverse(result, ({ path, parent, key }) => {
7+
if (paths.includes(path as K)) {
8+
delete (parent as any)[key]
9+
}
10+
})
11+
12+
return result as Omit<T, K>
13+
}
14+
15+
export const utils = {
16+
omit,
17+
traverse,
18+
}

0 commit comments

Comments
 (0)