aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-key-value-list/c-key-value-list.vue
blob: d863bd5020c07bd9e7b5b62ea6beca8c37bffbb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script lang="ts" setup>
import _ from 'lodash';
import type { CKeyValueListItems } from './c-key-value-list.types';

const props = withDefaults(defineProps<{ items?: CKeyValueListItems }>(), { items: () => [] });
const { items } = toRefs(props);

const formattedItems = computed(() => items.value.filter(item => !_.isNil(item.value) || !item.hideOnNil));
</script>

<template>
  <div flex flex-col gap-2>
    <div v-for="item in formattedItems" :key="item.label" class="c-key-value-list__item">
      <div class="c-key-value-list__key" text-13px lh-normal>
        {{ item.label }}
      </div>

      <c-key-value-list-item :item="item" class="c-key-value-list__value" font-bold lh-normal />
    </div>
  </div>
</template>