Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/priornix/antizer
ClojureScript library for Ant Design React UI components
https://github.com/priornix/antizer
ant-design antd cljs clojurescript frontend react reagent reagent-components rum ui-components
Last synced: 3 months ago
JSON representation
ClojureScript library for Ant Design React UI components
- Host: GitHub
- URL: https://github.com/priornix/antizer
- Owner: priornix
- License: epl-1.0
- Created: 2017-06-30T01:27:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-09T15:34:51.000Z (about 4 years ago)
- Last Synced: 2024-04-23T20:55:11.360Z (7 months ago)
- Topics: ant-design, antd, cljs, clojurescript, frontend, react, reagent, reagent-components, rum, ui-components
- Language: Clojure
- Homepage:
- Size: 2.9 MB
- Stars: 257
- Watchers: 21
- Forks: 49
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ant-design - Antizer - Ant Design library for [ClojureScript](https://clojurescript.org/), an immutable, functional language that cross-compiles to JavaScript. (Non-JavaScript Libraries / Themes)
README
# antizer
Antizer is a ClojureScript library implementing [Ant Design](https://ant.design/) React components for [Reagent](https://github.com/reagent-project/reagent) and [Rum](https://github.com/tonsky/rum).
Ant Design is an enterprise-class UI design language and React-based implementation with the following features:
* An enterprise-class UI design language for web applications.
* A set of high-quality React components out of the box.
* Extensive API documentation and examples.## Resources
* [Reagent Demo](https://priornix.github.io/antizer/latest/examples/reagent.html)
* [Rum Demo](https://priornix.github.io/antizer/latest/examples/rum.html)
* [Antizer Documentation](https://priornix.github.io/antizer/latest/)
* [API Documentation](https://priornix.github.io/antizer/latest/api/)
* [Ant Design Component Documentation](https://ant.design/docs/react/introduce)
## Status
All the Ant Design components should be fully functional and production-ready. If you discover any missing or invalid components, please file a ticket.
### Who's Using Antizer
* [Gooreplacer](https://github.com/jiacai2050/gooreplacer/blob/master/README-en.md)
* [History Master](https://github.com/jiacai2050/history-master)
* [Ercoin](https://gitlab.com/Ercoin/ercoin-browser-wallet)## Usage
To use Antizer, add the following to your project.clj:
```clojure
[antizer "0.3.3"]
```You would also need to add the ClojureScript React library that you will be using.
For Reagent:
```clojure
[reagent "X.Y.Z"]
```For Rum:
```clojure
[rum "X.Y.Z"]
```It is also necessary to include the relevant Ant Design CSS stylesheet in your HTML page. There are two ways that the CSS files can be included:
1. Loading the CSS stylesheet from an external CDN:
```html
```
where `${antd_version}` must be the same antd library version as the one that Antizer is being linked to.
2. Alternatively, the CSS sheetsheet can be loaded from either of the following classpaths. This can be done via [Ring](https://github.com/ring-clojure/ring) library's [wrap-resource](https://ring-clojure.github.io/ring/ring.middleware.resource.html) function:
* `cljsjs/antd/development/antd.inc.css`
* `cljsjs/antd/production/antd.min.inc.css`An example of how this can be done is provided by https://github.com/dfuenzalida/antizer-demo.
You can also follow the instructions for customization with LESS [here](https://ant.design/docs/react/customize-theme).
### Quick Example
For Reagent:
```clojure
(require '[antizer.reagent :as ant])
(require '[reagent.core :as r])(defn click-me []
[ant/button {:on-click #(ant/message-info "Hello Reagent!")} "Click me"])(defn init! []
(r/render [click-me] (.-body js/document)))
```For Rum:
```clojure
(require '[antizer.rum :as ant])
(require '[rum.core :as rum])(defn click-me []
(ant/button {:on-click #(ant/message-info "Hello Rum!")} "Click me"))(defn init! []
(rum/mount (click-me) (.-body js/document)))
```## Examples
To compile the examples:
```bash
lein with-profile +examples cljsbuild once
```To compile the examples and enable hot reloading with figwheel:
```bash
lein with-profile +examples-dev figwheel
```After compilation, open up the respective HTML page in the `examples/resources` folder in your browser.
## Changes
### 0.3.3
* Updated antd library to [3.26.17](https://github.com/ant-design/ant-design/blob/3.x-stable/CHANGELOG.en-US.md#32617)### 0.3.2
* Updated antd library to [3.20.6](https://github.com/ant-design/ant-design/blob/3.x-stable/CHANGELOG.en-US.md#3206). thx [Christoph Frick](https://github.com/christoph-frick), [Kelvin Jiang](https://github.com/kevindragon)### 0.3.1
* Updated antd library to [3.8.0](https://github.com/ant-design/ant-design/blob/3.x-stable/CHANGELOG.en-US.md#380).
* Added documentation on loading CSS files. [#11](https://github.com/priornix/antizer/issues/11)
* Added Card.Meta example.
* Fixed Form example.
* Minor fomatting changes to docstring.### 0.3.0
* Updated antd library to [3.7.1](https://github.com/ant-design/ant-design/blob/3.x-stable/CHANGELOG.en-US.md#380). [#16](https://github.com/priornix/antizer/pull/16) thx [@sctianwei](https://github.com/sctianwei), [@piotr-yuxuan](https://github.com/piotr-yuxuan)
* Fixed autocomplete example for empty string.
* Fixed layout issue in examples.
* Removed known issue for DatePicker and Calendar components.
* Added props argument to reagent.create-form. [#12](https://github.com/priornix/antizer/pull/12)
thx [@AndreasKlein](https://github.com/AndreasKlein)### 0.2.2
* Updated antd library to [2.12.3](https://ant.design/changelog#2.12.3).
* Fixed resource typo in README.md and documentation. [#1](https://github.com/priornix/antizer/issues/1) thx [@weavejester](https://github.com/weavejester)
* Added missing component: Breadcrumb.Item. [#2](https://github.com/priornix/antizer/issues/2) thx [@weavejester](https://github.com/weavejester)
* Added new component: Input.TextArea. [#3](https://github.com/priornix/antizer/issues/3) thx [@mbuczko](https://github.com/mbuczko)
* Fixed layout issue in examples.
* Added note on DatePicker and Calendar known issues.### 0.2.1
* Updated antd library to [2.11.2](https://ant.design/changelog#2.11.2).
* Updated instructions for CSS file inclusion.
* Added Avatar component and example.
* Fixed layout and CSS styles for examples.
* Fixed cljsbuild settings for examples.## Known Issues
None
## Acknowledgement
Thanks to Ant Design, [cljsjs/antd](https://github.com/cljsjs/packages/tree/master/antd), [Reagent](https://github.com/reagent-project/reagent), [Rum](https://github.com/tonsky/rum) and of course [ClojureScript](https://clojurescript.org), without which this project would not be possible.
## License
Copyright © 2017 Michael Lim
Licensed under Eclipse Public License (see LICENSE).