Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<template>
<section class="section">
<div class="container has-text-centered">
<div class="column is-4 is-offset-4">
<a href="javascript:void(0)" v-if="!isBusy" v-on:click="launchFbLogin">
<img src="../../assets/facebook-login.png" alt="Login with your facebook account">
</a>
<Spinner v-bind:show="isBusy" />
<div class="errors-container" v-if="failed">
<p>Oops! Your facebook login failed.</p>
<ul>
<li>Error: {{error}}</li>
<li>Description: {{errorDescription}}</li>
</ul>
</div>
</div>
</div>
</section>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import Spinner from '@/components/Spinner.vue'; // @ is an alias to /src
@Component({
components: {
Spinner,
},
})
export default class FacebookLogin extends Vue {
private authWindow: Window | null = null;
private failed: boolean = false;
private error: string = '';
private errorDescription: string = '';
private isBusy: boolean = false;
private errors: string = '';
private created() {
if (window.addEventListener) {
window.addEventListener('message', this.handleMessage.bind(this), false);
} else {
(window as any).attachEvent('onmessage', this.handleMessage.bind(this));
}
}
private launchFbLogin() {
this.authWindow = window.open('https://www.facebook.com/v2.11/dialog/oauth?&response_type=token&display=popup&client_id=1528751870549294&display=popup&redirect_uri=http://localhost:8088/facebook-auth.html&scope=email', '', 'width=600,height=400');
}
private handleMessage(event: Event) {
const message = event as MessageEvent;
// Only trust messages from the below origin.
if (message.origin !== 'http://localhost:8088') {
return;
}
if (this.authWindow) {
this.authWindow.close();
}
const result = JSON.parse(message.data);
if (!result.status) {
this.failed = true;
this.error = result.error;
this.errorDescription = result.errorDescription;
} else {
this.failed = false;
this.isBusy = true;
this.$store.dispatch('auth/facebookAuthRequest', result.accessToken).then((fbResult) => {
this.$router.push('/dashboard/home');
})
.catch((err) => {
this.errors = err;
this.failed = true;
})
.then(() => {
this.isBusy = false;
});
}
}
}
</script>