サルでもわかるWEBプログラミング

フリーソフトのみでホームページ作成

ユーザ用ツール

サイト用ツール


16.vue.jsのvuexでパスワード制限:index.html


文書の過去の版を表示しています。


16.vue.jsのvuexでパスワード制限

状態管理システムvuexが難しすぎて理解できないので、わかりやすいサイトをひたすら写経して理解しようと努力していくシリーズの3回目。

今回は、Vue.js上でVuexを用いて、FirebaseのGoogle認証にtryします。

認証システムを実装するのは本当に面倒です。これでも、Firebaseを利用しているので、かなり簡単になっている方であることは理解しているつもりなのですが、、、

初めてのVuex目次

すること

  1. Vuexを用いて、FirebaseへのGoogleログイン認証機能を実装する
  2. ページは、HomeとAboutの2ページ、vue-routerで振り分ける
  3. Googleログインした状態では、Aboutページに、ログインした人の名前を表示する
  4. ログインする前は、ログインボタン、ログインした状態では、ログアウトボタンを、ナビゲーションバー(ヘッダー)に表示する

今回は、https://qiita.com/ErgoFriend/items/bd1bb445e185bf45e272を写経させていてだきました。

ソースコード
https://github.com/adash333/Vue_Vuex_Firebase_Auth
https://codesandbox.io/s/54n9575y44

Demo
https://54n9575y44.codesandbox.io/



開発環境

作成中

Chrome
Codesandbox

Vue 2.5.2
vuetify 1.4.3
Vuex 3.1.0
vue-router 3.0.2

@firebase/app 0.3.8
@firebase/auth 0.9.2
babel-polyfill 6.26.0

CodeSandboxで新規Vue.jsアプリを作成

最初に、CodeSandbox上で、新規Vue.jsアプリを作成し、CSSフレームワークVuetifyが利用できるように設定します。

  1. https://codesandbox.io/へ行き、画面右上の、『Create Sandbox』をクリック
  2. Vue をクリック
  3. Add Dependencyから、Vuetifyをインストール
  4. index.htmlの編集
  5. src/main.jsの編集

index.htmlと、src/main.jsは、以下をコピペします。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>CodeSandbox Vue</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from "vue";
import App from "./App";
import Vuetify from "vuetify";
import "vuetify/dist/vuetify.css";
Vue.use(Vuetify);
Vue.config.productionTip = false;
/* eslint-disable no-new */
new Vue({
el: "#app",
components: { App },
template: "<App/>"
});
view raw src_main.js hosted with ❤ by GitHub

以上で、Vue.jsで、Vuetifyを利用する準備ができました。

Vuetifyのテンプレートを適用

src/App.vueに、以下のコードをコピペします。

<template>
<div id="app">
<v-app id="inspire">
<v-toolbar color="indigo" dark fixed app>
<v-toolbar-title>Application</v-toolbar-title>
</v-toolbar>
<v-content>
<v-container fluid fill-height>
<v-flex xs12 sm6 offset-sm3>
<v-card>
<v-img
src="https://cdn.vuetifyjs.com/images/cards/desert.jpg"
aspect-ratio="2.75"
></v-img>
<v-card-title primary-title>
<div>
<h3 class="headline mb-0">Kangaroo Valley Safari</h3>
<div>
Located two hours south of Sydney in the <br />Southern
Highlands of New South Wales, ...
</div>
</div>
</v-card-title>
<v-card-actions>
<v-btn flat color="orange">Share</v-btn>
<v-btn flat color="orange">Explore</v-btn>
</v-card-actions>
</v-card>
</v-flex>
</v-container>
</v-content>
</v-app>
</div>
</template>
<script>
export default {
data() {
return {}
}
};
</script>

これで、App.vueの土台が出来上がりました。

Vue.jsにVuexをインストール

Vuexを利用するための準備を行います。

  1. Add Dependencyから、Vuexをインストール
  2. Add Dependencyから、babel-polyfillをインストール
  3. src/main.jsの編集
  4. src/store.jsの新規作成

src/main.jsは、以下の2行を追加します。(追加する位置には注意する必要があります。)

import store from './store'

store,

(変更前)

(変更後)

この時点では、store.jsを作成していないので、エラーが出ます。

  • src/store.jsのテンプレートの作成

src/store.jsを新規作成し、以下をコピペします。

import Vue from "vue";
import Vuex from "vuex";

Vue.use(Vuex);

const store = new Vuex.Store({
  state: {},

  getters: {},

  mutations: {},

  actions: {}
});

export default store;

これでも、まだエラーが出ています。。。

右側の画面の更新画面を押すと、以下のように、vuexが動く準備ができたようです。

Vue-Routerのインストール

Vue-Routerを利用するための準備を行います。

  1. Add Dependencyからvue-routerをインストール
  2. src/router.jsの新規作成
  3. src/main.jsでrouter.jsを設定

src/router.js

import Vue from 'vue'
import VueRouter from 'vue-router'

//プラグインとして登録
Vue.use(VueRouter)

src/main.jsに追加するコード

import router from './router'

// new Vueの中に記載
router,

  • Home.vueとAbout.vueが無いとエラーが出てしまうので、src/components/Home.vueとAbout.vueを新規作成し、以下のテンプレートだけ記載しておく。
<template>
</template>

<script>
export default {
  name: "Home",
  components: {}
};
</script>


Vue Routerの組み込みコンポーネント

Vue Routerをインストールすると、次のコンポーネントが使用可能になります。
(参考:基礎から学ぶ Vue.js

カスタムタグ 役割
<router-view> ルートとマッチしたコンポーネントを描画
<router-link> ルートのリンクを作成

Home.vueとAbout.vueをrouter.jsに設定する

先ほど作成した2つのコンポーネント
src/components/Home.vueと,
src/components/About.vue
をrouter.jsに、設定します。

import Vue from "vue";
import VueRouter from "vue-router";
// ルート用のコンポーネントの読み込み
import Home from "@/components/Home.vue";
import About from "@/components/About.vue";
//プラグインとして登録
Vue.use(VueRouter);
// VueRouterインスタンスを生成する
const router = new VueRouter({
mode: 'history',
// URLのパスと紐づくコンポーネントをマッピング
routes: [{ path: "/", component: Home }, { path: "/about", component: About }]
});
// 生成したVueRouterインスタンスをエクスポート
export default router;

新規Firebaseアプリの作成とsrc/firebase.jsの新規作成

準備ばかりでうんざりですが、やります。

  1. https://console.firebase.google.com にGoogleアカウントでログイン
  2. 新規プロジェクト作成
  3. Project Overview > 「開始するにはアプリを追加してください」のすぐ上の、「</>」をクリック
  4. 「ウェブアプリに Firebase を追加」画面が出てくるので、中身をメモ帳などにコピーしておく(後で、src/firebse.jsにペーストします)
  5. Authentication > ログイン方法 > Google をクリックして、Google認証を「有効にする」をONにして保存
  6. Authentication > ログイン方法 の画面の下の方へ行き、承認済みドメイン > ドメインの追加 で、codesandbox.io を追加する。(本当は、サブドメインまで記入することが望ましい。)

参考:https://liginc.co.jp/378463

  • Add Dependencyから、@firebase/app, @firebase/authをインストール


  • src/firebase.jsを新規作成
import firebase from "@firebase/app";
import "@firebase/auth";
import store from "./store";

// こちらは、ご自身のFirebaseアプリの「ウェブアプリに Firebase を追加」の中の設定をコピーしてください
const config = {
  apiKey: "xxxxxxxxxxx",
  authDomain: "xxxxxxxxxxx.firebaseapp.com",
  databaseURL: "https://xxxxxxxxxxx.firebaseio.com",
  projectId: "xxxxxxxxxxx",
  storageBucket: "xxxxxxxxxxx.appspot.com",
  messagingSenderId: "xxxxxxxxxxx"
};

export default {
  init() {},
  login() {},
  logout() {},
  onAuth() {}
};

  • src/main.jsにfirebaseを設定
import Firebase from "./firebase";
Firebase.init();

firebase.jsに、Google認証のコードを記載

src/firebase.jsに、Google認証を実装します。引き続き、Vue vuexでfirebaseのログイン保持のコードをコピペします。

user = user ? user : {};

のところは、『三項演算子』を利用しているようです。

src/store.jsにログイン情報、ログイン状態の2つを保持する場所を作成する

今回のコードの肝です。https://qiita.com/ErgoFriend/items/bd1bb445e185bf45e272#vuex-storejsをコピペします。写経してから中身を考えます!(爆)

(変更前)

(変更後)

ナビゲーションバーのNavigation.vueと、その中に設置する、ログインボタン(未認証時)+ログアウトボタン(認証時)をまとめたAuthenticatoin.vueを新規作成し、とりあえず、テンプレートで埋めておきます。

src/components/Navigation.vue

<template>
<div>
<v-navigation-drawer v-model="drawer" fixed app>
<v-list dense>
<v-list-tile :to="{ path: '/' }">
<v-list-tile-action> <v-icon>home</v-icon> </v-list-tile-action>
<v-list-tile-content>
<v-list-tile-title>Home</v-list-tile-title>
</v-list-tile-content>
</v-list-tile>
<v-list-tile :to="{ path: '/About' }">
<v-list-tile-action>
<v-icon>description</v-icon>
</v-list-tile-action>
<v-list-tile-content>
<v-list-tile-title>About</v-list-tile-title>
</v-list-tile-content>
</v-list-tile>
<v-list-tile> <Authentication /> </v-list-tile>
</v-list>
</v-navigation-drawer>
<v-toolbar color="indigo" dark fixed app>
<v-toolbar-side-icon
@click.stop="drawer = !drawer;"
></v-toolbar-side-icon>
<v-toolbar-title>VuexFireAuth</v-toolbar-title>
</v-toolbar>
</div>
</template>
<script>
import Authentication from "@/components/Authentication.vue";
export default {
name: "Navigation",
components: {
Authentication
},
data: () => ({
drawer: null
}),
props: {
source: String
}
};
</script>
view raw Navigation.vue hosted with ❤ by GitHub

src/components/Authentication.vue

<template>
<div>
<span class="google-button__icon">
<svg viewBox="0 0 366 372" xmlns="http://www.w3.org/2000/svg">
<path
d="M125.9 10.2c40.2-13.9 85.3-13.6 125.3 1.1 22.2 8.2 42.5 21 59.9 37.1-5.8 6.3-12.1 12.2-18.1 18.3l-34.2 34.2c-11.3-10.8-25.1-19-40.1-23.6-17.6-5.3-36.6-6.1-54.6-2.2-21 4.5-40.5 15.5-55.6 30.9-12.2 12.3-21.4 27.5-27 43.9-20.3-15.8-40.6-31.5-61-47.3 21.5-43 60.1-76.9 105.4-92.4z"
id="Shape"
fill="#EA4335"
/>
<path
d="M20.6 102.4c20.3 15.8 40.6 31.5 61 47.3-8 23.3-8 49.2 0 72.4-20.3 15.8-40.6 31.6-60.9 47.3C1.9 232.7-3.8 189.6 4.4 149.2c3.3-16.2 8.7-32 16.2-46.8z"
id="Shape"
fill="#FBBC05"
/>
<path
d="M361.7 151.1c5.8 32.7 4.5 66.8-4.7 98.8-8.5 29.3-24.6 56.5-47.1 77.2l-59.1-45.9c19.5-13.1 33.3-34.3 37.2-57.5H186.6c.1-24.2.1-48.4.1-72.6h175z"
id="Shape"
fill="#4285F4"
/>
<path
d="M81.4 222.2c7.8 22.9 22.8 43.2 42.6 57.1 12.4 8.7 26.6 14.9 41.4 17.9 14.6 3 29.7 2.6 44.4.1 14.6-2.6 28.7-7.9 41-16.2l59.1 45.9c-21.3 19.7-48 33.1-76.2 39.6-31.2 7.1-64.2 7.3-95.2-1-24.6-6.5-47.7-18.2-67.6-34.1-20.9-16.6-38.3-38-50.4-62 20.3-15.7 40.6-31.5 60.9-47.3z"
fill="#34A853"
/>
</svg>
</span>
Sign in
</div>
</template>
<script>
export default {
name: "Authentication",
components: {}
};
</script>
<style scoped>
.authentication {
display: inline-block;
}
.google-button {
height: 40px;
border-width: 0;
background: white;
color: #737373;
border-radius: 5px;
white-space: nowrap;
box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.05);
transition-property: background-color, box-shadow;
transition-duration: 150ms;
transition-timing-function: ease-in-out;
padding: 0;
}
.google-button:focus,
.google-button:hover {
box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.1);
}
.google-button:active {
background-color: #e5e5e5;
box-shadow: none;
transition-duration: 10ms;
}
.google-button__icon {
display: inline-block;
vertical-align: middle;
margin: 8px 0 8px 8px;
width: 18px;
height: 18px;
box-sizing: border-box;
}
.google-button__icon--plus {
width: 27px;
}
.google-button__text {
display: inline-block;
vertical-align: middle;
padding: 0 24px;
font-size: 14px;
font-weight: bold;
font-family: "Roboto", arial, sans-serif;
}
</style>


ログイン機能は、Authentication.vueに実装予定ですが、この時点では、まだ見栄えのみです。また、個人的に、<style scoped></style>は極力書きたくないのですが、Googleのボタンだけは、https://qiita.com/ErgoFriend/items/bd1bb445e185bf45e272のコピペをさせていただくことにしました。

参考
https://codepen.io/atgarbett/pen/QOZoyg
Vuetify.js Responsive v-toolbar not triggering open/close event
https://stackoverflow.com/questions/47536881/vuetify-js-responsive-v-toolbar-not-triggering-open-close-event

router.jsを編集してコンポーネントにルートを定義する

src/components/Navigation.vueの<v-navigation-drawer></v-navigation-drawer>の中の、

<v-list-tile :to="{ path: '/' }">

<v-list-tile :to="{ path: '/About' }">

の部分のリンクを定義するために、src/router.jsを編集します。
また、このルーティングの定義により、<router-view/>と記載することにより、コンポーネントを表示することができるようになります。

src/router.js

import Vue from "vue";
import VueRouter from "vue-router";
// ルート用のコンポーネントを読み込む
import Home from "./components/Home.vue";
import Contact from "./components/About.vue";
//プラグインとして登録
Vue.use(VueRouter);
// VueRouterインスタンスを生成
const router = new VueRouter({
// URLのパスと紐づくコンポーネントをマッピング
routes: [
{ path: "/", component: Home },
{ path: "/About", component: About }
]
});
// 生成したVueRouterインスタンスをエクスポート
export default router;
// 参考:基礎から学ぶVue.js
// https://cr-vue.mio3io.com/

App.vueの中にNavigation.vueとHome.vue(/About.vue)を表示する

  1. Navigation.vueは、importしてから、<Navigation/>と記載することにより表示します。
  2. Home.vue(/About.vue)は、router.jsにルーティングを記載しているので、<router-view/>と記載することにより、コンポーネントを表示します。

src/App.vueの編集

// <template>の中に記載
<Navigation/>
<router-view/>

// <script>の中に記載
import Navigation from "@/components/Navigation.vue";

export default {
  components: {
    Navigation
  },
}

src/App.vue
(変更前)

(変更後)

Googleサインインのところが変ですが、今回はこのままで、、、

src/components/Authentication.vueにGoogleログインを実装

https://qiita.com/ErgoFriend/items/bd1bb445e185bf45e272#authenticationvueのコードをコピペします。

  1. createdでインスタンス作成後に認証状態の監視を開始します。
  2. computedでvuexのstatusにログインしているかどうかを保持し、v-ifで分岐できるようにしています。
  3. methods: { func() } : @clickに登録した関数(doLogin()関数と、doLogout()関数)を実行します。



残念ながら、ログインした後も、Sign in With Googleのボタンのままでした。。。
firebase.jsの写経をするときに、どこかでタイプミスしたことが原因であったらしく、https://qiita.com/ErgoFriend/items/bd1bb445e185bf45e272#firebase-firebasejsのコードをコピペしたら、動くようになりました。
(見栄えは変えないと、、、)

ログイン/ログアウトボタンの見た目の調整

かなり厳しい。。。名前を表示するのはあきらめようかと思います。

Vuetifyの<v-list-tile>の使い方がいまいちわからず、思った通りにならない。

とりあえず、<v-navigation-drawer>のところに名前を表示するのはあきらめて、Sign outボタンのみにしました。

ちなみに、<v-button>の中身のテキストがすべて大文字になってしまうため、<style>のところに、以下のように記載しています。

<style scoped>
* {
  text-transform: none !important;
}
</style>

参考:https://github.com/vuetifyjs/vuetify/issues/1443
[Help]How to make the global text not uppercase/capitalize #1443
Closed alterhu2020 opened this issue on 22 Aug 2017

App.vueの<content>の中身のcardを、Home.vueとAbout.vueにそれぞれ移動

src/App.vue
(変更前)

(変更後)

src/components/Home.vue
(変更前)

(変更後)

src/components/About.vue
(変更前)

(変更後)

Home.vueの編集

中身を変えます。Home.vueはログイン前後で変化なしにしようと思います。
(変更前)

(変更後)

途中ですが、ここまでのソースコード
vuex-firebase-auth.zip

About.vueの編集

ログインした状態で、ログインした人の名前を表示しようと思います。
https://qiita.com/ErgoFriend/items/bd1bb445e185bf45e272#aboutvueを参考に、変えてみます。

<template>
<v-content>
<v-container fluid>
<v-flex xs12 sm6 offset-sm3>
<v-card>
<v-img
src="https://cdn.vuetifyjs.com/images/cards/docks.jpg"
aspect-ratio="2.75"
></v-img>
<v-card-title primary-title>
<div>
<h3 class="headline mb-0">About Page</h3>
<div>
ログインすると、以下に名前とメールアドレスが表示されます。
</div>
</div>
</v-card-title>
<div v-if="user.displayName">
<v-list two-line>
<v-list-tile avatar>
<v-list-tile-avatar>
<img :src="user.photoURL" />
</v-list-tile-avatar>
<v-list-tile-content>
<v-list-tile-title
v-html="user.displayName"
></v-list-tile-title>
<v-list-tile-sub-title
v-html="user.email"
></v-list-tile-sub-title>
</v-list-tile-content>
</v-list-tile>
</v-list>
</div>
</v-card>
</v-flex>
</v-container>
</v-content>
</template>
<script>
export default {
name: "About",
computed: {
user() {
return this.$store.getters.user;
}
},
components: {}
};
</script>

(変更前)

(変更後)


今回はここまでとなります。

参考:https://vuetifyjs.com/ja/components/lists

ソースコード

Vuexとログイン機能に関するリンク

https://qiita.com/ErgoFriend/items/bd1bb445e185bf45e272
@ErgoFriend
2018年10月27日に更新
Vue vuexでfirebaseのログイン保持
→firebaseのGoogle認証を作成します。

https://mabui.org/firebase-authentication-vuex-mail-verification/
Firebase AuthenticationとVuexでメール認証を実装する
投稿日:2018年9月13日
→firebaseのメール認証を作成します。

https://www.hypertextcandy.com/vue-laravel-tutorial-authentication-part-3
2019.01.12
Vue + Vue Router + Vuex + Laravelで写真共有アプリを作ろう (6) 認証機能とVuex
Masahiro Harada
https://www.hypertextcandy.com/vue-laravel-tutorial-authentication-part-2/からの続きで、Laravel+Vue+Vuexでメーリアドレス認証をバックエンドも含めて作成します。

https://qiita.com/k-okina/items/512b9e502f8db49981f3
@k-okina
2018年12月01日に更新
2018年Vue.jsとVuexを使ってる人には必ず知っていてほしいドキュメントに書かれていないコンポーネントやストア、メンテナンスの際に役立つTips

https://qiita.com/zaru/items/bc90b418dd18a97d8da5
@zaru
2018年10月20日に投稿
Firebase Authentication + Vue.js を SSR/SPA 両方に対応する方法

https://tomokazu-kozuma.com/implement-login-function-with-firebase-authentication-using-vuejs-and-vuex/
2019.01.19
Vue.jsとVuexを使ってFirebase Authenticationでログイン機能を実装する

https://qiita.com/sin_tanaka/items/ea149a33bd9e4b388241
@sin_tanaka
2018年08月03日に更新
Vue.js #4 Advent Calendar 201725日目
Vue.js + Firebase を使って爆速でユーザ認証を実装する

リンク

目次:このサイトについて

前:

次:


16.vue.jsのvuexでパスワード制限/index.html.1549032335.txt.gz · 最終更新: 2019/02/01 by adash333

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki