summaryrefslogblamecommitdiffstats
path: root/webapp/src/components/PermissionModuleGrantRevoke.vue
blob: 06868d5e133e7d8f949faea7a2a04395374cf4fd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


         








                                         

         








                                              





























                                                                                                                
                                         









                                                                                                                

























                                                                  
                                   

                                      
                                                                        
                                                                        










                                                                                         

                                      
                                                                        
                                                                        










































                                                                                                                        

                                                 
                                                        







                                                             
                                                  










                                                                                           
                                                   




















                                                                                           



                                                           

          






                                   





                                                                   
                     


                      
<i18n>
{
  "en": {
    "select_roles": "Select Roles",
    "check_selection": "Check Selection",
    "roles": "Roles",
    "users": "Users",
    "grant": "Grant",
    "revoke": "Revoke",
    "id": "ID",
    "name": "Name",
    "description": "Description"
  },
  "de": {
    "select_roles": "Rollen auswählen",
    "check_selection": "Auswahl überprüfen",
    "roles": "Rollen",
    "users": "Nutzer",
    "grant": "Zuweisen",
    "revoke": "Entziehen",
    "id": "ID",
    "name": "Name",
    "description": "Beschreibung"
  }
}
</i18n>

<template>
  <v-dialog
    :value="$store.state.permissions.grantRevoke"
    @input="$store.commit('permissions/setGrantRevoke', $event)"
    max-width="700px"
    scrollable
  >
    <v-card>
      <v-card-title style="padding: 0px">
        <v-stepper v-model="step" horizontal  style="width: 100%; background: transparent;" class="elevation-3">
          <v-stepper-header>
            <v-stepper-step
              :complete="stepCompleted >= 1"
              step="1"
              :editable="stepCompleted >= 1"
              edit-icon="check"
            >
              {{ $t('select_roles') }}
            </v-stepper-step>
            <v-divider></v-divider>
            <v-stepper-step
              :complete="stepCompleted >= 2"
              step="2"
              :editable="stepCompleted >= 2"
              edit-icon="check"
            >
              {{ $t('check_selection') }}
            </v-stepper-step>
          </v-stepper-header>
        </v-stepper>
      </v-card-title>
      <v-card-text style="height: 500px;">
        <v-form v-model="valid" ref="form" @submit.prevent="submit" lazy-validation>
          <v-stepper v-model="step" horizontal style="width: 100%; background: transparent" class="elevation-0">
            <v-stepper-items>
              <v-stepper-content step="1">
                <v-data-table
                  :headers="roleHeaders"
                  :items="roles"
                  item-key="id"
                  hide-actions
                  select-all
                  :value="rolesSelected"
                  @input="setRolesSelected($event)"
                >
                  <template slot="items" slot-scope="props">
                    <tr @click="props.selected = !props.selected">
                      <td>
                        <v-checkbox
                          color="primary"
                          v-model="props.selected"
                          hide-details
                          @click.native.stop
                        ></v-checkbox>
                      </td>
                      <td>{{ props.item.id }}</td>
                      <td>{{ props.item.name }}</td>
                      <td>{{ props.item.descr }}</td>
                    </tr>
                  </template>
                </v-data-table>
              </v-stepper-content>
              <v-stepper-content step="2">
                <v-layout row wrap>
                  <v-flex>
                    <v-list subheader>
                      <v-subheader inset>{{ $t('roles') }}</v-subheader>
                      <v-divider class="list-header-margin"></v-divider>
                      <v-list-tile
                        v-for="role in rolesSelected"
                        :key="role.id"
                      >
                        <v-list-tile-content>
                          <v-list-tile-title>{{ role.name }}</v-list-tile-title>
                          <v-list-tile-sub-title>{{ role.descr }}</v-list-tile-sub-title>
                        </v-list-tile-content>
                      </v-list-tile>
                    </v-list>
                  </v-flex>
                  <v-flex>
                    <v-list subheader>
                      <v-subheader inset>{{ $t('users') }}</v-subheader>
                      <v-divider class="list-header-margin"></v-divider>
                      <v-list-tile
                        v-for="user in selectedUsers"
                        :key="user.username"
                      >
                        <v-list-tile-content>
                          <v-list-tile-title>{{ user.username }}</v-list-tile-title>
                          <v-list-tile-sub-title>{{ user.name }}</v-list-tile-sub-title>
                        </v-list-tile-content>
                      </v-list-tile>
                    </v-list>
                  </v-flex>
                </v-layout>
              </v-stepper-content>
            </v-stepper-items>
          </v-stepper>
        </v-form>
      </v-card-text>
      <v-divider></v-divider>
      <v-card-actions>
        <v-flex xl10 offset-xl1 lg12 text-xs-right>
          <v-btn flat @click.native="$store.commit('permissions/setGrantRevoke', false )">{{ $t('cancel') }}</v-btn>
          <v-btn color="primary" v-show="step == 1" @click.native="completeStepOne()">{{ $t('continue') }}</v-btn>
          <v-btn type="submit" @click="submit" v-show="step == 2" v-if="grant" class="success">{{ $t('grant') }}</v-btn>
          <v-btn type="submit" @click="submit" v-show="step == 2" v-else class="error">{{ $t('revoke') }}</v-btn>
        </v-flex>
      </v-card-actions>
    </v-card>
  </v-dialog>
</template>

<script>
import { mapState } from 'vuex'

export default {
  name: 'PermissionModuleGrantRevoke',
  props: ['grant'],
  data () {
    return {
      valid: true,
      step: 1,
      stepCompleted: 0,
      rolesSelected: [],
      roleHeaders: [
        { text: this.$t('id'), value: 'id' },
        { text: this.$t('name'), value: 'name' },
        { text: this.$t('description'), value: 'descr' }
      ]
    }
  },
  methods: {
    submit (event) {
      const filteredRoles = this.rolesSelected.map(x => x.id)
      const filteredUsers = this.selectedUsers.map(x => x.id)
      if (this.grant) {
        this.$http.post('/api/users/grantRoles', {
          userIds: filteredUsers,
          roleIds: filteredRoles
        }).then(response => {
          console.log('TODO: Implement snackbar and print roles granted successfully msg.')
          this.$store.dispatch('permissions/loadData')
          this.$store.commit('permissions/setGrantRevoke', false)
          this.$store.commit('permissions/setSelectedUsers', [])
        }).catch(error => {
          console.log(error)
        })
      } else {
        this.$http.post('/api/users/revokeRoles', {
          userIds: filteredUsers,
          roleIds: filteredRoles
        }).then(response => {
          console.log('TODO: Implement snackbar and print roles revoked successfully msg.')
          this.$store.dispatch('permissions/loadData')
          this.$store.commit('permissions/setGrantRevoke', false)
          this.$store.commit('permissions/setSelectedUsers', [])
        }).catch(error => {
          console.log(error)
        })
      }
    },
    completeStepOne () {
      this.step = 2
      this.stepCompleted = Math.max(1, this.stepCompleted)
    },
    setRolesSelected (value) {
      this.rolesSelected = value
    }
  },
  computed: {
    ...mapState('permissions', ['roles', 'selectedUsers']),
    grantRevoke: function () {
      return this.$store.state.permissions.grantRevoke
    }
  },
  watch: {
    grantRevoke: function (value) {
      if (value) {
        this.rolesSelected = []
        this.step = 1
        this.stepCompleted = 0
      }
    }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.list-header-margin {
  margin-bottom: 10px;
}
</style>