12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template lang="html">
- <div id="user-tools">
-
- <a class="mdi mdi-account" href="/user">
- <span>{{ mail }}</span>
- </a>
-
- <a href="/admin/content/materials"
- v-if="isAdmin"
- class="mdi mdi-settings"
- title="admin"
- ></a>
- <a href="/user/logout"
- @click.prevent="onLogout()"
- class="mdi mdi-logout"
- title="logout"
- ></a>
- <UserFlags v-if="isAdherent"/>
- </div>
- </template>
- <script>
- import { mapState, mapActions } from 'vuex'
- import UserFlags from 'vuejs/components/User/UserFlags'
- export default {
- components: {
- UserFlags
- },
-
-
-
-
-
- computed: {
- ...mapState({
- mail: state => state.User.mail,
- isAdmin: state => state.User.isAdmin,
- isAdherent: state => state.User.isAdherent,
- flags: state => state.User.flags
- })
- },
- methods: {
- ...mapActions({
- userLogout: 'User/userLogout'
- }),
- onLogout () {
- console.log('UserTools onLogout')
- this.userLogout()
- }
- }
- }
- </script>
- <style lang="css" scoped>
- #user-tools{
- margin-right:0.2em;
-
-
- }
- h4{
- margin:0;
- display:inline-block;
- font-size:inherited;
- vertical-align: top;
- }
- </style>
|