Liking cljdoc? Tell your friends :D

Fulcro RAD Material UI Rendering Plugin

Clojars Project

A rendering plugin for Fulcro RAD that can render forms, reports, and containers for a web UI. It leverages Material UI, which is easy to theme.

Mostly a drop-in replacement for Semantic UI rendering plugin v1.2.21. All plugin-specific options must be nested under rendering-options. Also adds a few things, such as additional formatters and options. See the config file and the documentation for the options files for more info.

Version Compatibility

  • Fulcro RAD v1.3.13
  • Material UI 5

Stability Status

This library is alpha quality. It has been tested with the fulcro-rad-demo and various toy projects but has not yet been used in production. Use at your own risk.

Usage

Add this library to your Fulcro project and run:

yarn add @mui/material @emotion/react @emotion/styled @mui/icons-material

Follow the instructions here to add the Roboto font.

Install the controls on your RAD app:

(ns com.example.main
  (:require
    [com.fulcrologic.rad.application :as rad-app]
    [ogbe.fulcro.rad.mui :as mr]))

(defonce app (-> (rad-app/fulcro-rad-app)
                 (rad-app/install-ui-controls! mr/all-controls)))

You may also want to add ogbe.fulcro.mui.utils.css-baseline/ui-css-baseline to your root component to normalize the global CSS.

Instant type

If you are using the instant type you will also need to install the MUI Date Pickers library. Then add the localization provider to your root component:

(ns com.example.app.root
  (:require
    [com.fulcrologic.fulcro.components :refer [defsc]]
    ;; For date-fns
    [ogbe.fulcro.mui.date-pickers.adapter-date-fns :refer [adapter-date-fns]]
    ;; or for Day.js
    [ogbe.fulcro.mui.date-pickers.adapter-dayjs :refer [adapter-dayjs]]
    ;; or for Luxon
    [ogbe.fulcro.mui.date-pickers.adapter-luxon :refer [adapter-luxon]]
    ;; or for Moment.js
    [ogbe.fulcro.mui.date-pickers.adapter-moment :refer [adapter-moment]]
    [ogbe.fulcro.mui.date-pickers.localization-provider :refer [ui-localization-provider]]))

(defsc Root [this props]
  (ui-localization-provider
    {:dateAdapter adapter-date-fns}
    ;; Nest other UI elements
  ))

Warning: joda-time database truncation

The instant controls/form fields use a library dependent on js-joda. Its database is truncated for compactness. If you need a date before 2016, you will need to require @js-joda/timezone. The library also includes reduced file builds if you need a subset of the dates.

Theming

You can surround the top-level UI element of the root component with a theme provider to enable custom theming:

(ns com.example.app.root
  (:require
    [com.fulcrologic.fulcro.components :refer [defsc]]
    [ogbe.fulcro.mui.customization.colors :refer [indigo pink]]
    [ogbe.fulcro.mui.customization.styles :refer [create-theme ui-theme-provider]]))

(def theme
  (create-theme {:palette {:primary (indigo)
                           :secondary (pink)}}))

(defsc Root [this props]
  (ui-theme-provider
    {:theme theme}
    ;; Nest other UI elements
  ))

License

Copyright © 2023 Eva Ogbe

Distributed under the MIT License.

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close