Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nderscore/tamagui-typescript-plugin
TypeScript Language Server Plugin for Tamagui
https://github.com/nderscore/tamagui-typescript-plugin
Last synced: 13 days ago
JSON representation
TypeScript Language Server Plugin for Tamagui
- Host: GitHub
- URL: https://github.com/nderscore/tamagui-typescript-plugin
- Owner: nderscore
- License: mit
- Created: 2023-08-13T05:41:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-18T20:00:53.000Z (about 1 year ago)
- Last Synced: 2024-10-31T16:57:28.282Z (20 days ago)
- Language: TypeScript
- Homepage:
- Size: 807 KB
- Stars: 66
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @nderscore/tamagui-typescript-plugin
Typescript Language Server Plugin for [Tamagui](https://tamagui.dev).
- [Features](#features)
- [Screenshots](#screenshots)
- [Changelog](#changelog)
- [Setup](#setup)
- [Contributing](#contributing)## Features
- Show Tamagui theme/token values in TypeScript autocomplete suggestions
- Show Tamagui theme/token values on hover
- Graphical previews for color and theme tokens
- Automatically reloads when your config is updated by the Tamagui compiler
- Granular filtering options for autocomplete suggestions
- Translations for shorthand properties (e.g. `p` -> `padding`)
- Smart sorting of autocomplete suggestions:
- Tokens with numbers get sorted in numeric order
- Negative space tokens get sorted after postive ones
- Theme tokens always come before any Color tokens
- Unprefixed tokens sort before scale-specific tokens (`$scale.token`)
### Screenshots
##### Theme tokens
![Theme Token Screenshot](./docs/screenshot_autocomplete_theme.png)
![Translucent Color Screenshot](./docs/screenshot_autocomplete_translucent.png)
##### Quick info on hover
![Quick Info Color Hover Screenshot](./docs/screenshot_quickinfo_color.png)
![Quick Info Space Hover Screenshot](./docs/screenshot_quickinfo_space.png)
![Quick Info Shorthand Hover Screenshot](./docs/screenshot_quickinfo_shorthand.png)
##### Sorted space tokens
![Space Token Screenshot](./docs/screenshot_autocomplete_space.png)
### Changelog
See the [changelog](./CHANGELOG.md) for the latest changes.
## Setup
1. Install `@nderscore/tamagui-typescript-plugin` package in your project:
```sh
yarn add @nderscore/tamagui-typescript-plugin
# or
pnpm add @nderscore/tamagui-typescript-plugin
# or
npm add @nderscore/tamagui-typescript-plugin
```1. Add plugin to your `tsconfig.json` with settings:
```json5
{
"compilerOptions": {
"plugins": [
{
"name": "@nderscore/tamagui-typescript-plugin",
// all settings are optional, the defaults are shown below as an example:
//
// relative or absolute path to a tamagui app (parent folder of .tamagui)
"pathToApp": "apps/next",
//
// the default theme to show for theme tokens when inlined
"defaultTheme": "light",
//
// the size (in pixels) of color tiles in previews
"colorTileSize": 18,
//
// set false to hide translations for shorthand properties
"showShorthandTranslations": true,
//
// options for filtering autocomplete suggestions
"completionFilters": {
//
// set false to hide non-theme color tokens
"showColorTokens": true,
//
// set false to hide $true and $-true tokens from all scales
"showTrueTokens": true,
//
// per-scale lists of specific token names to exclude from autocomplete results
"custom": {
// "themeColor": [],
// "color": [],
// "size": [],
// "space": [],
// "radius": [],
// "zIndex": []
}
}
}
]
}
}
```**For monorepos:**
In a monorepo, like the tamagui starter template, you may have multiple `tsconfig.json` for each of your workspace packages. If your packages' configurations extend from one or more base configurations, you should add the plugin to each one of those base configs and not to the individual packages.
For the tamagui starter project, the base tsconfigs are:
- `tsconfig.json`
- `tsconfig.base.json`
- `apps/next/tsconfig.json`1. Make sure your VSCode is configured to use typescript from your workspace:
- Open VSCode `Command Palette` -> `Select Typescript Version...` -> `Use Workspace Version`
### Usage in Expo-only (no-Next.js) Tamagui projects
Currently, the `@tamagui/babel-plugin` may not generate a `.tamagui` directory with your configuration cached inside.
If you encounter this issue, you can use a temporary workaround to generate it manually:
#### Expo-only workaround
1. Add `@tamagui/static` to your project:
```
yarn add @tamagui/static
```1. Create a script `generate-tamagui-json.js` and fill in with your settings if needed:
```js
// generate-tamagui-json.js
const { loadTamagui } = require('@tamagui/static');loadTamagui({
config: 'tamagui.config.ts',
components: ['tamagui'],
});
```1. Execute `node generate-tamagui-json.js` to generate a `.tamagui` directory in your Expo project folder.
This script will need to be ran manually after changing your theme/tokens.
## Contributing
If you would like to contribute to this project, please see the [contributing guide](./CONTRIBUTING.md).