本文へジャンプ

第二回 Vue.jsでWebアプリをつくろう!

Posted by MONSTER DIVE

前回、Vue.jsのトリコになって、試しに時計アプリを作成してみましたが、二回目の今回はもう少し複雑なアプリを作りたいと思います。
作るのはiTunesのAPIを使ったiTunesSearchです!

実装ポイントはAPIとの通信による非同期処理とそれに伴うローディングの実装、親コンポーネントと子コンポーネントの連携方法などです。

開発環境構築

基本的な開発環境の構築は前回の記事を参考にしてください。

今回は axios というhttp通信を行う為のライブラリを使用するので、

コマンドプロンプト(ターミナル)に

  1. npm install -S axios

と、入力してインストールしてください。

これで準備は完了です。

開発開始

前回同様、ファイルの整理から始めます。

  • src/App.vue

を開いて

  1. <template>
  2.  
  3.  
  4. </template>
  5.  
  6.  
  7. <script>
  8.  
  9.  
  10. </script>
  11.  
  12.  
  13. <style>
  14.  
  15.  
  16. </style>

一旦、空にします。

続いて

  • src/assets/logo.png
  • src/components/HelloWorld.vue

を削除します。

最初に検索フォームをつくるため、

  • src/components/Search.vue

を作成します。

まずは、script部分からです。

  1. <script>
  2. import axios from "axios";
  3.  
  4.  
  5. export default {
  6.   data() {
  7.     return {
  8.       term: "",
  9.     }
  10.   },
  11.   methods: {
  12.     async exe() {
  13.       this.$emit("loadStart")
  14.       const { data } = await axios.get(`//itunes.apple.com/search?term=${this.term}&country=jp&entity=musicVideo`);
  15.       this.$emit("loadComplete", { results: data.results })
  16.     },
  17.   },
  18. };
  19. </script>

ポイント

  • $emit
    イベントを送出するもので、JavaScriptで例えるとdispatchEventだと思ってください。
  • async/await
    async/await自体はVue.jsとは関係ない機能ですが、非同期処理が非常に簡単に書けるので積極的に使用していきましょう。
  • 取得したデータを$emitを通じて、親コンポーネントで受け取れるようにする。

続いて、template部分です。

  1. <template>
  2.   <div>
  3.     <div class="container">
  4.       <input class="text" type="text" v-model="term" @keyup.enter="exe">
  5.       <input class="submit" type="submit" value="Search" @click="exe">
  6.     </div>
  7.   </div>
  8. </template>

ポイント

  • v-model
    双方向データバインディングを行うもので、inputの値とdataの値が常に同期されます。
  • v-on(@)
    イベントを購読するもので、JavaScriptで例えるとaddEventListenerだと思ってください。 @はv-onの省略記法です。

また、装飾子も用意されていて

  • @event.stop - stopPropagationを実行
  • @event.prevent - preventDefaultを実行
  • @event.once - イベントを一度だけ実行
  • @event.{keyCode | keyAlias} - 指定したキーのみ実行

他にも色々用意されているので公式サイトでご確認ください。

最後に、style部分です。

  1. <style scoped>
  2. .container {
  3.   display: flex;
  4.   justify-content: center;
  5.   height: 70px;
  6.   padding: 20px;
  7.   background-color: #35495e;
  8.   box-sizing: border-box;
  9. }
  10.  
  11.  
  12. .text {
  13.   width: 50%;
  14.   max-width: 300px;
  15.   padding: .5em;
  16.   border: none;
  17. }
  18.  
  19.  
  20. .submit {
  21.   padding: .5em 2em;
  22.   margin-left: 10px;
  23.   color: #fff;
  24.   background-color: #42b883;
  25.   border: none;
  26.   border-radius: 20px;
  27. }
  28. </style>

続いてローディング画面のために

  • src/components/Loading.vue

を作成します。

ここはCSSアニメーションでつくるので、templateとstyleだけです。

template部分

  1. <template>
  2.   <div>
  3.     <div class="item"></div>
  4.   </div>
  5. </template>

style部分

  1. <style scoped>
  2. .item {
  3.   width: 50px;
  4.   height: 50px;
  5.   position: absolute;
  6.   top: 0;
  7.   right: 0;
  8.   bottom: 0;
  9.   left: 0;
  10.   margin: auto;
  11.   border: 3px solid #42b883;
  12.   border-top-color: transparent;
  13.   border-radius: 50%;
  14.   animation: spin 0.75s infinite linear;
  15. }
  16.  
  17.  
  18. .item::after {
  19.   content: "";
  20.   position: absolute;
  21.   top: -3px;
  22.   left: -3px;
  23.   width: inherit;
  24.   height: inherit;
  25.   border: inherit;
  26.   border-radius: inherit;
  27.   transform: rotate(60deg);
  28. }
  29.  
  30.  
  31. @keyframes spin {
  32.   from {
  33.     transform: rotate(0deg);
  34.   }
  35.   to {
  36.     transform: rotate(360deg);
  37.   }
  38. }
  39. </style>

続いて検索結果を表示する

  • src/components/Result.vue

を作成します。

まずは、script部分です。

  1. <script>
  2. import Loading from "@/components/Loading";
  3.  
  4.  
  5. export default {
  6.   props: ["items", "loadProgress"],
  7.   components: {
  8.     Loading,
  9.   },
  10.   methods: {
  11.     getYear(dateStr) {
  12.       const date = new Date(dateStr)
  13.       return date.getFullYear()
  14.     },
  15.   },
  16. };
  17. </script>

ポイント

  • 親コンポーネントからpropsでitemsとloadProgressを受け取る。
  • Loadingコンポーネントを登録
  • getYearメソッドで日付の文字列から年を取得

続いて、template部分です。

  1. <template>
  2.   <div>
  3.     <ul class="list">
  4.       <li class="item" v-for="item of items" :key="item.trackId">
  5.         <div class="item-inner">
  6.           <div class="photo">
  7.             <img class="photo-img" :src="item.artworkUrl100" :alt=item.trackName>
  8.           </div>
  9.           <div class="content">
  10.             <p><a class="track" :href="item.trackViewUrl" target="_blank">{{ item.trackName }}</a></p>
  11.             <p><a class="artist" :href="item.artistViewUrl" target="_blank">{{ item.artistName }}</a></p>
  12.             <div class="data"> {{ getYear(item.releaseDate) }} / {{ item.primaryGenreName }} / ¥{{ item.trackPrice }}</div>
  13.           </div>
  14.         </div>
  15.       </li>
  16.     </ul>
  17.     <Loading class="loading" v-show="loadProgress"/>
  18.   </div>
  19. </template>

ポイント

  • v-for
    反復処理を行います。
    ここで言うと、親コンポーネントから送られてきたitemsの中身を繰り返しています。
    また、key属性に一意な値を設定することが推奨されています。(:を使って動的に値を設定します)

  • v-show
    値の真偽に応じて表示・非表示を切り替えるものです。
    ここでは、loadProgressの値に応じてLoadingコンポーネントの表示・非表示を切り替えています。

最後にstyleです。

  1. <style scoped>
  2. .item {
  3.   padding: 20px 0;
  4. }
  5.  
  6.  
  7. .item:nth-of-type(even) {
  8.   background-color: #f5f5f5;
  9. }
  10.  
  11.  
  12. .item-inner {
  13.   display: flex;
  14.   width: 90%;
  15.   max-width: 600px;
  16.   margin: auto;
  17. }
  18.  
  19.  
  20. .photo {
  21.   flex: 0 0 150px;
  22. }
  23.  
  24.  
  25. .photo-img {
  26.   width: 100%;
  27.   display: block;
  28. }
  29.  
  30.  
  31. .content {
  32.   flex: 1 1;
  33.   padding-left: 20px;
  34. }
  35.  
  36.  
  37. .track {
  38.   color: #42b883;
  39.   font-size: 2rem;
  40.   font-weight: 700;
  41.   text-decoration: none;
  42. }
  43.  
  44.  
  45. .artist {
  46.   display: block;
  47.   color: #42b883;
  48.   font-size: 1.4rem;
  49.   font-weight: 700;
  50.   text-decoration: none;
  51. }
  52.  
  53.  
  54. .data {
  55.   margin-top: 1.5em;
  56.   text-align: right;
  57.   font-size: 1.2rem;
  58. }
  59.  
  60.  
  61. .loading {
  62.   position: fixed;
  63.   top: 70px;
  64.   right: 0;
  65.   bottom: 0;
  66.   left: 0;
  67.   z-index: 1;
  68.   background: #35495e;
  69. }
  70. </style>

最後に今までにつくったコンポーネントを画面に表示させるために

  • src/App.vue

を編集していきます。

まずは、scriptです。

  1. <script>
  2. import Search from "@/components/Search";
  3. import Result from "@/components/Result";
  4.  
  5.  
  6. export default {
  7.   data() {
  8.     return {
  9.       items: [],
  10.       loadProgress: false,
  11.     };
  12.   },
  13.   methods: {
  14.     onLoadStart() {
  15.       this.loadProgress = true;
  16.     },
  17.     onLoadComplete({ results }) {
  18.       this.items = results;
  19.       this.loadProgress = false;
  20.     },
  21.   },
  22.   components: {
  23.     Search,
  24.     Result,
  25.   },
  26. };
  27. </script>

ポイント

  • Searchコンポーネント、Resultコンポーネントを登録
  • loadStart/loadCompleteイベント時に実行するイベントハンドラを作成
  • dataのitemsにはAPIから取得したデータを入れる
  • loadProgressにはローディングの状態が入る

続いてtemplateです。

  1. <template>
  2.   <div class="root">
  3.     <Search class="search" @loadStart="onLoadStart" @loadComplete="onLoadComplete"/>
  4.     <Result :items="items" :loadProgress="loadProgress"/>
  5.   </div>
  6. </template>

ポイント

  • SearchコンポーネントからloadStart/loadCompleteイベントを購読する
  • ResultコンポーネントにitemsとloadProgressを送る

最後にstyleです。

  1. <style scoped>
  2. .root {
  3.   padding-top: 70px;
  4. }
  5.  
  6.  
  7. .search {
  8.   width: 100%;
  9.   position: fixed;
  10.   top: 0;
  11.   left: 0;
  12.   z-index: 1;
  13. }
  14. </style>
  15.  
  16.  
  17. <style>
  18. html {
  19.   font-size: 62.5%;
  20. }
  21.  
  22.  
  23. body {
  24.   margin: 0;
  25.   color: #35495e;
  26. }
  27.  
  28.  
  29. {
  30.   margin: 0;
  31. }
  32.  
  33.  
  34. ul {
  35.   padding: 0;
  36.   margin: 0;
  37. }
  38. </style>

前回同様、ページ全体に適用させるstyleも定義します。

これで↓のような画面が表示されるはずです。

検索画面

テキストエリアに何か入力してEnterキーを押すか、Searchボタンをクリックしてください。

検索結果画面

このように検索結果が表示されれば成功です!

まとめ

前回と比べて少し複雑だったと思いますが、素のJavaScriptで作るより断然簡単だったのではないでしょうか?
次回は Vue Router を使ったルーティング機能をご紹介したいと思います!

Recent Entries
MD EVENT REPORT
What's Hot?