-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: Provide a location map card that fits the layout of the KTimeLin…
…e component #958
- Loading branch information
Showing
1 changed file
with
128 additions
and
0 deletions.
There are no files selected for viewing
128 changes: 128 additions & 0 deletions
128
map/client/components/location/KLocationTimeLineCard.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
<template> | ||
<KCard | ||
v-bind="$props" | ||
:header="header" | ||
:sections="sections" | ||
:footer="footer" | ||
:shadow="shadow" | ||
:dense="dense" | ||
> | ||
<template v-slot:card-heading> | ||
<div class="full-width row"> | ||
<div :class="{ 'col-12': dense, 'col-8': !dense }"> | ||
<div class="full-width row justify-between"> | ||
<!-- name --> | ||
<div | ||
class="text-subtitle1 text-weight-medium ellipsis-2-lines" | ||
v-bind:class="{ 'q-py-xs': dense, 'q-py-sm': !dense }" | ||
> | ||
{{ item.name }} | ||
</div> | ||
<!-- location name if dense --> | ||
<div v-if="dense && item.location" | ||
class="row items-center justify-end q-gutter-x-sm k-location-name" | ||
> | ||
<q-icon v-if="dense" name="las la-map-marker" /> | ||
<span class="ellipsis text-caption">{{ item.location.properties.name }}</span> | ||
<KLocationTip | ||
v-if="dense" | ||
:location="item.location" | ||
/> | ||
</div> | ||
</div> | ||
<KDescriptionCardSection | ||
:item="item" | ||
:actions="descriptionActions" | ||
:dense="dense" | ||
/> | ||
</div> | ||
<div v-if="!dense" class="q-pl-sm q-pb-sm col-4"> | ||
<div v-if="item.location" class="fit column"> | ||
<KLocationMap | ||
v-model="item.location" | ||
:tools="[]" | ||
class="col k-location-map" | ||
/> | ||
<div class="full-width ellipsis text-caption k-location-map-caption"> | ||
{{ item.location.properties.name }} | ||
</div> | ||
</div> | ||
<div v-else class="fit column k-location-map" style="position: relative;"> | ||
<div class="absolute-center" > | ||
<KStamp | ||
icon="las la-map-marker" | ||
text="KLocationCardSection.NO_LOCATION" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
</KCard> | ||
</template> | ||
|
||
<script> | ||
import _ from 'lodash' | ||
import { mixins as kCoreMixins } from '../../../../core/client' | ||
import KDescriptionCardSection from '../../../../core/client/components/collection/KDescriptionCardSection.vue' | ||
import KLocationMap from './KLocationMap' | ||
import KLocationTip from './KLocationTip' | ||
export default { | ||
mixins: [kCoreMixins.baseItem], | ||
components: { | ||
KDescriptionCardSection, | ||
KLocationMap, | ||
KLocationTip | ||
}, | ||
props: { | ||
header: { | ||
type: [Array, Object], | ||
default: () => null | ||
}, | ||
sections: { | ||
type: Object, | ||
default: () => null | ||
}, | ||
footer: { | ||
type: [Array, Object], | ||
default: () => null | ||
}, | ||
shadow: { | ||
type: Number, | ||
default: 0, | ||
validator: (value) => { | ||
return value >= 0 && value <= 24 | ||
} | ||
}, | ||
dense: { | ||
type: Boolean, | ||
default: false | ||
} | ||
}, | ||
computed: { | ||
descriptionActions () { | ||
return _.filter(this.itemActions, { scope: 'description' }) | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.k-location-name { | ||
user-select: none; | ||
cursor: pointer; | ||
} | ||
.k-location-map { | ||
border-radius: 5px 5px 0px 0px; | ||
border: 1px solid lightgrey; | ||
} | ||
.k-location-map-caption { | ||
user-select: none; | ||
padding-left: 4px; | ||
padding-right: 4px; | ||
background-color: #EEEEEE; | ||
border-radius: 0px 0px 5px 5px; | ||
border: 1px solid lightgrey; | ||
} | ||
</style> |