|
- <template>
- <template v-if="!loading">
- <sidebar :active="active"></sidebar>
- <transition name="fade" mode="out-in">
- <div v-if="active === ''" id="main">
- <section class="welcome-pane"><h3>Welcome, {{user.name}}!</h3></section>
- <section class="credits-pane"><img src="../../images/coin-stack.svg" alt="wallet" class="icon"/><p>Credits: {{user.credits}}</p></section>
- <section class="alerts-pane"><h4>News and Announcements</h4>
- <p>We've just launched. Thanks for joining us.</p>
- </section>
- <section class="recent-pane"><h4>Recent Activity</h4>
- <table>
- <thead><th>Date</th><th>Name</th><th>Status</th> <th>Quantity</th></thead>
- <tbody>
- <tr v-bind:key='order.id' v-for='order in orders.slice(0, 10)'>
- <template v-if="order.status != 'pending'">
- <td>{{order.updated_at}}</td>
- <td>{{order.service.name}}</td>
- <td :class="order.status"
- class="status"><span>{{order.status.charAt(0).toUpperCase() +
- order.status.slice(1)}}</span></td>
- <td>{{order.quantity}}</td>
- </template>
- </tr>
- </tbody>
- </table>
- </section>
- </div>
- <PastOrders :orders="orders" v-else-if="active === '#orders'" id="main">
- </PastOrders>
- <NewOrder :token="token" :active="active" :credits="user.credits" v-else-if="active ===
- '#new-order' || active === '#credits'" id="main" @update-user='getUser' @update-orders='getOrders'>
- </NewOrder>
- <div id="main" v-else-if="active === '#exit'">
- <section class="logout-pane">
- <h3>Are you sure you want to logout?</h3>
- <a href="/logout">Logout</a>
- </section>
- </div>
- <settings :token="token" :user="user" class="settings-page" id="main" v-else-if="active === '#settings'"></settings>
- </transition>
- </template>
- </template>
-
- <script>
- import Sidebar from './sidebar.vue'
- import Settings from './settings.vue'
- import PastOrders from './orders.vue'
- import NewOrder from './services.vue'
-
- function getServices() {
- return fetch("/panel/services", {
- method: 'GET',
- headers: {'Content-Type': 'application/json',
- 'Accept': 'application/json',
- 'X-XSRF-TOKEN': this.token}
- }).then(response => {
- response.json().then(data => {this.services = data})
- })
- }
-
- function getUser() {
- return fetch("/panel/user", {
- method: 'GET',
- headers: {'Content-Type': 'application/json',
- 'Accept': 'application/json',
- 'X-XSRF-TOKEN': this.token},
- }).then(response => {
- return response.json()
- }).then(data => {
- this.user = data
- })
- }
-
- function getOrders() {
- return fetch("/panel/orders", {
- method: 'GET',
- headers: {'Content-Type': 'application/json',
- 'Accept': 'application/json',
- 'X-XSRF-TOKEN': this.token},
- }).then(response => {
- return response.json()
- }).then(data => {
- this.orders = data
- })
- }
-
- export default {
- components: {
- Sidebar, Settings, PastOrders, NewOrder
- },
- data() {
- return {active: window.location.hash, user: null,
- token: null, orders: null, loading: true,}
- },
- methods: {getUser, getServices, getOrders},
- created() {
- let loaders = []
- loaders.push(this.getUser())
- loaders.push(this.getServices())
- loaders.push(this.getOrders())
- Promise.all(loaders).then(() => {
- this.loading = false
- })
- }
- }
- </script>
|