Stuff
This commit is contained in:
parent
8e871c372d
commit
1ff25f266c
13 changed files with 260 additions and 111 deletions
6
package-lock.json
generated
6
package-lock.json
generated
|
@ -960,6 +960,12 @@
|
||||||
"postcss": "^7.0.0"
|
"postcss": "^7.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"@mdi/font": {
|
||||||
|
"version": "4.5.95",
|
||||||
|
"resolved": "https://registry.npmjs.org/@mdi/font/-/font-4.5.95.tgz",
|
||||||
|
"integrity": "sha512-AjR2Zgu1feBXWlTfEjD6JQqLAMCqYn2Gzia5PWqFnysvz5F6JmPHtQFldIHXqyv2s/FwME7ZDBc5N86NEHbyvQ==",
|
||||||
|
"dev": true
|
||||||
|
},
|
||||||
"@mrmlnc/readdir-enhanced": {
|
"@mrmlnc/readdir-enhanced": {
|
||||||
"version": "2.2.1",
|
"version": "2.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
"vuex": "^3.1.1"
|
"vuex": "^3.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@mdi/font": "^4.5.95",
|
||||||
"@vue/cli-plugin-babel": "^3.10.0",
|
"@vue/cli-plugin-babel": "^3.10.0",
|
||||||
"@vue/cli-plugin-eslint": "^3.10.0",
|
"@vue/cli-plugin-eslint": "^3.10.0",
|
||||||
"@vue/cli-service": "^3.10.0",
|
"@vue/cli-service": "^3.10.0",
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<v-app style="background-color:#ffffff">
|
<v-app style="background-color:#ffffff">
|
||||||
<div v-if="$store.getters.getAllDataLoaded">
|
<div v-if="$store.getters.getAllDataLoaded">
|
||||||
<Menu></Menu>
|
<Menu></Menu>
|
||||||
<!--<MenuMobile></MenuMobile>!-->
|
<MenuMobile></MenuMobile>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,11 +29,6 @@
|
||||||
import AppService from '../services/Apps'
|
import AppService from '../services/Apps'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
apps: []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
props: [
|
props: [
|
||||||
'apps'
|
'apps'
|
||||||
],
|
],
|
||||||
|
@ -41,9 +36,6 @@
|
||||||
'getImageUrl' : function (id) {
|
'getImageUrl' : function (id) {
|
||||||
return AppService.getAppImage(id);
|
return AppService.getAppImage(id);
|
||||||
},
|
},
|
||||||
},
|
|
||||||
mounted: function() {
|
|
||||||
console.log("APPCARDSW");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -2,20 +2,23 @@
|
||||||
<v-app-bar
|
<v-app-bar
|
||||||
:color="bgcolor"
|
:color="bgcolor"
|
||||||
|
|
||||||
style="z-index: 10;"
|
style="z-index: 1;"
|
||||||
v-scroll="handleScroll"
|
v-scroll="handleScroll"
|
||||||
:flat="flat"
|
:flat="flat"
|
||||||
fixed
|
fixed
|
||||||
|
|
||||||
|
|
||||||
>
|
>
|
||||||
<!-- <v-app-bar-nav-icon></v-app-bar-nav-icon>!-->
|
<v-app-bar-nav-icon class="d-flex d-md-none" @click="toggleMenu()"></v-app-bar-nav-icon>
|
||||||
|
|
||||||
<v-toolbar-title><b>{{nameBig}}</b>{{nameSmall}}</v-toolbar-title>
|
<v-toolbar-title><b>{{nameBig}}</b>{{nameSmall}}</v-toolbar-title>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
<!-- User not Logged in !-->
|
<!-- User not Logged in !-->
|
||||||
<v-btn
|
<v-btn
|
||||||
|
class="d-none d-md-flex"
|
||||||
v-if="!this.$store.state.loggedIn"
|
v-if="!this.$store.state.loggedIn"
|
||||||
:to="{path: '/login'}"
|
:to="{path: '/login'}"
|
||||||
tile
|
tile
|
||||||
|
@ -24,6 +27,7 @@
|
||||||
>Login</v-btn>
|
>Login</v-btn>
|
||||||
|
|
||||||
<v-btn
|
<v-btn
|
||||||
|
class="d-none d-md-flex"
|
||||||
v-if="!this.$store.state.loggedIn && this.$store.getters.getSettingValue('invites')"
|
v-if="!this.$store.state.loggedIn && this.$store.getters.getSettingValue('invites')"
|
||||||
:to="{path: '/invited'}"
|
:to="{path: '/invited'}"
|
||||||
tile
|
tile
|
||||||
|
@ -31,6 +35,7 @@
|
||||||
height="100%"
|
height="100%"
|
||||||
>Invited</v-btn>
|
>Invited</v-btn>
|
||||||
<v-btn
|
<v-btn
|
||||||
|
class="d-none d-md-flex"
|
||||||
v-if="!this.$store.state.loggedIn && this.$store.getters.getSettingValue('registration_possible')"
|
v-if="!this.$store.state.loggedIn && this.$store.getters.getSettingValue('registration_possible')"
|
||||||
:to="{path: '/register'}"
|
:to="{path: '/register'}"
|
||||||
tile text height="100%"
|
tile text height="100%"
|
||||||
|
@ -38,6 +43,7 @@
|
||||||
|
|
||||||
<!-- User logged in !-->
|
<!-- User logged in !-->
|
||||||
<v-btn
|
<v-btn
|
||||||
|
class="d-none d-md-flex"
|
||||||
v-if="this.$store.state.loggedIn"
|
v-if="this.$store.state.loggedIn"
|
||||||
:to="{path: '/dashboard'}"
|
:to="{path: '/dashboard'}"
|
||||||
tile
|
tile
|
||||||
|
@ -45,6 +51,7 @@
|
||||||
height="100%"
|
height="100%"
|
||||||
>Dashboard</v-btn>
|
>Dashboard</v-btn>
|
||||||
<v-btn
|
<v-btn
|
||||||
|
class="d-none d-md-flex"
|
||||||
v-if="this.$store.state.loggedIn && this.$store.getters.getMe.developer"
|
v-if="this.$store.state.loggedIn && this.$store.getters.getMe.developer"
|
||||||
:to="{path: '/apps'}"
|
:to="{path: '/apps'}"
|
||||||
tile
|
tile
|
||||||
|
@ -52,18 +59,22 @@
|
||||||
height="100%"
|
height="100%"
|
||||||
>Developer</v-btn>
|
>Developer</v-btn>
|
||||||
<v-menu
|
<v-menu
|
||||||
|
|
||||||
left
|
left
|
||||||
bottom
|
bottom
|
||||||
offset-y
|
offset-y
|
||||||
v-if="this.$store.state.loggedIn"
|
v-if="this.$store.state.loggedIn"
|
||||||
>
|
>
|
||||||
<template v-slot:activator="{ on }">
|
<template v-slot:activator="{ on }">
|
||||||
<v-btn v-on="on" tile text height="100%">
|
<v-btn v-on="on" class="d-none d-md-flex" tile text height="100%">
|
||||||
{{$store.getters.getMe["username"]}}
|
{{$store.getters.getMe["username"]}}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<v-list>
|
<v-list>
|
||||||
|
<v-list-item to="/profile">
|
||||||
|
<v-list-item-title>Profile</v-list-item-title>
|
||||||
|
</v-list-item>
|
||||||
<v-list-item to="/access">
|
<v-list-item to="/access">
|
||||||
<v-list-item-title>App Access</v-list-item-title>
|
<v-list-item-title>App Access</v-list-item-title>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
|
@ -140,6 +151,9 @@
|
||||||
UserServie.logout();
|
UserServie.logout();
|
||||||
this.$store.dispatch('checkAccount')
|
this.$store.dispatch('checkAccount')
|
||||||
this.$router.push({"path": "login"})
|
this.$router.push({"path": "login"})
|
||||||
|
},
|
||||||
|
toggleMenu: function () {
|
||||||
|
this.$store.state.sideMenu = !this.$store.state.sideMenu ;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted: function () {
|
mounted: function () {
|
||||||
|
|
|
@ -1,112 +1,85 @@
|
||||||
<template>
|
<template>
|
||||||
<v-navigation-drawer
|
<v-navigation-drawer
|
||||||
stateless
|
|
||||||
absolute
|
absolute
|
||||||
value="true"
|
temporary
|
||||||
v-model="$store.state.sideMenu"
|
v-model="$store.state.sideMenu"
|
||||||
>
|
>
|
||||||
<v-list>
|
<v-list>
|
||||||
<v-list-tile>
|
<v-list-item>
|
||||||
<v-list-tile-action>
|
|
||||||
<v-icon>home</v-icon>
|
|
||||||
</v-list-tile-action>
|
|
||||||
<v-list-tile-title>Home</v-list-tile-title>
|
|
||||||
</v-list-tile>
|
|
||||||
|
|
||||||
<v-list-tile>
|
<v-list-item-content>
|
||||||
<v-list-tile-action>
|
<v-list-item-title>Keks Account</v-list-item-title>
|
||||||
<v-icon>home</v-icon>
|
</v-list-item-content>
|
||||||
</v-list-tile-action>
|
</v-list-item>
|
||||||
<v-list-tile-title>Apps</v-list-tile-title>
|
|
||||||
</v-list-tile>
|
|
||||||
|
|
||||||
<v-list-group
|
<v-divider></v-divider>
|
||||||
prepend-icon="account_circle"
|
|
||||||
value="true"
|
<v-list-item
|
||||||
|
link
|
||||||
|
:to="{path: '/dashboard'}"
|
||||||
>
|
>
|
||||||
<template v-slot:activator>
|
<v-list-item-icon>
|
||||||
<v-list-tile>
|
<v-icon>mdi-view-dashboard</v-icon>
|
||||||
<v-list-tile-title>Admin</v-list-tile-title>
|
</v-list-item-icon>
|
||||||
</v-list-tile>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<v-list-tile>
|
<v-list-item-content>
|
||||||
<v-list-tile-action>
|
<v-list-item-title>Dashboard</v-list-item-title>
|
||||||
</v-list-tile-action>
|
</v-list-item-content>
|
||||||
<v-list-tile-title>Settings</v-list-tile-title>
|
</v-list-item>
|
||||||
</v-list-tile>
|
|
||||||
<v-list-tile>
|
|
||||||
<v-list-tile-action>
|
|
||||||
</v-list-tile-action>
|
|
||||||
<v-list-tile-title>Users</v-list-tile-title>
|
|
||||||
</v-list-tile>
|
|
||||||
<v-list-tile>
|
|
||||||
<v-list-tile-action>
|
|
||||||
</v-list-tile-action>
|
|
||||||
<v-list-tile-title>Apps</v-list-tile-title>
|
|
||||||
</v-list-tile>
|
|
||||||
<v-list-tile>
|
|
||||||
<v-list-tile-action>
|
|
||||||
</v-list-tile-action>
|
|
||||||
<v-list-tile-title>Invites</v-list-tile-title>
|
|
||||||
</v-list-tile>
|
|
||||||
|
|
||||||
|
<v-list-item
|
||||||
</v-list-group>
|
link
|
||||||
|
:to="{path: '/apps'}"
|
||||||
<v-list-group
|
|
||||||
prepend-icon="account_circle"
|
|
||||||
value="true"
|
|
||||||
>
|
>
|
||||||
<template v-slot:activator>
|
<v-list-item-icon>
|
||||||
<v-list-tile>
|
<v-icon>mdi-code-tags</v-icon>
|
||||||
<v-list-tile-title>Users</v-list-tile-title>
|
</v-list-item-icon>
|
||||||
</v-list-tile>
|
|
||||||
</template>
|
<v-list-item-content>
|
||||||
|
<v-list-item-title>Developer</v-list-item-title>
|
||||||
|
</v-list-item-content>
|
||||||
|
</v-list-item>
|
||||||
|
|
||||||
<v-list-group
|
<v-list-group
|
||||||
no-action
|
no-action
|
||||||
sub-group
|
|
||||||
value="true"
|
|
||||||
>
|
>
|
||||||
<template v-slot:activator>
|
<template v-slot:activator>
|
||||||
<v-list-tile>
|
<v-list-item-icon>
|
||||||
<v-list-tile-title>Admin</v-list-tile-title>
|
<v-icon>mdi-account</v-icon>
|
||||||
</v-list-tile>
|
</v-list-item-icon>
|
||||||
|
|
||||||
|
<v-list-item-content>
|
||||||
|
<v-list-item-title>Kekskurse</v-list-item-title>
|
||||||
|
</v-list-item-content>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<v-list-tile
|
<v-list-item
|
||||||
v-for="(admin, i) in admins"
|
link
|
||||||
:key="i"
|
:to="{path: '/profile'}"
|
||||||
@click=""
|
|
||||||
>
|
>
|
||||||
<v-list-tile-title v-text="admin[0]"></v-list-tile-title>
|
<v-list-item-content>
|
||||||
<v-list-tile-action>
|
<v-list-item-title>Profile</v-list-item-title>
|
||||||
<v-icon v-text="admin[1]"></v-icon>
|
</v-list-item-content>
|
||||||
</v-list-tile-action>
|
</v-list-item>
|
||||||
</v-list-tile>
|
<v-list-item
|
||||||
|
link
|
||||||
|
:to="{path: '/access'}"
|
||||||
|
>
|
||||||
|
<v-list-item-content>
|
||||||
|
<v-list-item-title>App Access</v-list-item-title>
|
||||||
|
</v-list-item-content>
|
||||||
|
</v-list-item>
|
||||||
|
<v-list-item
|
||||||
|
link
|
||||||
|
:to="{path: '/logout'}"
|
||||||
|
>
|
||||||
|
<v-list-item-content>
|
||||||
|
<v-list-item-title>Logout</v-list-item-title>
|
||||||
|
</v-list-item-content>
|
||||||
|
</v-list-item>
|
||||||
</v-list-group>
|
</v-list-group>
|
||||||
|
|
||||||
<v-list-group
|
|
||||||
sub-group
|
|
||||||
no-action
|
|
||||||
>
|
|
||||||
<template v-slot:activator>
|
|
||||||
<v-list-tile>
|
|
||||||
<v-list-tile-title>Actions</v-list-tile-title>
|
|
||||||
</v-list-tile>
|
|
||||||
</template>
|
|
||||||
<v-list-tile
|
|
||||||
v-for="(crud, i) in cruds"
|
|
||||||
:key="i"
|
|
||||||
@click=""
|
|
||||||
>
|
|
||||||
<v-list-tile-title v-text="crud[0]"></v-list-tile-title>
|
|
||||||
<v-list-tile-action>
|
|
||||||
<v-icon v-text="crud[1]"></v-icon>
|
|
||||||
</v-list-tile-action>
|
|
||||||
</v-list-tile>
|
|
||||||
</v-list-group>
|
|
||||||
</v-list-group>
|
|
||||||
</v-list>
|
</v-list>
|
||||||
</v-navigation-drawer>
|
</v-navigation-drawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
import '@mdi/font/css/materialdesignicons.css' // Ensure you are using css-loader
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import Vuetify from 'vuetify/lib';
|
import Vuetify from 'vuetify/lib';
|
||||||
|
|
||||||
|
@ -5,6 +6,6 @@ Vue.use(Vuetify);
|
||||||
|
|
||||||
export default new Vuetify({
|
export default new Vuetify({
|
||||||
icons: {
|
icons: {
|
||||||
iconfont: 'mdiSvg',
|
iconfont: 'mdi',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -12,6 +12,7 @@ import Mail from '../views/Mail'
|
||||||
import Invite from '../views/Invite'
|
import Invite from '../views/Invite'
|
||||||
import Register from '../views/Register'
|
import Register from '../views/Register'
|
||||||
import Access from '../views/Access'
|
import Access from '../views/Access'
|
||||||
|
import Profile from '../views/Profile'
|
||||||
|
|
||||||
Vue.use(Router)
|
Vue.use(Router)
|
||||||
|
|
||||||
|
@ -69,6 +70,12 @@ export default new Router({
|
||||||
name: 'Access',
|
name: 'Access',
|
||||||
component: Access
|
component: Access
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
beforeEnter: guard,
|
||||||
|
path: '/profile',
|
||||||
|
name: 'Profile',
|
||||||
|
component: Profile
|
||||||
|
},
|
||||||
{
|
{
|
||||||
beforeEnter: guard,
|
beforeEnter: guard,
|
||||||
path: '/apps/new',
|
path: '/apps/new',
|
||||||
|
|
|
@ -3,5 +3,8 @@ import Api from '@/services/Api'
|
||||||
export default {
|
export default {
|
||||||
getPublicSettings (params) {
|
getPublicSettings (params) {
|
||||||
return Api().get('/v1/server/settings')
|
return Api().get('/v1/server/settings')
|
||||||
|
},
|
||||||
|
getStatus () {
|
||||||
|
return Api().get("/v1/status/check")
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -17,12 +17,21 @@ export default {
|
||||||
me() {
|
me() {
|
||||||
return Api().get('/v1/user/me')
|
return Api().get('/v1/user/me')
|
||||||
},
|
},
|
||||||
|
mails() {
|
||||||
|
return Api().get('/v1/user/me/mails')
|
||||||
|
},
|
||||||
logout() {
|
logout() {
|
||||||
localStorage.removeItem("access_token");
|
localStorage.removeItem("access_token");
|
||||||
},
|
},
|
||||||
getMails() {
|
getMails() {
|
||||||
return Api().get('/v1/user/me/mails');
|
return Api().get('/v1/user/me/mails');
|
||||||
},
|
},
|
||||||
|
addMail(mail) {
|
||||||
|
return Api().post('/v1/user/me/mails', {mail: mail});
|
||||||
|
},
|
||||||
|
removeMail(mailID) {
|
||||||
|
return Api().delete('/v1/user/me/mail/'+mailID);
|
||||||
|
},
|
||||||
getCaptchaSettings() {
|
getCaptchaSettings() {
|
||||||
return Api().get("/v1/user/captcha");
|
return Api().get("/v1/user/captcha");
|
||||||
},
|
},
|
||||||
|
|
|
@ -13,7 +13,7 @@ export default new Vuex.Store({
|
||||||
me: [],
|
me: [],
|
||||||
redirectIfLoggedIn: null,
|
redirectIfLoggedIn: null,
|
||||||
settings: [], // The TV inventory
|
settings: [], // The TV inventory
|
||||||
sideMenu: false, //Toggle Side Menu on side Bar,
|
sideMenu: true, //Toggle Side Menu on side Bar,
|
||||||
error: false
|
error: false
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,11 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th></th>
|
<th></th>
|
||||||
<th class="text-left">Name</th>
|
<th class="text-left">Name</th>
|
||||||
|
<th class="text-left"></th>
|
||||||
|
|
||||||
|
<th class="text-left">Description</th>
|
||||||
<th class="text-left">Created at</th>
|
<th class="text-left">Created at</th>
|
||||||
<th class="text-left">Info</th>
|
|
||||||
<th class="text-right" style="max-width: 200px;">Actions</th>
|
<th class="text-right" style="max-width: 200px;">Actions</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -24,7 +27,6 @@
|
||||||
<img :src="getImageUrl(item.app.id)" style="max-width: 30px;">
|
<img :src="getImageUrl(item.app.id)" style="max-width: 30px;">
|
||||||
</td>
|
</td>
|
||||||
<td>{{ item.app.name }}</td>
|
<td>{{ item.app.name }}</td>
|
||||||
<td>{{ item.created }}</td>
|
|
||||||
<td>
|
<td>
|
||||||
<v-tooltip v-if="item.app.properties.untrustedWarning" bottom>
|
<v-tooltip v-if="item.app.properties.untrustedWarning" bottom>
|
||||||
<template v-slot:activator="{ on }">
|
<template v-slot:activator="{ on }">
|
||||||
|
@ -39,6 +41,10 @@
|
||||||
<span>App is in testing modus!</span>
|
<span>App is in testing modus!</span>
|
||||||
</v-tooltip>
|
</v-tooltip>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td>{{ item.app.description }}</td>
|
||||||
|
<td>{{ item.created }}</td>
|
||||||
|
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<v-btn target="_blank" :href="item.app.url" depressed x-small :disabled="!item.app.url" color="primary" style="margin-right: 10px;">Go to Webpage</v-btn>
|
<v-btn target="_blank" :href="item.app.url" depressed x-small :disabled="!item.app.url" color="primary" style="margin-right: 10px;">Go to Webpage</v-btn>
|
||||||
<v-btn target="_blank" :href="item.app.directUrl" depressed x-small :disabled="!item.app.directUrl" color="primary" style="margin-right: 10px;">Login to</v-btn>
|
<v-btn target="_blank" :href="item.app.directUrl" depressed x-small :disabled="!item.app.directUrl" color="primary" style="margin-right: 10px;">Login to</v-btn>
|
||||||
|
|
137
src/views/Profile.vue
Normal file
137
src/views/Profile.vue
Normal file
|
@ -0,0 +1,137 @@
|
||||||
|
<template>
|
||||||
|
<div style="margin-top:50px;">
|
||||||
|
<v-container grid-list-md pa-10 >
|
||||||
|
<v-layout row wrap>
|
||||||
|
<v-flex md12>
|
||||||
|
<h1>Profile</h1>
|
||||||
|
<br><br>
|
||||||
|
<h2>E-Mail</h2>
|
||||||
|
<v-simple-table>
|
||||||
|
<template v-slot:default>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th class="text-left">E-Mail</th>
|
||||||
|
<th class="text-left">Status</th>
|
||||||
|
<th class="text-left">Primary</th>
|
||||||
|
<th class="text-right">Action</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr v-for="item in mails" :key="item.name">
|
||||||
|
<td>{{ item.mail }}</td>
|
||||||
|
<td>{{ item.status }}</td>
|
||||||
|
<td>
|
||||||
|
<span v-if="item.primary">Yes</span>
|
||||||
|
<span v-if="!item.primary">No</span>
|
||||||
|
</td>
|
||||||
|
<td class="text-right">
|
||||||
|
<!--<v-btn depressed x-small :disabled="item.status == 'valide'" color="primary" style="margin-right: 10px;">Resend Validation</v-btn>!-->
|
||||||
|
<v-btn depressed x-small :disabled="item.primary" @click="removeMail(item.id)" color="error" style="margin-right: 10px;">Remove Mail</v-btn>
|
||||||
|
<v-btn depressed x-small :disabled="item.primary || item.status != 'valide'" color="success">Mark as Primary</v-btn>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</template>
|
||||||
|
</v-simple-table>
|
||||||
|
<h3>Add new Mail</h3>
|
||||||
|
<p>If you add a new Mail we will send you a validation mail.</p>
|
||||||
|
<v-text-field
|
||||||
|
label="E-Mail"
|
||||||
|
value=""
|
||||||
|
v-model="newmail"
|
||||||
|
|
||||||
|
></v-text-field>
|
||||||
|
<v-btn
|
||||||
|
color="success"
|
||||||
|
@click="addMail"
|
||||||
|
>
|
||||||
|
Add Mail
|
||||||
|
</v-btn>
|
||||||
|
<h2>Password</h2>
|
||||||
|
</v-flex>
|
||||||
|
</v-layout>
|
||||||
|
</v-container>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import ServerService from '../services/Server'
|
||||||
|
import UserService from '../services/User'
|
||||||
|
import AppService from '../services/Apps'
|
||||||
|
import AppCardsComponente from '../components/AppCards'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
nameBig: '',
|
||||||
|
nameSmall: '',
|
||||||
|
mails: [],
|
||||||
|
newmail: ''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
"AppCards": AppCardsComponente
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
"getMails": function () {
|
||||||
|
UserService.mails().then((res) => {
|
||||||
|
this.mails = res.data.data;
|
||||||
|
})
|
||||||
|
},
|
||||||
|
"addMail": function () {
|
||||||
|
UserService.addMail(this.newmail).then((res) => {
|
||||||
|
this.getMails();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
"removeMail": function (id) {
|
||||||
|
UserService.removeMail(id).then((res) => {
|
||||||
|
this.getMails();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted: function() {
|
||||||
|
this.nameBig = this.$store.getters.getSettingValue("name_big");
|
||||||
|
this.nameSmall = this.$store.getters.getSettingValue("name_small");
|
||||||
|
UserService.mails().then((res) => {
|
||||||
|
this.mails = res.data.data;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.header {
|
||||||
|
background-image: url('~@/assets/manhattan-407703_1920.jpg');
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
margin-top: -100px;
|
||||||
|
height: 30vh;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.header h1{
|
||||||
|
padding-top: 200px;
|
||||||
|
font-size: 56px !important;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 32px !important;
|
||||||
|
letter-spacing: normal !important;
|
||||||
|
}
|
||||||
|
.header h1 .small{
|
||||||
|
font-weight: 300 !important;
|
||||||
|
}
|
||||||
|
.header h2{
|
||||||
|
padding-top: 30px;
|
||||||
|
font-size: 34px !important;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 32px !important;
|
||||||
|
letter-spacing: normal !important;
|
||||||
|
}
|
||||||
|
h1{
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 32px !important;
|
||||||
|
letter-spacing: normal !important;
|
||||||
|
}
|
||||||
|
h2{
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 32px !important;
|
||||||
|
letter-spacing: normal !important;
|
||||||
|
}
|
||||||
|
</style>
|
Reference in a new issue