view client/src/components/systemconfiguration/Systemconfiguration.vue @ 3603:2cf7e167dad9

client: configuration: prepared component for map layer configuration
author Markus Kottlaender <markus@intevation.de>
date Wed, 05 Jun 2019 09:38:59 +0200
parents d1bbfb9635ca
children a688a478e35f
line wrap: on
line source

<template>
  <div class="d-flex h-100">
    <Spacer />
    <div class="card my-2 mr-2 flex-fill shadow-xs">
      <UIBoxHeader icon="wrench" :title="systemconfigurationLabel" />
      <div class="text-left flex-fill" style="overflow: auto">
        <PDFTemplates />
        <ColorSettings v-if="isSysAdmin" />
      </div>
      <!-- card-body -->
    </div>
  </div>
</template>

<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):
 * Thomas Junk <thomas.junk@intevation.de>
 * Bernhard Reiter <bernhard@intevation.de>
 * Markus Kottländer <markus@intevation.de>
 */
import { mapGetters } from "vuex";

export default {
  name: "systemconfiguration",
  components: {
    Spacer: () => import("../Spacer"),
    PDFTemplates: () => import("./PDFTemplates"),
    ColorSettings: () => import("./ColorSettings")
  },
  computed: {
    ...mapGetters("user", ["isSysAdmin"]),
    systemconfigurationLabel() {
      return this.$gettext("Systemconfiguration");
    }
  }
};
</script>