Skip to content

Files

Latest commit

 

History

History
 
 

dialog-polyfill

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

cljsjs/dialog-polyfill

[cljsjs/dialog-polyfill "0.4.7-0"] ;; latest release

This jar comes with deps.cljs as used by the Foreign Libs feature of the ClojureScript compiler. After adding the above dependency to your project you can require the packaged library like so:

(ns application.core
  (:require cljsjs.dialog-polyfill))

...

(defn get-dialog [name]
  (.querySelector js/document (str "#" name)))

(defn show-dialog [name]
  (when-let [dialog (get-dialog name)]
    (.showModal dialog)
    dialog))

(defn close-dialog [name]
  (when-let [dialog (get-dialog name)]
    (.close dialog)))

(defn my-dialog []
  [dialog
   {:id "my-dialog"}
   [:h1 "This is a modal dialog"]
   [:button {:on-click #(close-dialog "my-dialog")} "Ok"]])

(defn dialog-button []
  [:button
   {:on-click #(show-dialog "my-dialog")}
   "Dialog"])

(defn home-page []
  [:div [:h2 "Welcome to clipboard-test"]
   [my-dialog]
   [dialog-button]])