Skip to content
GroupsBreadcrumb.vue 1.9 KiB
Newer Older
<template>
<nav aria-label="breadcrumb" id="groups-breadcrumbs">
  <ol class="breadcrumb">
    <li class="breadcrumb-item" v-for="group in groups" v-bind:class="{ active: group.active }" v-bind:key="group.groupId">
      <a href="#" v-on:click="changeBreadcrumb(group.groupId)" v-if="!group.active">{{group.groupName}}</a>
      <span v-if="group.active">{{group.groupName}}</span>
    </li>
  </ol>
  <a v-if="currentGroup" :href="'group/status?groupId=' + currentGroup.groupId" :download="currentGroup.groupName + '.csv'" id="csv-status-download" title="Download CSV">
    <font-awesome-icon icon="download"></font-awesome-icon>
  </a>
</template>

<script>
function buildItems(values) {
  let groups = [];
  for (let i = 0; i < values.length; i++) {
    let group = values[i];
    group.active = false;
    groups.push(group);
  }
  // Activate the last item
  if (groups.length > 0) {
    groups[groups.length - 1].active = true;
  }
export default {
  name: 'GroupsBreadcrumb',
  computed: mapState({
    model: state => state.model,
    groups: state => buildItems(state.model.breadcrumbs),
    isAdmin: state => state.model.permission === 'ADMIN',
    currentGroup: state => state.model.breadcrumbs[state.model.breadcrumbs.length - 1]
  }),
  methods: {
    changeBreadcrumb: function(groupId) {
      this.input.selectedGroupId = groupId;
      this.input.searchFilter = null;
      if (this.input.tabIndex === 0) {
        client.fetchGroupsTab(this.input)
            this.$store.commit('updateGroups', model);
</script>

<style scoped>
#groups-breadcrumbs {
  margin-top: 10px;
  position: relative;
}

#csv-status-download {
  position: absolute;
  right: 18px;
  top: 12px;
}
</style>