view client/src/components/ui/UITableBody.vue @ 2880:c40540889b53

client: code cleanup, slight style improvements
author Markus Kottlaender <markus@intevation.de>
date Mon, 01 Apr 2019 17:37:22 +0200
parents b9a6abef9f1c
children d2dba0638ef1
line wrap: on
line source

<template>
  <div
    class="table-body text-left small"
    :style="'overflow-y: auto; max-height: ' + maxHeight"
    v-if="data.length"
  >
    <div
      v-for="(item, index) in data"
      :key="key(index)"
      :class="['row-container border-top', { active: isActive(item) }]"
    >
      <div class="row mx-0">
        <slot :item="item" :index="index" name="row"></slot>
      </div>
      <div class="expand" v-if="isActive(item)">
        <slot :item="item" :index="index" name="expand"></slot>
      </div>
    </div>
  </div>
  <div v-else class="small text-center py-3 border-top">
    <translate>No results.</translate>
  </div>
</template>

<style lang="sass">
.table-body
  .row-container
    > .row
      &:hover
        background-color: #fcfcfc
      .table-cell
        display: flex
        align-items: center
        padding: 1.5px 3px
        border-right: solid 1px #dee2e6
        &:last-child
          border-right: none
        &.center
          justify-content: center
    .expand
      border-bottom: solid 1px $color-info

    &.active
      > .row
        color: #fff
        .table-cell
          border-right-color: rgba(255, 255, 255, 0.3)
          background-color: $color-info
          color: #fff
          a
            color: #fff !important
</style>

<script>
/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */

export default {
  props: {
    data: {
      type: Array
    },
    maxHeight: {
      type: String,
      default: "18rem"
    },
    isActive: {
      type: Function,
      default: () => false
    }
  },
  methods: {
    key(index) {
      return index;
    }
  }
};
</script>