2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2020-01-30 20:53:16 +01:00
|
|
|
<div class="mkw-timeline" :style="`flex-basis: calc(${basis}% - var(--margin)); height: ${previewHeight}px;`">
|
2020-01-30 10:32:09 +01:00
|
|
|
<mk-container :show-header="!props.compact" class="container">
|
2020-01-29 20:37:25 +01:00
|
|
|
<template #header>
|
|
|
|
<button @click="choose" class="_button">
|
|
|
|
<fa v-if="props.src === 'home'" :icon="faHome"/>
|
|
|
|
<fa v-if="props.src === 'local'" :icon="faComments"/>
|
|
|
|
<fa v-if="props.src === 'social'" :icon="faShareAlt"/>
|
|
|
|
<fa v-if="props.src === 'global'" :icon="faGlobe"/>
|
|
|
|
<fa v-if="props.src === 'list'" :icon="faListUl"/>
|
|
|
|
<fa v-if="props.src === 'antenna'" :icon="faSatellite"/>
|
|
|
|
<span style="margin-left: 8px;">{{ props.src === 'list' ? props.list.name : props.src === 'antenna' ? props.antenna.name : $t('_timelines.' + props.src) }}</span>
|
|
|
|
<fa :icon="menuOpened ? faAngleUp : faAngleDown" style="margin-left: 8px;"/>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
2020-03-20 10:11:39 +01:00
|
|
|
<div>
|
2020-01-29 20:37:25 +01:00
|
|
|
<x-timeline :key="props.src === 'list' ? `list:${props.list.id}` : props.src === 'antenna' ? `antenna:${props.antenna.id}` : props.src" :src="props.src" :list="props.list" :antenna="props.antenna"/>
|
|
|
|
</div>
|
|
|
|
</mk-container>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { faAngleDown, faAngleUp, faHome, faShareAlt, faGlobe, faListUl, faSatellite } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { faComments } from '@fortawesome/free-regular-svg-icons';
|
|
|
|
import MkContainer from '../components/ui/container.vue';
|
|
|
|
import XTimeline from '../components/timeline.vue';
|
|
|
|
import define from './define';
|
|
|
|
|
2020-01-30 10:32:09 +01:00
|
|
|
const basisSteps = [25, 50, 75, 100]
|
|
|
|
const previewHeights = [200, 300, 400, 500]
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
export default define({
|
|
|
|
name: 'timeline',
|
|
|
|
props: () => ({
|
|
|
|
src: 'home',
|
|
|
|
list: null,
|
2020-01-30 10:32:09 +01:00
|
|
|
compact: false,
|
|
|
|
basisStep: 0
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
}).extend({
|
|
|
|
|
|
|
|
components: {
|
|
|
|
MkContainer,
|
|
|
|
XTimeline,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
menuOpened: false,
|
|
|
|
faAngleDown, faAngleUp, faHome, faShareAlt, faGlobe, faComments, faListUl, faSatellite
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-01-30 10:32:09 +01:00
|
|
|
computed: {
|
|
|
|
basis(): number {
|
|
|
|
return basisSteps[this.props.basisStep] || 25
|
|
|
|
},
|
|
|
|
|
|
|
|
previewHeight(): number {
|
2020-01-30 20:53:16 +01:00
|
|
|
return previewHeights[this.props.basisStep] || 200
|
2020-01-30 10:32:09 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
methods: {
|
|
|
|
func() {
|
2020-01-30 10:32:09 +01:00
|
|
|
if (this.props.basisStep === basisSteps.length - 1) {
|
|
|
|
this.props.basisStep = 0
|
|
|
|
this.props.compact = !this.props.compact;
|
|
|
|
} else {
|
|
|
|
this.props.basisStep += 1
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
this.save();
|
|
|
|
},
|
|
|
|
|
|
|
|
async choose(ev) {
|
|
|
|
this.menuOpened = true;
|
|
|
|
const [antennas, lists] = await Promise.all([
|
|
|
|
this.$root.api('antennas/list'),
|
|
|
|
this.$root.api('users/lists/list')
|
|
|
|
]);
|
|
|
|
const antennaItems = antennas.map(antenna => ({
|
|
|
|
text: antenna.name,
|
|
|
|
icon: faSatellite,
|
|
|
|
action: () => {
|
|
|
|
this.props.antenna = antenna;
|
|
|
|
this.setSrc('antenna');
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
const listItems = lists.map(list => ({
|
|
|
|
text: list.name,
|
|
|
|
icon: faListUl,
|
|
|
|
action: () => {
|
|
|
|
this.props.list = list;
|
|
|
|
this.setSrc('list');
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
this.$root.menu({
|
|
|
|
items: [{
|
|
|
|
text: this.$t('_timelines.home'),
|
|
|
|
icon: faHome,
|
|
|
|
action: () => { this.setSrc('home') }
|
|
|
|
}, {
|
|
|
|
text: this.$t('_timelines.local'),
|
|
|
|
icon: faComments,
|
|
|
|
action: () => { this.setSrc('local') }
|
|
|
|
}, {
|
|
|
|
text: this.$t('_timelines.social'),
|
|
|
|
icon: faShareAlt,
|
|
|
|
action: () => { this.setSrc('social') }
|
|
|
|
}, {
|
|
|
|
text: this.$t('_timelines.global'),
|
|
|
|
icon: faGlobe,
|
|
|
|
action: () => { this.setSrc('global') }
|
|
|
|
}, antennaItems.length > 0 ? null : undefined, ...antennaItems, listItems.length > 0 ? null : undefined, ...listItems],
|
|
|
|
noCenter: true,
|
|
|
|
source: ev.currentTarget || ev.target
|
|
|
|
}).then(() => {
|
|
|
|
this.menuOpened = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
setSrc(src) {
|
|
|
|
this.props.src = src;
|
|
|
|
this.save();
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2020-01-30 10:32:09 +01:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.mkw-timeline {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 0;
|
2020-01-30 12:27:14 +01:00
|
|
|
min-height: 0; // https://www.gwtcenter.com/min-height-required-on-firefox-flexbox
|
2020-01-30 10:32:09 +01:00
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
overflow: auto;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|