|
- <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/wallet2.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" :credits="user.credits" v-else-if="active ===
- '#new-order'" id="main" @updateUser='updateUser'>
- </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() { */
-
- /* } */
- /* function getServices() { */
- /* 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 updateUser() {
- 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
- })
- }
-
- export default {
- components: {
- Sidebar, Settings, PastOrders, NewOrder
- },
- data() {
- return {active: window.location.hash, user: null,
- token: null, orders: null, loading: true}
- },
- methods: {updateUser},
- created() {
- 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; this.loading = false})
- }).then(
- 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; this.loading = false})
- }))
- }
- }
- </script>
|