Skip to content

Commit e68c2cb

Browse files
authored
feat(Feedback): add component binding for feedback (#16)
* feat(Feedback): add component feedback * Progress * Skeleton * SkeletonCircle * SkeletonText * Spinner * fix!(Button,ButtonGroup): fix isDisabled props, make it bool * fix!(SpacesProps): make closely with chakra-ui props value for spaces * feat(Feedback): add Toast binding * feat(Feedback): add binding for CircularProgress and CircularProgressLabel * chore(devDeps): add configuration for running test - [ ] Alert - [x] Circular Progress - [x] Circular Progress Label - [x] Progress - [x] Skeleton - [x] SkeletonText - [x] SkeletonCircle - [x] Spinner - [x] Toast - [x] useToast - [x] createStandaloneToast
1 parent 799e1b6 commit e68c2cb

19 files changed

+7418
-202
lines changed

README.md

+63-34
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,38 @@
11
# rescript-chakra
2+
23
> ReScript binding for React Chakra-UI.
34
45
## ToC
6+
57
<!-- vim-markdown-toc GFM -->
68

7-
* [Installation](#installation)
8-
* [Example](#example)
9-
* [Docs](#docs)
10-
* [Style Props](#style-props)
11-
* [Component](#component)
12-
* [Layout](#layout)
13-
* [Forms](#forms)
14-
* [Data Display](#data-display)
15-
* [Feedback](#feedback)
16-
* [Typography](#typography)
17-
* [Overlay](#overlay)
18-
* [Disclosure](#disclosure)
19-
* [Navigation](#navigation)
20-
* [Media and Icons](#media-and-icons)
21-
* [Others](#others)
22-
* [Hooks](#hooks)
23-
* [Contribution](#contribution)
24-
* [Make a Pull Request](#make-a-pull-request)
25-
* [Make a new component binding](#make-a-new-component-binding)
26-
* [Acknowledgement](#acknowledgement)
9+
- [Installation](#installation)
10+
- [Example](#example)
11+
- [Docs](#docs)
12+
- [Style Props](#style-props)
13+
- [Component](#component)
14+
- [Layout](#layout)
15+
- [Forms](#forms)
16+
- [Data Display](#data-display)
17+
- [Feedback](#feedback)
18+
- [Typography](#typography)
19+
- [Overlay](#overlay)
20+
- [Disclosure](#disclosure)
21+
- [Navigation](#navigation)
22+
- [Media and Icons](#media-and-icons)
23+
- [Others](#others)
24+
- [Hooks](#hooks)
25+
- [Contribution](#contribution)
26+
- [Make a Pull Request](#make-a-pull-request)
27+
- [Make a new component binding](#make-a-new-component-binding)
28+
- [Acknowledgement](#acknowledgement)
2729

2830
<!-- vim-markdown-toc -->
2931

3032
## Installation
3133

3234
Run the following in your favorit console:
35+
3336
```console
3437
yarn add rescript-chakra
3538
```
@@ -52,16 +55,16 @@ yarn add @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^
5255
npm i @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^4
5356
```
5457

55-
5658
Then, add `rescript-chakra` in your `bsconfig.json`:
59+
5760
```diff
5861
-- "bs-dependencies": [],
5962
++ "bs-dependencies": [rescript-chakra],
6063
```
6164

6265
## Example
6366

64-
* following `chakra-ui` example [**here**](https://chakra-ui.com/docs/features/style-props#margin-and-padding)
67+
- following `chakra-ui` example [**here**](https://chakra-ui.com/docs/features/style-props#margin-and-padding)
6568

6669
```javascript
6770
// JavaScript 🟨 | TypeScript 🟦
@@ -89,9 +92,11 @@ let make = () => <>
8992
Or you can check this [**Example**](https://github.com/ri7nz/rescript-chakra/tree/main/examples).
9093

9194
# Docs
95+
9296
All of Binding for Chakra-UI isn't completed, if you want to support this project, see the list below 🙌.
9397

9498
## Style Props
99+
95100
This is following and closely same with Chakra-UI. [**See Style Props**](https://chakra-ui.com/docs/features/style-props#reference) and Implemented typed **Props** with typed **CSS-Properties** use [bs-css](https://github.com/giraud/bs-css/blob/cb242dbd08a00bd848faecb756a9ddce68d8707a/bs-css/src/Css_AtomicTypes.rei).
96101

97102
- [x] [Margin and Padding](https://chakra-ui.com/docs/features/style-props#margin-and-padding)
@@ -106,13 +111,14 @@ This is following and closely same with Chakra-UI. [**See Style Props**](https:/
106111
- [x] [Position](https://chakra-ui.com/docs/features/style-props#position)
107112
- [x] [Shadow](https://chakra-ui.com/docs/features/style-props#shadow)
108113
- [x] [Pseudo](https://chakra-ui.com/docs/features/style-props#pseudo)
109-
- [ ] [Other Style Props](https://chakra-ui.com/docs/features/style-props#other-props) 🚧 (_Partially Implemented_)
114+
- [ ] [Other Style Props](https://chakra-ui.com/docs/features/style-props#other-props) 🚧 (_Partially Implemented_)
110115

111-
All of Style Props implementation is write in File:[Chakra__MakeProps.res](https://github.com/ri7nz/rescript-chakra/blob/main/src/Interfaces/Chakra__MakeProps.res)
116+
All of Style Props implementation is write in File:[Chakra\_\_MakeProps.res](https://github.com/ri7nz/rescript-chakra/blob/main/src/Interfaces/Chakra__MakeProps.res)
112117

113118
## Component
114119

115120
### Layout
121+
116122
- [x] Aspect Ratio
117123
- [x] Box
118124
- [x] Center
@@ -131,6 +137,7 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
131137
- [x] WrapItem
132138

133139
### Forms
140+
134141
- [x] Button
135142
- [x] Button Group
136143
- [ ] Checkbox
@@ -147,6 +154,7 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
147154
- [ ] Textarea
148155

149156
### Data Display
157+
150158
- [x] Badge
151159
- [x] Close Button
152160
- [x] Code
@@ -178,18 +186,26 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
178186
- [ ] TagCloseButton
179187

180188
### Feedback
189+
181190
- [ ] Alert
182-
- [ ] Circular Progress
183-
- [ ] Progress
184-
- [ ] Skeleton
185-
- [ ] Spinner
186-
- [ ] Toast
191+
- [x] Circular Progress
192+
- [x] Circular Progress Label
193+
- [x] Progress
194+
- [x] Skeleton
195+
- [x] SkeletonText
196+
- [x] SkeletonCircle
197+
- [x] Spinner
198+
- [x] Toast
199+
- [x] useToast
200+
- [x] createStandaloneToast
187201

188202
### Typography
203+
189204
- [x] Text
190205
- [x] Heading
191206

192207
### Overlay
208+
193209
- [ ] Alert Dialog
194210
- [ ] Drawer
195211
- [ ] Menu
@@ -198,11 +214,13 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
198214
- [ ] Tooltip
199215

200216
### Disclosure
217+
201218
- [ ] Accordion
202219
- [ ] Tabs
203220
- [ ] Visually Hidden
204221

205222
### Navigation
223+
206224
- [x] Breadcrumb
207225
- [x] BreadcrumbItem
208226
- [x] BreadcrumbLink
@@ -212,12 +230,14 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
212230
- [x] LinkOverlay
213231

214232
### Media and Icons
233+
215234
- [x] Avatar
216235
- [x] AvatarGroup
217236
- [x] Icon
218237
- [x] Image
219238

220239
### Others
240+
221241
- [x] Portal
222242
- [x] Transitions
223243
- [x] Fade
@@ -227,6 +247,7 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
227247
- [x] Collapse
228248

229249
### Hooks
250+
230251
- [ ] useBoolean
231252
- [ ] useBreakpointValue
232253
- [ ] useClipboard
@@ -240,21 +261,29 @@ All of Style Props implementation is write in File:[Chakra__MakeProps.res](https
240261
- [ ] useToken
241262

242263
# Contribution
264+
243265
## Make a Pull Request
244-
* Please, refer with [conventionalcommits.org](https://www.conventionalcommits.org) for write `commit` message.
266+
267+
- Please, refer with [conventionalcommits.org](https://www.conventionalcommits.org) for write `commit` message.
245268

246269
## Make a new component binding
270+
247271
I'm use [hygen.io](https://hygen.io) for generate new component binding base on `Box.res`, see [\_templates/Box/new/new.ejs.t](https://github.com/ri7nz/rescript-chakra/blob/main/_templates/Box/new/new.ejs.t)
248272
USAGE:
249-
* basic
273+
274+
- basic
275+
250276
```console
251277
hygen Box new --name Name
252278
```
253-
* create `<Flex />`
279+
280+
- create `<Flex />`
281+
254282
```console
255283
hygen Box new --name Flex
256284
```
257285

258286
# Acknowledgement
259-
* [**chakra-ui/chakra-ui**](https://github.com/chakra-ui/chakra-ui) ⚡️ Simple, Modular & Accessible UI Components for your React Applications
260-
* [**giraud/bs-css**](https://github.com/giraud/bs-css) Statically typed DSL for writing css in reason.
287+
288+
- [**chakra-ui/chakra-ui**](https://github.com/chakra-ui/chakra-ui) ⚡️ Simple, Modular & Accessible UI Components for your React Applications
289+
- [**giraud/bs-css**](https://github.com/giraud/bs-css) Statically typed DSL for writing css in reason.

0 commit comments

Comments
 (0)