mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-18 18:44:16 +00:00
Add some Vue related components. Prep for inclusion of passport and other tools.
This commit is contained in:
13639
package-lock.json
generated
Normal file
13639
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -7,15 +7,15 @@
|
|||||||
"watch-poll": "npm run watch -- --watch-poll",
|
"watch-poll": "npm run watch -- --watch-poll",
|
||||||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||||
"prod": "npm run production",
|
"prod": "npm run production",
|
||||||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"axios": "^0.16.2",
|
"axios": "^0.17",
|
||||||
"bootstrap-sass": "^3.3.7",
|
"bootstrap-sass": "^3.3.7",
|
||||||
"cross-env": "^5.0.1",
|
"cross-env": "^5.1",
|
||||||
"jquery": "^3.1.1",
|
"jquery": "^3.1.1",
|
||||||
"laravel-mix": "^1.0",
|
"laravel-mix": "^1.0",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"vue": "^2.1.10"
|
"vue": "^2.5.7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
4
public/mix-manifest.json
Normal file
4
public/mix-manifest.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"/js/app.js": "/js/app.js",
|
||||||
|
"/css/app.css": "/css/app.css"
|
||||||
|
}
|
22
resources/assets/js/app.js
vendored
Normal file
22
resources/assets/js/app.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
/**
|
||||||
|
* First we will load all of this project's JavaScript dependencies which
|
||||||
|
* includes Vue and other libraries. It is a great starting point when
|
||||||
|
* building robust, powerful web applications using Vue and Laravel.
|
||||||
|
*/
|
||||||
|
|
||||||
|
require('./bootstrap');
|
||||||
|
|
||||||
|
window.Vue = require('vue');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Next, we will create a fresh Vue application instance and attach it to
|
||||||
|
* the page. Then, you may begin adding components to this application
|
||||||
|
* or customize the JavaScript scaffolding to fit your unique needs.
|
||||||
|
*/
|
||||||
|
|
||||||
|
Vue.component('example-component', require('./components/ExampleComponent.vue'));
|
||||||
|
|
||||||
|
const app = new Vue({
|
||||||
|
el: '#app'
|
||||||
|
});
|
55
resources/assets/js/bootstrap.js
vendored
Normal file
55
resources/assets/js/bootstrap.js
vendored
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
window._ = require('lodash');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
|
||||||
|
* for JavaScript based Bootstrap features such as modals and tabs. This
|
||||||
|
* code may be modified to fit the specific needs of your application.
|
||||||
|
*/
|
||||||
|
|
||||||
|
try {
|
||||||
|
window.$ = window.jQuery = require('jquery');
|
||||||
|
|
||||||
|
require('bootstrap-sass');
|
||||||
|
} catch (e) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We'll load the axios HTTP library which allows us to easily issue requests
|
||||||
|
* to our Laravel back-end. This library automatically handles sending the
|
||||||
|
* CSRF token as a header based on the value of the "XSRF" token cookie.
|
||||||
|
*/
|
||||||
|
|
||||||
|
window.axios = require('axios');
|
||||||
|
|
||||||
|
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Next we will register the CSRF Token as a common header with Axios so that
|
||||||
|
* all outgoing HTTP requests automatically have it attached. This is just
|
||||||
|
* a simple convenience so we don't have to attach every token manually.
|
||||||
|
*/
|
||||||
|
|
||||||
|
let token = document.head.querySelector('meta[name="csrf-token"]');
|
||||||
|
|
||||||
|
if (token) {
|
||||||
|
window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content;
|
||||||
|
} else {
|
||||||
|
console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Echo exposes an expressive API for subscribing to channels and listening
|
||||||
|
* for events that are broadcast by Laravel. Echo and event broadcasting
|
||||||
|
* allows your team to easily build robust real-time web applications.
|
||||||
|
*/
|
||||||
|
//
|
||||||
|
// import Echo from 'laravel-echo'
|
||||||
|
//
|
||||||
|
// window.Pusher = require('pusher-js');
|
||||||
|
//
|
||||||
|
// window.Echo = new Echo({
|
||||||
|
// broadcaster: 'pusher',
|
||||||
|
// key: 'your-pusher-key',
|
||||||
|
// cluster: 'mt1',
|
||||||
|
// encrypted: true
|
||||||
|
// });
|
23
resources/assets/js/components/ExampleComponent.vue
Normal file
23
resources/assets/js/components/ExampleComponent.vue
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<template>
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-8 col-md-offset-2">
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">Example Component</div>
|
||||||
|
|
||||||
|
<div class="panel-body">
|
||||||
|
I'm an example component!
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
mounted() {
|
||||||
|
console.log('Component mounted.')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
111
resources/assets/js/components/passport/AuthorizedClients.vue
Normal file
111
resources/assets/js/components/passport/AuthorizedClients.vue
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
<style scoped>
|
||||||
|
.action-link {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.m-b-none {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div v-if="tokens.length > 0">
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">Authorized Applications</div>
|
||||||
|
|
||||||
|
<div class="panel-body">
|
||||||
|
<!-- Authorized Tokens -->
|
||||||
|
<table class="table table-borderless m-b-none">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Scopes</th>
|
||||||
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
<tbody>
|
||||||
|
<tr v-for="token in tokens">
|
||||||
|
<!-- Client Name -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
{{ token.client.name }}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<!-- Scopes -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<span v-if="token.scopes.length > 0">
|
||||||
|
{{ token.scopes.join(', ') }}
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<!-- Revoke Button -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a class="action-link text-danger" @click="revoke(token)">
|
||||||
|
Revoke
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
/*
|
||||||
|
* The component's data.
|
||||||
|
*/
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tokens: []
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prepare the component (Vue 1.x).
|
||||||
|
*/
|
||||||
|
ready() {
|
||||||
|
this.prepareComponent();
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prepare the component (Vue 2.x).
|
||||||
|
*/
|
||||||
|
mounted() {
|
||||||
|
this.prepareComponent();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
/**
|
||||||
|
* Prepare the component (Vue 2.x).
|
||||||
|
*/
|
||||||
|
prepareComponent() {
|
||||||
|
this.getTokens();
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all of the authorized tokens for the user.
|
||||||
|
*/
|
||||||
|
getTokens() {
|
||||||
|
axios.get('/oauth/tokens')
|
||||||
|
.then(response => {
|
||||||
|
this.tokens = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Revoke the given token.
|
||||||
|
*/
|
||||||
|
revoke(token) {
|
||||||
|
axios.delete('/oauth/tokens/' + token.id)
|
||||||
|
.then(response => {
|
||||||
|
this.getTokens();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
354
resources/assets/js/components/passport/Clients.vue
Normal file
354
resources/assets/js/components/passport/Clients.vue
Normal file
@@ -0,0 +1,354 @@
|
|||||||
|
<style scoped>
|
||||||
|
.action-link {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.m-b-none {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<div style="display: flex; justify-content: space-between; align-items: center;">
|
||||||
|
<span>
|
||||||
|
OAuth Clients
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<a class="action-link" @click="showCreateClientForm">
|
||||||
|
Create New Client
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="panel-body">
|
||||||
|
<!-- Current Clients -->
|
||||||
|
<p class="m-b-none" v-if="clients.length === 0">
|
||||||
|
You have not created any OAuth clients.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<table class="table table-borderless m-b-none" v-if="clients.length > 0">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Client ID</th>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Secret</th>
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
<tbody>
|
||||||
|
<tr v-for="client in clients">
|
||||||
|
<!-- ID -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
{{ client.id }}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<!-- Name -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
{{ client.name }}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<!-- Secret -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<code>{{ client.secret }}</code>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<!-- Edit Button -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a class="action-link" @click="edit(client)">
|
||||||
|
Edit
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<!-- Delete Button -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a class="action-link text-danger" @click="destroy(client)">
|
||||||
|
Delete
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Create Client Modal -->
|
||||||
|
<div class="modal fade" id="modal-create-client" tabindex="-1" role="dialog">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
|
|
||||||
|
<h4 class="modal-title">
|
||||||
|
Create Client
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-body">
|
||||||
|
<!-- Form Errors -->
|
||||||
|
<div class="alert alert-danger" v-if="createForm.errors.length > 0">
|
||||||
|
<p><strong>Whoops!</strong> Something went wrong!</p>
|
||||||
|
<br>
|
||||||
|
<ul>
|
||||||
|
<li v-for="error in createForm.errors">
|
||||||
|
{{ error }}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Create Client Form -->
|
||||||
|
<form class="form-horizontal" role="form">
|
||||||
|
<!-- Name -->
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-3 control-label">Name</label>
|
||||||
|
|
||||||
|
<div class="col-md-7">
|
||||||
|
<input id="create-client-name" type="text" class="form-control"
|
||||||
|
@keyup.enter="store" v-model="createForm.name">
|
||||||
|
|
||||||
|
<span class="help-block">
|
||||||
|
Something your users will recognize and trust.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Redirect URL -->
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-3 control-label">Redirect URL</label>
|
||||||
|
|
||||||
|
<div class="col-md-7">
|
||||||
|
<input type="text" class="form-control" name="redirect"
|
||||||
|
@keyup.enter="store" v-model="createForm.redirect">
|
||||||
|
|
||||||
|
<span class="help-block">
|
||||||
|
Your application's authorization callback URL.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Modal Actions -->
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||||||
|
|
||||||
|
<button type="button" class="btn btn-primary" @click="store">
|
||||||
|
Create
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Edit Client Modal -->
|
||||||
|
<div class="modal fade" id="modal-edit-client" tabindex="-1" role="dialog">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
|
|
||||||
|
<h4 class="modal-title">
|
||||||
|
Edit Client
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-body">
|
||||||
|
<!-- Form Errors -->
|
||||||
|
<div class="alert alert-danger" v-if="editForm.errors.length > 0">
|
||||||
|
<p><strong>Whoops!</strong> Something went wrong!</p>
|
||||||
|
<br>
|
||||||
|
<ul>
|
||||||
|
<li v-for="error in editForm.errors">
|
||||||
|
{{ error }}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Edit Client Form -->
|
||||||
|
<form class="form-horizontal" role="form">
|
||||||
|
<!-- Name -->
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-3 control-label">Name</label>
|
||||||
|
|
||||||
|
<div class="col-md-7">
|
||||||
|
<input id="edit-client-name" type="text" class="form-control"
|
||||||
|
@keyup.enter="update" v-model="editForm.name">
|
||||||
|
|
||||||
|
<span class="help-block">
|
||||||
|
Something your users will recognize and trust.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Redirect URL -->
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-3 control-label">Redirect URL</label>
|
||||||
|
|
||||||
|
<div class="col-md-7">
|
||||||
|
<input type="text" class="form-control" name="redirect"
|
||||||
|
@keyup.enter="update" v-model="editForm.redirect">
|
||||||
|
|
||||||
|
<span class="help-block">
|
||||||
|
Your application's authorization callback URL.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Modal Actions -->
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||||||
|
|
||||||
|
<button type="button" class="btn btn-primary" @click="update">
|
||||||
|
Save Changes
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
/*
|
||||||
|
* The component's data.
|
||||||
|
*/
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
clients: [],
|
||||||
|
|
||||||
|
createForm: {
|
||||||
|
errors: [],
|
||||||
|
name: '',
|
||||||
|
redirect: ''
|
||||||
|
},
|
||||||
|
|
||||||
|
editForm: {
|
||||||
|
errors: [],
|
||||||
|
name: '',
|
||||||
|
redirect: ''
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prepare the component (Vue 1.x).
|
||||||
|
*/
|
||||||
|
ready() {
|
||||||
|
this.prepareComponent();
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prepare the component (Vue 2.x).
|
||||||
|
*/
|
||||||
|
mounted() {
|
||||||
|
this.prepareComponent();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
/**
|
||||||
|
* Prepare the component.
|
||||||
|
*/
|
||||||
|
prepareComponent() {
|
||||||
|
this.getClients();
|
||||||
|
|
||||||
|
$('#modal-create-client').on('shown.bs.modal', () => {
|
||||||
|
$('#create-client-name').focus();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#modal-edit-client').on('shown.bs.modal', () => {
|
||||||
|
$('#edit-client-name').focus();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all of the OAuth clients for the user.
|
||||||
|
*/
|
||||||
|
getClients() {
|
||||||
|
axios.get('/oauth/clients')
|
||||||
|
.then(response => {
|
||||||
|
this.clients = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating new clients.
|
||||||
|
*/
|
||||||
|
showCreateClientForm() {
|
||||||
|
$('#modal-create-client').modal('show');
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new OAuth client for the user.
|
||||||
|
*/
|
||||||
|
store() {
|
||||||
|
this.persistClient(
|
||||||
|
'post', '/oauth/clients',
|
||||||
|
this.createForm, '#modal-create-client'
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Edit the given client.
|
||||||
|
*/
|
||||||
|
edit(client) {
|
||||||
|
this.editForm.id = client.id;
|
||||||
|
this.editForm.name = client.name;
|
||||||
|
this.editForm.redirect = client.redirect;
|
||||||
|
|
||||||
|
$('#modal-edit-client').modal('show');
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the client being edited.
|
||||||
|
*/
|
||||||
|
update() {
|
||||||
|
this.persistClient(
|
||||||
|
'put', '/oauth/clients/' + this.editForm.id,
|
||||||
|
this.editForm, '#modal-edit-client'
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Persist the client to storage using the given form.
|
||||||
|
*/
|
||||||
|
persistClient(method, uri, form, modal) {
|
||||||
|
form.errors = [];
|
||||||
|
|
||||||
|
axios[method](uri, form)
|
||||||
|
.then(response => {
|
||||||
|
this.getClients();
|
||||||
|
|
||||||
|
form.name = '';
|
||||||
|
form.redirect = '';
|
||||||
|
form.errors = [];
|
||||||
|
|
||||||
|
$(modal).modal('hide');
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
if (typeof error.response.data === 'object') {
|
||||||
|
form.errors = _.flatten(_.toArray(error.response.data));
|
||||||
|
} else {
|
||||||
|
form.errors = ['Something went wrong. Please try again.'];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroy the given client.
|
||||||
|
*/
|
||||||
|
destroy(client) {
|
||||||
|
axios.delete('/oauth/clients/' + client.id)
|
||||||
|
.then(response => {
|
||||||
|
this.getClients();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
302
resources/assets/js/components/passport/PersonalAccessTokens.vue
Normal file
302
resources/assets/js/components/passport/PersonalAccessTokens.vue
Normal file
@@ -0,0 +1,302 @@
|
|||||||
|
<style scoped>
|
||||||
|
.action-link {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.m-b-none {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<div style="display: flex; justify-content: space-between; align-items: center;">
|
||||||
|
<span>
|
||||||
|
Personal Access Tokens
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<a class="action-link" @click="showCreateTokenForm">
|
||||||
|
Create New Token
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="panel-body">
|
||||||
|
<!-- No Tokens Notice -->
|
||||||
|
<p class="m-b-none" v-if="tokens.length === 0">
|
||||||
|
You have not created any personal access tokens.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<!-- Personal Access Tokens -->
|
||||||
|
<table class="table table-borderless m-b-none" v-if="tokens.length > 0">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
<tbody>
|
||||||
|
<tr v-for="token in tokens">
|
||||||
|
<!-- Client Name -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
{{ token.name }}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<!-- Delete Button -->
|
||||||
|
<td style="vertical-align: middle;">
|
||||||
|
<a class="action-link text-danger" @click="revoke(token)">
|
||||||
|
Delete
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Create Token Modal -->
|
||||||
|
<div class="modal fade" id="modal-create-token" tabindex="-1" role="dialog">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
|
|
||||||
|
<h4 class="modal-title">
|
||||||
|
Create Token
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-body">
|
||||||
|
<!-- Form Errors -->
|
||||||
|
<div class="alert alert-danger" v-if="form.errors.length > 0">
|
||||||
|
<p><strong>Whoops!</strong> Something went wrong!</p>
|
||||||
|
<br>
|
||||||
|
<ul>
|
||||||
|
<li v-for="error in form.errors">
|
||||||
|
{{ error }}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Create Token Form -->
|
||||||
|
<form class="form-horizontal" role="form" @submit.prevent="store">
|
||||||
|
<!-- Name -->
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-md-4 control-label">Name</label>
|
||||||
|
|
||||||
|
<div class="col-md-6">
|
||||||
|
<input id="create-token-name" type="text" class="form-control" name="name" v-model="form.name">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Scopes -->
|
||||||
|
<div class="form-group" v-if="scopes.length > 0">
|
||||||
|
<label class="col-md-4 control-label">Scopes</label>
|
||||||
|
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div v-for="scope in scopes">
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox"
|
||||||
|
@click="toggleScope(scope.id)"
|
||||||
|
:checked="scopeIsAssigned(scope.id)">
|
||||||
|
|
||||||
|
{{ scope.id }}
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Modal Actions -->
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||||||
|
|
||||||
|
<button type="button" class="btn btn-primary" @click="store">
|
||||||
|
Create
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Access Token Modal -->
|
||||||
|
<div class="modal fade" id="modal-access-token" tabindex="-1" role="dialog">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
|
|
||||||
|
<h4 class="modal-title">
|
||||||
|
Personal Access Token
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-body">
|
||||||
|
<p>
|
||||||
|
Here is your new personal access token. This is the only time it will be shown so don't lose it!
|
||||||
|
You may now use this token to make API requests.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<pre><code>{{ accessToken }}</code></pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Modal Actions -->
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
/*
|
||||||
|
* The component's data.
|
||||||
|
*/
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
accessToken: null,
|
||||||
|
|
||||||
|
tokens: [],
|
||||||
|
scopes: [],
|
||||||
|
|
||||||
|
form: {
|
||||||
|
name: '',
|
||||||
|
scopes: [],
|
||||||
|
errors: []
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prepare the component (Vue 1.x).
|
||||||
|
*/
|
||||||
|
ready() {
|
||||||
|
this.prepareComponent();
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prepare the component (Vue 2.x).
|
||||||
|
*/
|
||||||
|
mounted() {
|
||||||
|
this.prepareComponent();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
/**
|
||||||
|
* Prepare the component.
|
||||||
|
*/
|
||||||
|
prepareComponent() {
|
||||||
|
this.getTokens();
|
||||||
|
this.getScopes();
|
||||||
|
|
||||||
|
$('#modal-create-token').on('shown.bs.modal', () => {
|
||||||
|
$('#create-token-name').focus();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all of the personal access tokens for the user.
|
||||||
|
*/
|
||||||
|
getTokens() {
|
||||||
|
axios.get('/oauth/personal-access-tokens')
|
||||||
|
.then(response => {
|
||||||
|
this.tokens = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all of the available scopes.
|
||||||
|
*/
|
||||||
|
getScopes() {
|
||||||
|
axios.get('/oauth/scopes')
|
||||||
|
.then(response => {
|
||||||
|
this.scopes = response.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the form for creating new tokens.
|
||||||
|
*/
|
||||||
|
showCreateTokenForm() {
|
||||||
|
$('#modal-create-token').modal('show');
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new personal access token.
|
||||||
|
*/
|
||||||
|
store() {
|
||||||
|
this.accessToken = null;
|
||||||
|
|
||||||
|
this.form.errors = [];
|
||||||
|
|
||||||
|
axios.post('/oauth/personal-access-tokens', this.form)
|
||||||
|
.then(response => {
|
||||||
|
this.form.name = '';
|
||||||
|
this.form.scopes = [];
|
||||||
|
this.form.errors = [];
|
||||||
|
|
||||||
|
this.tokens.push(response.data.token);
|
||||||
|
|
||||||
|
this.showAccessToken(response.data.accessToken);
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
if (typeof error.response.data === 'object') {
|
||||||
|
this.form.errors = _.flatten(_.toArray(error.response.data));
|
||||||
|
} else {
|
||||||
|
this.form.errors = ['Something went wrong. Please try again.'];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggle the given scope in the list of assigned scopes.
|
||||||
|
*/
|
||||||
|
toggleScope(scope) {
|
||||||
|
if (this.scopeIsAssigned(scope)) {
|
||||||
|
this.form.scopes = _.reject(this.form.scopes, s => s == scope);
|
||||||
|
} else {
|
||||||
|
this.form.scopes.push(scope);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if the given scope has been assigned to the token.
|
||||||
|
*/
|
||||||
|
scopeIsAssigned(scope) {
|
||||||
|
return _.indexOf(this.form.scopes, scope) >= 0;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the given access token to the user.
|
||||||
|
*/
|
||||||
|
showAccessToken(accessToken) {
|
||||||
|
$('#modal-create-token').modal('hide');
|
||||||
|
|
||||||
|
this.accessToken = accessToken;
|
||||||
|
|
||||||
|
$('#modal-access-token').modal('show');
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Revoke the given token.
|
||||||
|
*/
|
||||||
|
revoke(token) {
|
||||||
|
axios.delete('/oauth/personal-access-tokens/' + token.id)
|
||||||
|
.then(response => {
|
||||||
|
this.getTokens();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
38
resources/assets/sass/_variables.scss
vendored
Normal file
38
resources/assets/sass/_variables.scss
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
|
||||||
|
// Body
|
||||||
|
$body-bg: #f5f8fa;
|
||||||
|
|
||||||
|
// Borders
|
||||||
|
$laravel-border-color: darken($body-bg, 10%);
|
||||||
|
$list-group-border: $laravel-border-color;
|
||||||
|
$navbar-default-border: $laravel-border-color;
|
||||||
|
$panel-default-border: $laravel-border-color;
|
||||||
|
$panel-inner-border: $laravel-border-color;
|
||||||
|
|
||||||
|
// Brands
|
||||||
|
$brand-primary: #3097D1;
|
||||||
|
$brand-info: #8eb4cb;
|
||||||
|
$brand-success: #2ab27b;
|
||||||
|
$brand-warning: #cbb956;
|
||||||
|
$brand-danger: #bf5329;
|
||||||
|
|
||||||
|
// Typography
|
||||||
|
$icon-font-path: "~bootstrap-sass/assets/fonts/bootstrap/";
|
||||||
|
$font-family-sans-serif: "Raleway", sans-serif;
|
||||||
|
$font-size-base: 14px;
|
||||||
|
$line-height-base: 1.6;
|
||||||
|
$text-color: #636b6f;
|
||||||
|
|
||||||
|
// Navbar
|
||||||
|
$navbar-default-bg: #fff;
|
||||||
|
|
||||||
|
// Buttons
|
||||||
|
$btn-default-color: $text-color;
|
||||||
|
|
||||||
|
// Inputs
|
||||||
|
$input-border: lighten($text-color, 40%);
|
||||||
|
$input-border-focus: lighten($brand-primary, 25%);
|
||||||
|
$input-color-placeholder: lighten($text-color, 30%);
|
||||||
|
|
||||||
|
// Panels
|
||||||
|
$panel-default-heading-bg: #fff;
|
9
resources/assets/sass/app.scss
vendored
Normal file
9
resources/assets/sass/app.scss
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
// Fonts
|
||||||
|
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
|
||||||
|
|
||||||
|
// Variables
|
||||||
|
@import "variables";
|
||||||
|
|
||||||
|
// Bootstrap
|
||||||
|
@import "~bootstrap-sass/assets/stylesheets/bootstrap";
|
Reference in New Issue
Block a user