はじめに
おはようございます。当ブログにアクセス頂き、ありがとうございます。鳥のさえずりで、毎日優雅に目覚めている、たなけんです。(私の住んでいるキャンベラは人よりも大型の鳥の方が数が多いようで、叫び声に似た鳴き声で毎日起こされています。)
本エントリでは、Clojurescript(というかClosure Library)でのログ出力の方法および、これまで作成したWebクライアントの、ロジックの分離について記載します。
ログ出力の設定
Closure Libraryではログ出力の為のクラスを提供しており、それをインスタンス化するだけでログを出力することができます。また、ログの出力先をコンソールにするなど、コンソール環境を整えるクラスのスタティックメソッドを用いて、ログ出力環境を設定することができます。
コードは、本エントリ末尾に掲載します。
ロジックの分離
ロジック分離前のソースコードでは、サーバから渡されたデータをさらにgoogle visualization apiのDataTableクラス用に加工していました。このデータ変換は、クライアント側で行う必要性が薄いため、サーバ側でクライアントが必要するデータの形式に変換するようにしました。また、clj->js関数については非常に汎用性が高い関数(標準ライブラリに入っていても良さそう)であるため、名前空間my-dictionary-client.utilに移動しました。
ロジック分離後のソースコード(クライアント)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns my-dictionary-client.core | |
(:require | |
[clojure.browser.event :as event] | |
[clojure.browser.dom :as dom] | |
[clojure.browser.repl :as repl] | |
[goog.net.XhrIo] | |
[goog.debug.Logger :as logger] | |
[goog.debug.Console :as console] | |
[my-dictionary-client.util :as util])) | |
; set repl | |
(repl/connect "http://localhost:9000") | |
; set logger | |
(def logger (logger/getLogger "my-dictionary-client.core")) | |
; set console | |
(console/autoInstall) | |
; load google visualization api | |
(.load js/google "visualization" "1.0" (util/clj->js {:packages ["corechart" "table"]})) | |
; draw the table | |
(defn- dictionary-callback | |
[e] | |
(.draw | |
(js/google.visualization.Table. (dom/get-element :result)) | |
(js/google.visualization.DataTable. (.getResponseJson e/target)))) | |
; send request to the server and process the response | |
(defn- dictionary-request | |
[e] | |
(goog.net.XhrIo/send | |
(str "http://localhost:3000/dictionary/" (dom/get-value (dom/get-element :query-word))) | |
dictionary-callback)) | |
; start listening to the click event in :dictionary-button | |
(defn- init | |
[] | |
(event/listen (dom/get-element :dictionary-button) "click" dictionary-request) | |
nil) | |
; init is called when loading the library finished | |
(.setOnLoadCallback js/google init) |
ログの出力設定後、google visualization apiを読み込み、読み込み後にinit関数を呼び出します。init関数でdictionary-button要素のonClickイベントとdictionary-request関数を結びつけ、ボタン押下時にサーバと通信し、結果を表示します。
ロジックを可能な限りサーバ側へ寄せたことで、クライアント側での処理をライブラリの利用準備とユーザの操作への応答のみに限定することができました。
サーバおよびクライアントの全ソースコードは、githubにて公開していますので、関心のある方は是非ご覧になって下さい。
今回の作業は以上。最後までお読みいただきありがとうございました。
たなけん(作業時間30分)