2018-06-25 18:29:57 +02:00
|
|
|
<template>
|
|
|
|
<v-container fluid fill-height class="no-padding">
|
2018-07-16 17:26:10 +02:00
|
|
|
<v-layout row wrap fill-height>
|
2018-07-05 22:40:24 +02:00
|
|
|
<ReportCard></ReportCard>
|
2018-07-01 22:02:54 +02:00
|
|
|
<v-flex xs12 fill-height v-if="latLng">
|
2018-07-13 16:50:34 +02:00
|
|
|
<Map :positionLatLng="latLng" :reportLatLng="reportLatLng" :polyline="positionHistory" :heading="heading" :accuracy="accuracy" :markers="reportsMarkers" :onPress="showReportDialog"></Map>
|
2018-06-25 18:29:57 +02:00
|
|
|
<v-btn
|
2018-07-03 18:09:56 +02:00
|
|
|
absolute
|
2018-06-25 18:29:57 +02:00
|
|
|
dark
|
|
|
|
fab
|
2018-07-02 18:27:35 +02:00
|
|
|
large
|
2018-06-25 18:29:57 +02:00
|
|
|
bottom
|
|
|
|
right
|
|
|
|
color="orange"
|
|
|
|
class="overlayButton"
|
2018-06-28 14:40:56 +02:00
|
|
|
@click.native.stop="() => showReportDialog()"
|
2018-07-11 01:14:54 +02:00
|
|
|
role="button"
|
|
|
|
:aria-label="$t('buttons.reportProblem')"
|
2018-06-25 18:29:57 +02:00
|
|
|
>
|
|
|
|
<v-icon>report_problem</v-icon>
|
|
|
|
</v-btn>
|
2018-06-28 14:40:56 +02:00
|
|
|
<ReportDialog v-model="dialog" :lat="reportLat" :lng="reportLng"></ReportDialog>
|
2018-06-25 18:29:57 +02:00
|
|
|
</v-flex>
|
2018-07-17 22:49:00 +02:00
|
|
|
<v-flex xs12 sm6 offset-sm3 md4 offset-md4 fill-height v-else class="pa-3">
|
2018-06-27 11:17:38 +02:00
|
|
|
<template v-if="error">
|
|
|
|
<p class="text-xs-center">{{ error }}</p>
|
|
|
|
<p class="text-xs-center">
|
2018-07-11 01:14:54 +02:00
|
|
|
<v-btn role="button" color="blue" dark @click="initializePositionWatching">Retry</v-btn>
|
2018-06-27 11:17:38 +02:00
|
|
|
</p>
|
2018-07-17 22:49:00 +02:00
|
|
|
<p>or</p>
|
|
|
|
<p>
|
|
|
|
<AddressInput label="pick a location manually" :onInput="onManualLocationPicker" v-model="manualLocation"></AddressInput>
|
|
|
|
</p>
|
2018-06-27 11:17:38 +02:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<p class="text-xs-center">{{ $t('geolocation.fetching') }}</p>
|
|
|
|
</template>
|
2018-06-25 18:29:57 +02:00
|
|
|
</v-flex>
|
|
|
|
</v-layout>
|
|
|
|
</v-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2018-06-25 23:57:33 +02:00
|
|
|
import NoSleep from 'nosleep.js';
|
|
|
|
|
2018-07-17 22:49:00 +02:00
|
|
|
import AddressInput from '@/components/AddressInput.vue';
|
2018-06-25 18:29:57 +02:00
|
|
|
import Map from '@/components/Map.vue';
|
2018-07-05 22:40:24 +02:00
|
|
|
import ReportCard from '@/components/ReportCard.vue';
|
2018-06-25 18:29:57 +02:00
|
|
|
import ReportDialog from '@/components/ReportDialog/index.vue';
|
2018-06-27 11:17:38 +02:00
|
|
|
import * as constants from '@/constants';
|
2018-06-26 11:04:23 +02:00
|
|
|
import { distance, mockLocation } from '@/tools';
|
|
|
|
|
2018-06-25 18:29:57 +02:00
|
|
|
export default {
|
|
|
|
components: {
|
2018-07-17 22:49:00 +02:00
|
|
|
AddressInput,
|
2018-06-25 18:29:57 +02:00
|
|
|
Map,
|
2018-07-05 22:40:24 +02:00
|
|
|
ReportCard,
|
2018-06-25 18:29:57 +02:00
|
|
|
ReportDialog,
|
|
|
|
},
|
2018-07-16 17:26:10 +02:00
|
|
|
created() {
|
2018-07-17 16:37:46 +02:00
|
|
|
if (!this.$store.state.hasGoneThroughIntro) {
|
2018-07-16 17:26:10 +02:00
|
|
|
this.$router.replace({ name: 'Onboarding' });
|
2018-07-03 18:09:56 +02:00
|
|
|
}
|
2018-07-16 17:26:10 +02:00
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.disableNoSleep();
|
|
|
|
this.disablePositionWatching();
|
|
|
|
window.removeEventListener('keydown', this.hideReportDialogOnEsc);
|
2018-07-12 17:48:26 +02:00
|
|
|
this.$store.dispatch('hideReportDetails');
|
2018-06-25 18:29:57 +02:00
|
|
|
},
|
2018-06-26 11:04:23 +02:00
|
|
|
computed: {
|
|
|
|
reportsMarkers() {
|
2018-07-05 22:40:24 +02:00
|
|
|
return this.$store.getters.notDismissedReports.map(report => ({
|
2018-06-26 11:04:23 +02:00
|
|
|
id: report.id,
|
2018-06-27 14:59:45 +02:00
|
|
|
type: report.attributes.type,
|
2018-06-26 11:04:23 +02:00
|
|
|
latLng: [report.attributes.lat, report.attributes.lng],
|
|
|
|
}));
|
|
|
|
},
|
2018-07-13 16:50:34 +02:00
|
|
|
reportLatLng() {
|
|
|
|
if (this.dialog && this.reportLat && this.reportLng) {
|
|
|
|
return [this.reportLat, this.reportLng];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
2018-06-26 11:04:23 +02:00
|
|
|
},
|
2018-06-25 18:29:57 +02:00
|
|
|
data() {
|
|
|
|
return {
|
2018-06-27 11:17:38 +02:00
|
|
|
accuracy: null,
|
2018-07-01 22:02:54 +02:00
|
|
|
centering: false,
|
2018-06-25 18:29:57 +02:00
|
|
|
dialog: false,
|
2018-06-27 11:17:38 +02:00
|
|
|
error: null,
|
2018-06-25 18:29:57 +02:00
|
|
|
heading: null,
|
2018-07-01 22:02:54 +02:00
|
|
|
latLng: null,
|
2018-07-17 22:49:00 +02:00
|
|
|
manualLocation: null,
|
2018-06-25 23:57:33 +02:00
|
|
|
noSleep: null,
|
2018-07-09 15:25:18 +02:00
|
|
|
positionHistory: [],
|
2018-06-28 14:40:56 +02:00
|
|
|
reportLat: null,
|
|
|
|
reportLng: null,
|
2018-06-25 18:29:57 +02:00
|
|
|
watchID: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
initializePositionWatching() {
|
2018-06-29 15:09:39 +02:00
|
|
|
this.error = null; // Reset any error
|
2018-06-25 18:29:57 +02:00
|
|
|
this.disablePositionWatching(); // Ensure at most one at the same time
|
|
|
|
|
2018-06-27 11:17:38 +02:00
|
|
|
if (constants.MOCK_LOCATION) {
|
2018-06-26 11:04:23 +02:00
|
|
|
this.setPosition(mockLocation());
|
|
|
|
this.watchID = setInterval(
|
|
|
|
() => this.setPosition(mockLocation()),
|
2018-06-27 11:17:38 +02:00
|
|
|
constants.MOCK_LOCATION_UPDATE_INTERVAL,
|
2018-06-26 11:04:23 +02:00
|
|
|
);
|
2018-06-25 18:29:57 +02:00
|
|
|
} else {
|
2018-06-26 11:04:23 +02:00
|
|
|
if (!('geolocation' in navigator)) {
|
|
|
|
this.error = this.$t('geolocation.unavailable');
|
|
|
|
}
|
|
|
|
|
2018-06-25 18:29:57 +02:00
|
|
|
this.watchID = navigator.geolocation.watchPosition(
|
|
|
|
this.setPosition,
|
|
|
|
this.handlePositionError,
|
|
|
|
{
|
|
|
|
enableHighAccuracy: true,
|
|
|
|
maximumAge: 30000,
|
|
|
|
timeout: 27000,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
disablePositionWatching() {
|
|
|
|
if (this.watchID !== null) {
|
2018-06-27 11:17:38 +02:00
|
|
|
if (constants.MOCK_LOCATION) {
|
2018-06-26 11:04:23 +02:00
|
|
|
clearInterval(this.watchID);
|
|
|
|
} else {
|
|
|
|
navigator.geolocation.clearWatch(this.watchID);
|
|
|
|
}
|
2018-06-25 18:29:57 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
handlePositionError(error) {
|
|
|
|
this.error = `Error ${error.code}: ${error.message}`;
|
|
|
|
},
|
|
|
|
setPosition(position) {
|
2018-07-01 22:02:54 +02:00
|
|
|
if (this.latLng) {
|
2018-06-26 11:04:23 +02:00
|
|
|
const distanceFromPreviousPoint = distance(
|
2018-07-01 22:02:54 +02:00
|
|
|
[this.latLng[0], this.latLng[1]],
|
2018-06-26 11:04:23 +02:00
|
|
|
[position.coords.latitude, position.coords.longitude],
|
|
|
|
);
|
2018-06-27 11:17:38 +02:00
|
|
|
if (distanceFromPreviousPoint > constants.UPDATE_REPORTS_DISTANCE_THRESHOLD) {
|
2018-06-26 11:39:43 +02:00
|
|
|
this.$store.dispatch('fetchReports');
|
2018-06-26 11:04:23 +02:00
|
|
|
}
|
|
|
|
}
|
2018-07-01 22:02:54 +02:00
|
|
|
this.latLng = [position.coords.latitude, position.coords.longitude];
|
2018-07-09 15:25:18 +02:00
|
|
|
this.positionHistory.push(this.latLng);
|
2018-07-09 18:37:55 +02:00
|
|
|
this.heading = null;
|
|
|
|
if (position.coords.heading !== null && !isNaN(position.coords.heading)) {
|
|
|
|
this.heading = position.coords.heading;
|
|
|
|
}
|
2018-06-27 11:17:38 +02:00
|
|
|
this.accuracy = position.coords.accuracy ? position.coords.accuracy : null;
|
2018-06-25 18:29:57 +02:00
|
|
|
},
|
2018-07-16 17:26:10 +02:00
|
|
|
disableNoSleep() {
|
|
|
|
if (this.noSleep) {
|
|
|
|
this.noSleep.disable();
|
|
|
|
}
|
|
|
|
},
|
2018-06-25 23:57:33 +02:00
|
|
|
setNoSleep() {
|
2018-07-17 16:22:18 +02:00
|
|
|
if (this.$store.state.settings.preventSuspend) {
|
2018-07-03 19:01:56 +02:00
|
|
|
this.noSleep = new NoSleep();
|
|
|
|
this.noSleep.enable();
|
|
|
|
}
|
2018-06-25 23:57:33 +02:00
|
|
|
},
|
2018-06-28 14:40:56 +02:00
|
|
|
showReportDialog(latlng) {
|
|
|
|
if (latlng) {
|
|
|
|
this.reportLat = latlng.lat;
|
|
|
|
this.reportLng = latlng.lng;
|
|
|
|
} else {
|
2018-07-01 22:02:54 +02:00
|
|
|
this.reportLat = this.latLng[0];
|
|
|
|
this.reportLng = this.latLng[1];
|
2018-06-28 14:40:56 +02:00
|
|
|
}
|
|
|
|
this.dialog = !this.dialog;
|
|
|
|
},
|
|
|
|
hideReportDialogOnEsc(event) {
|
|
|
|
let isEscape = false;
|
|
|
|
if ('key' in event) {
|
|
|
|
isEscape = (event.key === 'Escape' || event.key === 'Esc');
|
|
|
|
} else {
|
|
|
|
isEscape = (event.keyCode === 27);
|
|
|
|
}
|
|
|
|
if (isEscape) {
|
|
|
|
this.dialog = false;
|
|
|
|
}
|
|
|
|
},
|
2018-07-17 22:49:00 +02:00
|
|
|
onManualLocationPicker(value) {
|
|
|
|
this.latLng = [value.latlng.lat, value.latlng.lng];
|
|
|
|
},
|
2018-07-16 17:26:10 +02:00
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.setNoSleep();
|
|
|
|
this.initializePositionWatching();
|
|
|
|
this.$store.dispatch('fetchReports');
|
|
|
|
window.addEventListener('keydown', this.hideReportDialogOnEsc);
|
2018-06-25 18:29:57 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.no-padding {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style>
|
2018-07-03 18:09:56 +02:00
|
|
|
.v-overlay, .v-dialog__content {
|
2018-06-25 18:29:57 +02:00
|
|
|
z-index: 1002 !important;
|
|
|
|
}
|
2018-07-03 18:09:56 +02:00
|
|
|
|
|
|
|
.overlayButton {
|
|
|
|
z-index: 1000 !important;
|
|
|
|
position: absolute !important;
|
|
|
|
bottom: 24px !important;
|
|
|
|
border-radius: 50% !important;
|
|
|
|
}
|
2018-06-25 18:29:57 +02:00
|
|
|
</style>
|