Processing math: 100%

2023年4月30日日曜日

Cozy Web/エンティティ作成ビュー

Cozy Webはモデル駆動開発の基盤となるWebフレームワークです。リソースのモデルを定義することで、ノンプログラミングでWeb上のリソースをアクセスできる機能について説明を進めています。

前回はHelloResourceを用いてエンティティの作成操作を実現方法について説明しました。

エンティティのモデル定義をすることでエンティティ作成のオペレーションが可能になりましたが、エンティティ作成画面はCozy Webのデフォルト画面が使用されます。

今回はエンティティ作成用のビューを定義することで、エンティティ作成画面をカスタマイズする方法について説明します。

HelloResource

ここまで作成したHelloResourceは、モデルの定義が行われているのでそのままエンティティの作成を行うことができます。

準備

cozyを起動するディレクトリのwebappsディレクトリに、アプリケーションのホームディレクトリとなるHelloResourceが作成されています。これをベースに開発を進めます。

モデル

WEB-INF/models/model.orgにアプリケーションで使用するモデルが定義されています。

  1. * entity    
  2. ** product  
  3. *** features    
  4. table=product  
  5. *** attributes    
  6. | Name  | Type   | Multiplicity |  
  7. |-------+--------+--------------|  
  8. | id    | token  |            1 |  
  9. | name  | string |            1 |  
  10. | price | int    |            1 |  

エンティティproductを定義しています。

これがWebのリソースproductとなります。

トップページ

トップページとしてindex.htmlを作成し、プロジェクトのトップページに配置します。

  1. <html>  
  2.     <head>  
  3.     <title>HelloResource</title>  
  4.     </head>  
  5.     <body>  
  6.     <ul>  
  7.         <li><a href="product">List</a></li>  
  8.         <li><a href="product/create">Create</a></li>  
  9.     </ul>  
  10.     </body>  
  11. </html>  

エンティティ操作シナリオ

エンティティのモデル定義を行うとエンティティ作成シナリオが自動的に作成され、このエンティティ作成シナリオによって、エンティティの作成オペレーションが可能になります。

この時、画面はエンティティ作成シナリオのデフォルトのビューが用いられます。

アプリケーションでカスタマイズした画面を使用するためには、エンティティ作成シナリオ用のビューを登録します。

エンティティ作成シナリオ用のビューの格納場所は、エンティティ名+「.entity」ディレクトリです。エンティティproductの場合は「product.entity」です。

エンティティ作成シナリオでは以下のビューを使用します。

  • エンティティ作成
  • 登録データ確認
  • 結果

それぞれカスタマイズした画面を登録していきます。

エンティティ作成

エンティティ作成画面として以下のHTMLを、product.entity配下に「create__input.html」という名前で作成します。

「create__input」の「create」が作成画面を、「input」が入力画面であることを示しています。

Input要素のvalue属性はエンティティ操作シナリオが補完するので空欄にしています。

  1. <?xml version="1.0"?>  
  2. <!DOCTYPE html>  
  3. <html>  
  4.   <head>  
  5.     <title>Product作成/入力</title>  
  6.   </head>  
  7.   <body>  
  8.     <h1>Product作成/入力</h1>  
  9.     <form action="" method="POST">  
  10.       <table class="">  
  11.         <tbody>  
  12.           <tr class="">  
  13.             <th scope="row" class="">Id</th>  
  14.             <td class="">  
  15.               <input type="text" name="id" value=""/>  
  16.             </td>  
  17.           </tr>  
  18.           <tr class="">  
  19.             <th scope="row" class="">Name</th>  
  20.             <td class="">  
  21.               <input type="text" name="name" value=""/>  
  22.             </td>  
  23.           </tr>  
  24.           <tr class="">  
  25.             <th scope="row" class="">Price</th>  
  26.             <td class="">  
  27.               <input type="text" name="price" value=""/>  
  28.             </td>  
  29.           </tr>  
  30.         </tbody>  
  31.       </table>  
  32.       <table>  
  33.         <tr>  
  34.           <td>  
  35.             <input type="submit" name="$submit" value="Input"/>  
  36.           </td>  
  37.           <td>  
  38.             <input type="submit" name="$submit" value="Cancel"/>  
  39.           </td>  
  40.         </tr>  
  41.       </table>  
  42.       <input type="hidden" name="$scenario" value=""/>  
  43.     </form>  
  44.   </body>  
  45. </html>  

登録データ確認

エンティティ作成の登録データ確認画面として以下のHTMLを、product.entity配下に「create__confirm.html」という名前で作成します。

「create__confirm」の「create」が作成画面を、「confirm」がデータ確認画面であることを示しています。

Input要素のvalue属性はエンティティ操作シナリオが補完するので空欄にしています。

  1. <html>  
  2.   <head>  
  3.     <title>Product作成/データ確認</title>  
  4.   </head>  
  5.   <body>  
  6.     <h1>Product作成/データ確認</h1>  
  7.     <form action="" method="POST">  
  8.       <table class="">  
  9.         <tbody>  
  10.           <tr class="">  
  11.             <th scope="row" class="">Id</th>  
  12.             <td class="">5</td>  
  13.           </tr>  
  14.           <tr class="">  
  15.             <th scope="row" class="">Name</th>  
  16.             <td class="">Banana</td>  
  17.           </tr>  
  18.           <tr class="">  
  19.             <th scope="row" class="">Price</th>  
  20.             <td class="">250</td>  
  21.           </tr>  
  22.         </tbody>  
  23.       </table>  
  24.       <input type="hidden" name="id" value="5"/>  
  25.       <input type="hidden" name="name" value="Banana"/>  
  26.       <input type="hidden" name="price" value="250"/>  
  27.       <table>  
  28.         <tr>  
  29.           <td>  
  30.             <input type="submit" name="$submit" value="Ok"/>  
  31.           </td>  
  32.           <td>  
  33.             <input type="submit" name="$submit" value="Back"/>  
  34.           </td>  
  35.           <td>  
  36.             <input type="submit" name="$submit" value="Cancel"/>  
  37.           </td>  
  38.         </tr>  
  39.       </table>  
  40.       <input type="hidden" name="$scenario" value=""/>  
  41.     </form>  
  42.   </body>  
  43. </html>  

結果

エンティティ作成の登録データ確認画面として以下のHTMLを、product.entity配下に「create__show.html」という名前で作成します。

「create__show」の「create」が作成画面を、「show」がデータ結果表示画面であることを示しています。

Input要素のvalue属性はエンティティ操作シナリオが補完するので空欄にしています。

  1. <?xml version="1.0"?>  
  2. <!DOCTYPE html>  
  3. <html>  
  4.   <head>  
  5.     <title>Product作成/データ確認</title>  
  6.   </head>  
  7.   <body>  
  8.     <h1>Product作成/データ確認</h1>  
  9.     <form action="" method="POST">  
  10.       <table class="">  
  11.         <tbody>  
  12.           <tr class="">  
  13.             <th scope="row" class="">Id</th>  
  14.             <td class="">5</td>  
  15.           </tr>  
  16.           <tr class="">  
  17.             <th scope="row" class="">Name</th>  
  18.             <td class="">Banana</td>  
  19.           </tr>  
  20.           <tr class="">  
  21.             <th scope="row" class="">Price</th>  
  22.             <td class="">250</td>  
  23.           </tr>  
  24.         </tbody>  
  25.       </table>  
  26.       <input type="hidden" name="id" value="5"/>  
  27.       <input type="hidden" name="name" value="Banana"/>  
  28.       <input type="hidden" name="price" value="250"/>  
  29.       <table>  
  30.         <tr>  
  31.           <td>  
  32.             <input type="submit" name="$submit" value="Ok"/>  
  33.           </td>  
  34.         </tr>  
  35.       </table>  
  36.       <input type="hidden" name="$scenario" value=""/>  
  37.     </form>  
  38.   </body>  
  39. </html>  

実行

それでは実行してみましょう。

エンティティ作成ページ

最初にエンティティ作成を行うためのデータ入力ページを表示します。

以下のようにリソース名の後ろに「_create_」をつけてアクセスします。

  1. $ curl http://localhost:8080/web/HelloResource/product/_create_  

次のようにエンティティ作成に必要なデータを登録するためのFORMの画面が表示されました。

product.entityにcreate__input.htmlとして登録したビューが使用されています。

Input要素のvalue属性はエンティティ操作シナリオが補完しています。

  1. <?xml version="1.0"?>  
  2. <!DOCTYPE html>  
  3. <html>  
  4.   <head>  
  5.     <title>Product作成/入力</title>  
  6.   </head>  
  7.   <body>  
  8.     <h1>Product作成/入力</h1>  
  9.     <form action="" method="POST">  
  10.       <table class="">  
  11.         <tbody>  
  12.           <tr class="">  
  13.             <th scope="row" class="">Id</th>  
  14.             <td class="">  
  15.               <input type="text" name="id" value=""/>  
  16.             </td>  
  17.           </tr>  
  18.           <tr class="">  
  19.             <th scope="row" class="">Name</th>  
  20.             <td class="">  
  21.               <input type="text" name="name" value=""/>  
  22.             </td>  
  23.           </tr>  
  24.           <tr class="">  
  25.             <th scope="row" class="">Price</th>  
  26.             <td class="">  
  27.               <input type="text" name="price" value=""/>  
  28.             </td>  
  29.           </tr>  
  30.         </tbody>  
  31.       </table>  
  32.       <table>  
  33.         <tr>  
  34.           <td>  
  35.             <input type="submit" name="$submit" value="Input"/>  
  36.           </td>  
  37.           <td>  
  38.             <input type="submit" name="$submit" value="Cancel"/>  
  39.           </td>  
  40.         </tr>  
  41.       </table>  
  42.       <input type="hidden" name="$scenario" value="{&quot;name&quot;:&quot;create-entity&quot;,&quot;state&quot;:&quot;input&quot;,&quot;entity&quot;:&quot;product&quot;,&quot;schema&quot;:{&quot;columns&quot;:[{&quot;name&quot;:&quot;id&quot;,&quot;datatype&quot;:&quot;token&quot;,&quot;multiplicity&quot;:&quot;1&quot;}, {&quot;name&quot;:&quot;name&quot;,&quot;datatype&quot;:&quot;string&quot;,&quot;multiplicity&quot;:&quot;1&quot;}, {&quot;name&quot;:&quot;price&quot;,&quot;datatype&quot;:&quot;int&quot;,&quot;multiplicity&quot;:&quot;1&quot;}]},&quot;data&quot;:{}}"/>  
  43.     </form>  
  44.   </body>  
  45. </html>  

このページでは以下のボタンが表示されています。

Input
データ登録
Cancel
キャンセル Inputボタンを押下するとエンティティ作成のための次の画面に遷移します。

Cancelボタンを押下するとトップページに戻ります。

登録データ確認ページ

データ登録画面でInputボタンが押されたので、登録データ確認画面が表示されます。

product.entityにcreate__confirm.htmlとして登録したビューが使用されています。

Input要素のvalue属性はエンティティ操作シナリオが補完しています。

  1. <html>  
  2.   <head>  
  3.     <title>Product作成/データ確認</title>  
  4.   </head>  
  5.   <body>  
  6.     <h1>Product作成/データ確認</h1>  
  7.     <form action="" method="POST">  
  8.       <table class="">  
  9.         <tbody>  
  10.           <tr class="">  
  11.             <th scope="row" class="">Id</th>  
  12.             <td class="">5</td>  
  13.           </tr>  
  14.           <tr class="">  
  15.             <th scope="row" class="">Name</th>  
  16.             <td class="">Banana</td>  
  17.           </tr>  
  18.           <tr class="">  
  19.             <th scope="row" class="">Price</th>  
  20.             <td class="">250</td>  
  21.           </tr>  
  22.         </tbody>  
  23.       </table>  
  24.       <input type="hidden" name="id" value="5"/>  
  25.       <input type="hidden" name="name" value="Banana"/>  
  26.       <input type="hidden" name="price" value="250"/>  
  27.       <table>  
  28.         <tr>  
  29.           <td>  
  30.             <input type="submit" name="$submit" value="Ok"/>  
  31.           </td>  
  32.           <td>  
  33.             <input type="submit" name="$submit" value="Back"/>  
  34.           </td>  
  35.           <td>  
  36.             <input type="submit" name="$submit" value="Cancel"/>  
  37.           </td>  
  38.         </tr>  
  39.       </table>  
  40.       <input type="hidden" name="$scenario" value="{&quot;name&quot;:&quot;create-entity&quot;,&quot;state&quot;:&quot;confirm&quot;,&quot;entity&quot;:&quot;product&quot;,&quot;schema&quot;:{&quot;columns&quot;:[{&quot;name&quot;:&quot;id&quot;,&quot;datatype&quot;:&quot;token&quot;,&quot;multiplicity&quot;:&quot;1&quot;}, {&quot;name&quot;:&quot;name&quot;,&quot;datatype&quot;:&quot;string&quot;,&quot;multiplicity&quot;:&quot;1&quot;}, {&quot;name&quot;:&quot;price&quot;,&quot;datatype&quot;:&quot;int&quot;,&quot;multiplicity&quot;:&quot;1&quot;}]},&quot;data&quot;:{&quot;name&quot;:&quot;Banana&quot;,&quot;scenario&quot;:&quot;{\&quot;name\&quot;:\&quot;create-entity\&quot;,\&quot;state\&quot;:\&quot;input\&quot;,\&quot;entity\&quot;:\&quot;product\&quot;,\&quot;schema\&quot;:{\&quot;columns\&quot;:[{\&quot;name\&quot;:\&quot;id\&quot;,\&quot;datatype\&quot;:\&quot;token\&quot;,\&quot;multiplicity\&quot;:\&quot;1\&quot;},{\&quot;name\&quot;:\&quot;name\&quot;,\&quot;datatype\&quot;:\&quot;string\&quot;,\&quot;multiplicity\&quot;:\&quot;1\&quot;},{\&quot;name\&quot;:\&quot;price\&quot;,\&quot;datatype\&quot;:\&quot;int\&quot;,\&quot;multiplicity\&quot;:\&quot;1\&quot;}]},\&quot;data\&quot;:{}}&quot;,&quot;price&quot;:&quot;250&quot;,&quot;id&quot;:&quot;5&quot;,&quot;submit&quot;:&quot;Input&quot;}}"/>  
  41.     </form>  
  42.   </body>  
  43. </html>  

画面に入力したデータが表示されます。この結果を確認した上で、以下のいずれかのボタンを押下します。

OK
確認OK
Back
入力画面にモデル
Cancel
キャンセル

Okボタンを押下するとエンティティ作成のための次の画面に遷移します。

結果ページ

登録データ確認画面でOKボタンが押されたので、エンティティの作成が行われ、作成されたエンティティの情報表示ページに移ります。

product.entityにcreate__show.htmlとして登録したビューが使用されています。

Input要素のvalue属性はエンティティ操作シナリオが補完しています。

  1. <?xml version="1.0"?>  
  2. <!DOCTYPE html>  
  3. <html>  
  4.   <head>  
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>  
  6.     <meta name="keywords" content="TBD"/>  
  7.     <meta name="description" content="TBD"/>  
  8.     <meta name="robots" content="noindex,nofollow"/>  
  9.     <meta name="author" content="TBD"/>  
  10.   </head>  
  11.   <body>  
  12.     <form action="" method="POST">  
  13.       <table class="">  
  14.         <tbody>  
  15.           <tr class="">  
  16.             <th scope="row" class="">Id</th>  
  17.             <td class="">5</td>  
  18.           </tr>  
  19.           <tr class="">  
  20.             <th scope="row" class="">Name</th>  
  21.             <td class="">Banana</td>  
  22.           </tr>  
  23.           <tr class="">  
  24.             <th scope="row" class="">Price</th>  
  25.             <td class="">250</td>  
  26.           </tr>  
  27.         </tbody>  
  28.       </table>  
  29.       <input type="hidden" name="id" value="5"/>  
  30.       <input type="hidden" name="name" value="Banana"/>  
  31.       <input type="hidden" name="price" value="250"/>  
  32.       <table>  
  33.         <tr>  
  34.           <td>  
  35.             <input type="submit" name="$submit" value="Ok"/>  
  36.           </td>  
  37.         </tr>  
  38.       </table>  
  39.       <input type="hidden" name="$scenario" value="{&quot;name&quot;:&quot;create-entity&quot;,&quot;state&quot;:&quot;show&quot;,&quot;entity&quot;:&quot;product&quot;,&quot;schema&quot;:{&quot;columns&quot;:[{&quot;name&quot;:&quot;id&quot;,&quot;datatype&quot;:&quot;token&quot;,&quot;multiplicity&quot;:&quot;1&quot;}, {&quot;name&quot;:&quot;name&quot;,&quot;datatype&quot;:&quot;string&quot;,&quot;multiplicity&quot;:&quot;1&quot;}, {&quot;name&quot;:&quot;price&quot;,&quot;datatype&quot;:&quot;int&quot;,&quot;multiplicity&quot;:&quot;1&quot;}]},&quot;data&quot;:{&quot;name&quot;:&quot;Banana&quot;,&quot;scenario&quot;:&quot;{\&quot;name\&quot;:\&quot;create-entity\&quot;,\&quot;state\&quot;:\&quot;confirm\&quot;,\&quot;entity\&quot;:\&quot;product\&quot;,\&quot;schema\&quot;:{\&quot;columns\&quot;:[{\&quot;name\&quot;:\&quot;id\&quot;,\&quot;datatype\&quot;:\&quot;token\&quot;,\&quot;multiplicity\&quot;:\&quot;1\&quot;},{\&quot;name\&quot;:\&quot;name\&quot;,\&quot;datatype\&quot;:\&quot;string\&quot;,\&quot;multiplicity\&quot;:\&quot;1\&quot;},{\&quot;name\&quot;:\&quot;price\&quot;,\&quot;datatype\&quot;:\&quot;int\&quot;,\&quot;multiplicity\&quot;:\&quot;1\&quot;}]},\&quot;data\&quot;:{\&quot;name\&quot;:\&quot;a\&quot;,\&quot;$scenario\&quot;:\&quot;{\\\&quot;name\\\&quot;:\\\&quot;create-entity\\\&quot;,\\\&quot;state\\\&quot;:\\\&quot;input\\\&quot;,\\\&quot;entity\\\&quot;:\\\&quot;product\\\&quot;,\\\&quot;schema\\\&quot;:{\\\&quot;columns\\\&quot;:[{\\\&quot;name\\\&quot;:\\\&quot;id\\\&quot;,\\\&quot;datatype\\\&quot;:\\\&quot;token\\\&quot;,\\\&quot;multiplicity\\\&quot;:\\\&quot;1\\\&quot;},{\\\&quot;name\\\&quot;:\\\&quot;name\\\&quot;,\\\&quot;datatype\\\&quot;:\\\&quot;string\\\&quot;,\\\&quot;multiplicity\\\&quot;:\\\&quot;1\\\&quot;},{\\\&quot;name\\\&quot;:\\\&quot;price\\\&quot;,\\\&quot;datatype\\\&quot;:\\\&quot;int\\\&quot;,\\\&quot;multiplicity\\\&quot;:\\\&quot;1\\\&quot;}]},\\\&quot;data\\\&quot;:{}}\&quot;,\&quot;price\&quot;:\&quot;10\&quot;,\&quot;id\&quot;:\&quot;5\&quot;,\&quot;$submit\&quot;:\&quot;Input\&quot;}}&quot;,&quot;price&quot;:&quot;250&quot;,&quot;id&quot;:&quot;5&quot;,&quot;submit&quot;:&quot;Ok&quot;}}"/>  
  40.     </form>  
  41.   </body>  
  42. </html>  

作成したエンティティのデータが表示されます。この結果を確認した後に、OKボタンを押下するとトップページに戻ります。

  1. <?xml version="1.0"?>  
  2. <!DOCTYPE html>  
  3. <html>  
  4.   <head>  
  5.     <title>HelloResource</title>  
  6.   </head>  
  7.   <body>  
  8.     <ul>  
  9.       <li>  
  10.         <a href="product">List</a>  
  11.       </li>  
  12.       <li>  
  13.         <a href="product/_create_">Create</a>  
  14.       </li>  
  15.     </ul>  
  16.   </body>  
  17. </html>  

確認

確認のためにリソースproductの一覧を表示してみましょう。

  1. $ curl http://localhost:8080/web/HelloResource/product  

以下のようにカスタムのビューを使った場合も、無事リソースが追加されました。

  1. <?xml version="1.0"?>  
  2. <!DOCTYPE html>  
  3. <html>  
  4.   <head>  
  5.     <title>Product List</title>  
  6.   </head>  
  7.   <body>  
  8.     <table class="">  
  9.       <caption class="">product</caption>  
  10.       <thead class="">  
  11.         <tr class="">  
  12.           <th scope="col" class="">Id</th>  
  13.           <th scope="col" class="">Name</th>  
  14.           <th scope="col" class="">Price</th>  
  15.         </tr>  
  16.       </thead>  
  17.       <tbody class="">  
  18.         <tr data-href="product/1.html">  
  19.           <td class="">1</td>  
  20.           <td class="">Apple</td>  
  21.           <td class="">300</td>  
  22.         </tr>  
  23.         <tr data-href="product/2.html">  
  24.           <td class="">2</td>  
  25.           <td class="">Orange</td>  
  26.           <td class="">350</td>  
  27.         </tr>  
  28.         <tr data-href="product/3.html">  
  29.           <td class="">3</td>  
  30.           <td class="">Peach</td>  
  31.           <td class="">400</td>  
  32.         </tr>  
  33.         <tr data-href="product/4.html">  
  34.           <td class="">4</td>  
  35.           <td class="">Banana</td>  
  36.           <td class="">250</td>  
  37.         </tr>  
  38.       </tbody>  
  39.     </table>  
  40.   </body>  
  41. </html>  

まとめ

Cozy Web上でエンティティのモデル定義をすることで、Web上でのリソースアクセスをノンプログラミングで行う方法についてみています。

今回はリソースの作成ビューの使用方法について説明しました。

次回はリソースの更新、削除の操作の作成鳳凰について説明します。

諸元

Cozy
0.0.12