71 lines
2.8 KiB
Vue
71 lines
2.8 KiB
Vue
<script>
|
|
import projectMapLink from '@components/projectMapLink';
|
|
import spotIcon from '@components/spotIcon';
|
|
import projectRelTime from '@components/projectRelTime';
|
|
import projectMediaLink from '@components/projectMediaLink';
|
|
|
|
export default {
|
|
components: {
|
|
spotIcon,
|
|
projectMapLink,
|
|
projectMediaLink,
|
|
projectRelTime
|
|
},
|
|
props: {
|
|
options: Object,
|
|
project: Object
|
|
},
|
|
inject: ['lang', 'consts'],
|
|
computed: {
|
|
timeIcon() {
|
|
return (this.options.type == 'media')?'image-shot':'time';
|
|
},
|
|
medias() {
|
|
return (this.options.type == 'media')?[this.options]:this.options?.medias;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="options.type+' '+options.subtype">
|
|
<div class="header" v-if="options.type=='track'">
|
|
<h1>
|
|
<spotIcon :icon="options.subtype" size="lg" :text="this.options.name" width="auto" :textClasses="options.subtype" />
|
|
</h1>
|
|
<p v-if="options.description" class="description">{{ options.description }}</p>
|
|
<div v-if="options.subtype!='hitchhiking'" class="separator"></div>
|
|
</div>
|
|
<div v-if="options.type=='track'">
|
|
<div v-if="options.subtype!='hitchhiking'" class="section track-stats">
|
|
<spotIcon :title="lang.get('stats.distance')" :icon="'distance'" width="fixed" size="lg" :text="options.distance+'km'" />
|
|
<spotIcon :title="lang.get('stats.duration')" :icon="'time'" width="fixed" size="lg" :text="options.duration" />
|
|
<spotIcon :title="lang.get('stats.elevation_gain')" :icon="'elev-gain'" width="fixed" size="lg" :text="options.elev_gain+'m'" />
|
|
<spotIcon :title="lang.get('stats.elevation_loss')" :icon="'elev-drop'" width="fixed" size="lg" :text="options.elev_drop+'m'" />
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
<div class="section coordinates">
|
|
<spotIcon :icon="'coords'" width="fixed" size="lg" margin="right" />
|
|
<projectMapLink :options="options" />
|
|
</div>
|
|
<div v-if="options.altitude" class="section altitude">
|
|
<spotIcon :icon="'altitude'" width="fixed" size="lg" :text="options.altitude+'m'" />
|
|
</div>
|
|
<div class="section time">
|
|
<projectRelTime :icon="timeIcon" :localTime="options.formatted_time_local" :siteTime="options.formatted_time" :offset="options.day_offset" />
|
|
<span v-if="project.mode==consts.modes.blog"> ({{ options.relative_time }})</span>
|
|
</div>
|
|
<div class="section weather" v-if="options.weather_icon && options.weather_icon!='unknown'" :title="options.weather_cond==''?'':lang.get('weather.'+options.weather_icon)">
|
|
<spotIcon :icon="options.weather_icon" width="fixed" size="lg" :text="options.weather_temp+'°C'" />
|
|
</div>
|
|
<div v-if="medias" class="section medias">
|
|
<spotIcon v-if="options.type=='message'" icon="media" width="fixed" size="lg" :text="lang.get('media.nearby')" />
|
|
<div class="medias-list">
|
|
<projectMediaLink v-for="media in medias" :options="media" :type="'marker'" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|