Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8832028304 | ||
|
|
7cecdb6bde | ||
|
|
39c1f78b20 | ||
|
|
923d9a2c3e | ||
|
|
3abd66001b |
@@ -38,6 +38,7 @@ class HandleInertiaRequests extends Middleware
|
|||||||
'roles' => $request->user()?->getRoleNames() ?? [],
|
'roles' => $request->user()?->getRoleNames() ?? [],
|
||||||
'permissions' => $request->user()?->getAllPermissions()->pluck('name') ?? [],
|
'permissions' => $request->user()?->getAllPermissions()->pluck('name') ?? [],
|
||||||
'apiToken' => session('api_token'),
|
'apiToken' => session('api_token'),
|
||||||
|
'following' => $request->user()?->following()->with('followee')->get()->pluck('followee')->filter()->pluck('name')->toArray() ?? [],
|
||||||
],
|
],
|
||||||
'flash' => [
|
'flash' => [
|
||||||
'success' => $request->session()->get('success'),
|
'success' => $request->session()->get('success'),
|
||||||
|
|||||||
@@ -250,7 +250,7 @@ const legendItems = computed(() => {
|
|||||||
|
|
||||||
<div v-if="mode === 'all'" class="ring-labels">
|
<div v-if="mode === 'all'" class="ring-labels">
|
||||||
<span v-for="(r, i) in normalizedRings" :key="r.name">
|
<span v-for="(r, i) in normalizedRings" :key="r.name">
|
||||||
⚫ {{ i === 0 ? 'Outer' : i === normalizedRings.length - 1 ? 'Inner' : `Ring ${i + 1}` }}
|
{{ i === 0 ? 'Outer' : i === normalizedRings.length - 1 ? 'Inner' : `Ring ${i + 1}` }}
|
||||||
Ring = {{ r.name }}
|
Ring = {{ r.name }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -7,10 +7,9 @@ const props = defineProps<{
|
|||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<DonutChart
|
<DonutChart
|
||||||
title="Flight Scopes"
|
title="Flight Scope"
|
||||||
:height="280"
|
:height="280"
|
||||||
center-mode="count"
|
total-label="Flights"
|
||||||
total-label="Flight Scopes"
|
|
||||||
:labels="flightStats.flightTypes.value.labels"
|
:labels="flightStats.flightTypes.value.labels"
|
||||||
:series="flightStats.flightTypes.value.series"
|
:series="flightStats.flightTypes.value.series"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -23,6 +23,8 @@ const emit = defineEmits<{
|
|||||||
seatTypes: number[]
|
seatTypes: number[]
|
||||||
manufacturers: string[]
|
manufacturers: string[]
|
||||||
aircraftModels: number[]
|
aircraftModels: number[]
|
||||||
|
engineTypes: string[]
|
||||||
|
engineCounts: number[]
|
||||||
airportRegions: number[]
|
airportRegions: number[]
|
||||||
otherUsers: string[]
|
otherUsers: string[]
|
||||||
}]
|
}]
|
||||||
@@ -62,6 +64,8 @@ function buildOptions(flights: Flight[]) {
|
|||||||
const regionRanges = new Set<RegionRange>()
|
const regionRanges = new Set<RegionRange>()
|
||||||
const manufacturers = new Map<string, { name: string }>()
|
const manufacturers = new Map<string, { name: string }>()
|
||||||
const aircraftModels = new Map<number, { id: number; name: string }>()
|
const aircraftModels = new Map<number, { id: number; name: string }>()
|
||||||
|
const engineTypes = new Map<string, { name: string }>()
|
||||||
|
const engineCounts = new Map<number, { count: number }>()
|
||||||
const airportRegions = new Map<number, { id: number; name: string; countryCodes: Set<string> }>()
|
const airportRegions = new Map<number, { id: number; name: string; countryCodes: Set<string> }>()
|
||||||
const otherUsers = new Set<string>()
|
const otherUsers = new Set<string>()
|
||||||
|
|
||||||
@@ -120,6 +124,12 @@ function buildOptions(flights: Flight[]) {
|
|||||||
if (f.aircraft?.id != null && f.aircraft?.display_name_short)
|
if (f.aircraft?.id != null && f.aircraft?.display_name_short)
|
||||||
aircraftModels.set(f.aircraft.id, { id: f.aircraft.id, name: f.aircraft.display_name_short })
|
aircraftModels.set(f.aircraft.id, { id: f.aircraft.id, name: f.aircraft.display_name_short })
|
||||||
|
|
||||||
|
if (f.aircraft?.engine_type)
|
||||||
|
engineTypes.set(f.aircraft.engine_type, { name: f.aircraft.engine_type })
|
||||||
|
|
||||||
|
if (f.aircraft?.engine_count != null)
|
||||||
|
engineCounts.set(f.aircraft.engine_count, { count: f.aircraft.engine_count })
|
||||||
|
|
||||||
flightScopes.add(f.scope)
|
flightScopes.add(f.scope)
|
||||||
flightRanges.add(f.range)
|
flightRanges.add(f.range)
|
||||||
regionRanges.add(f.region_range)
|
regionRanges.add(f.region_range)
|
||||||
@@ -144,6 +154,8 @@ function buildOptions(flights: Flight[]) {
|
|||||||
regionRanges: regionRangeOrder.filter(r => regionRanges.has(r)).map(r => ({ value: r, label: REGION_RANGE_LABELS[r] })),
|
regionRanges: regionRangeOrder.filter(r => regionRanges.has(r)).map(r => ({ value: r, label: REGION_RANGE_LABELS[r] })),
|
||||||
manufacturers: [...manufacturers.values()].sort((a, b) => a.name.localeCompare(b.name)),
|
manufacturers: [...manufacturers.values()].sort((a, b) => a.name.localeCompare(b.name)),
|
||||||
aircraftModels: [...aircraftModels.values()].sort((a, b) => a.name.localeCompare(b.name)),
|
aircraftModels: [...aircraftModels.values()].sort((a, b) => a.name.localeCompare(b.name)),
|
||||||
|
engineTypes: [...engineTypes.values()].sort((a, b) => a.name.localeCompare(b.name)),
|
||||||
|
engineCounts: [...engineCounts.values()].sort((a, b) => a.count - b.count),
|
||||||
airportRegions: [...airportRegions.values()].sort((a, b) => a.name.localeCompare(b.name)),
|
airportRegions: [...airportRegions.values()].sort((a, b) => a.name.localeCompare(b.name)),
|
||||||
otherUsers: [...otherUsers].sort((a, b) => a.localeCompare(b)),
|
otherUsers: [...otherUsers].sort((a, b) => a.localeCompare(b)),
|
||||||
}
|
}
|
||||||
@@ -167,6 +179,8 @@ const selectedFlightReasons = ref<number[]>([])
|
|||||||
const selectedSeatTypes = ref<number[]>([])
|
const selectedSeatTypes = ref<number[]>([])
|
||||||
const selectedManufacturers = ref<string[]>([])
|
const selectedManufacturers = ref<string[]>([])
|
||||||
const selectedAircraftModels = ref<number[]>([])
|
const selectedAircraftModels = ref<number[]>([])
|
||||||
|
const selectedEngineTypes = ref<string[]>([])
|
||||||
|
const selectedEngineCounts = ref<number[]>([])
|
||||||
const selectedAirportRegions = ref<number[]>([])
|
const selectedAirportRegions = ref<number[]>([])
|
||||||
const selectedOtherUsers = ref<string[]>([])
|
const selectedOtherUsers = ref<string[]>([])
|
||||||
|
|
||||||
@@ -197,6 +211,8 @@ function emitFilters() {
|
|||||||
seatTypes: selectedSeatTypes.value,
|
seatTypes: selectedSeatTypes.value,
|
||||||
manufacturers: selectedManufacturers.value,
|
manufacturers: selectedManufacturers.value,
|
||||||
aircraftModels: selectedAircraftModels.value,
|
aircraftModels: selectedAircraftModels.value,
|
||||||
|
engineTypes: selectedEngineTypes.value,
|
||||||
|
engineCounts: selectedEngineCounts.value,
|
||||||
airportRegions: selectedAirportRegions.value,
|
airportRegions: selectedAirportRegions.value,
|
||||||
otherUsers: selectedOtherUsers.value,
|
otherUsers: selectedOtherUsers.value,
|
||||||
})
|
})
|
||||||
@@ -496,6 +512,42 @@ const countryFlagClass = (code: string) =>
|
|||||||
</template>
|
</template>
|
||||||
</v-select>
|
</v-select>
|
||||||
|
|
||||||
|
<v-select
|
||||||
|
v-if="availableOptions.engineTypes.length > 0"
|
||||||
|
v-model="selectedEngineTypes"
|
||||||
|
:items="availableOptions.engineTypes"
|
||||||
|
item-title="name" item-value="name"
|
||||||
|
label="Engine Type"
|
||||||
|
multiple clearable hide-details
|
||||||
|
density="compact" variant="outlined"
|
||||||
|
@update:model-value="emitFilters"
|
||||||
|
>
|
||||||
|
<template #selection="{ item, index }">
|
||||||
|
<span v-if="index < 2" class="v-select__selection-text">
|
||||||
|
{{ (item as any).name }}<span v-if="index < Math.min(selectedEngineTypes.length, 2) - 1">, </span>
|
||||||
|
</span>
|
||||||
|
<span v-if="index === 2" class="text-caption text-medium-emphasis">+{{ selectedEngineTypes.length - 2 }}</span>
|
||||||
|
</template>
|
||||||
|
</v-select>
|
||||||
|
|
||||||
|
<v-select
|
||||||
|
v-if="availableOptions.engineCounts.length > 0"
|
||||||
|
v-model="selectedEngineCounts"
|
||||||
|
:items="availableOptions.engineCounts"
|
||||||
|
item-title="count" item-value="count"
|
||||||
|
label="Engine Count"
|
||||||
|
multiple clearable hide-details
|
||||||
|
density="compact" variant="outlined"
|
||||||
|
@update:model-value="emitFilters"
|
||||||
|
>
|
||||||
|
<template #selection="{ item, index }">
|
||||||
|
<span v-if="index < 2" class="v-select__selection-text">
|
||||||
|
{{ (item as any).count }}<span v-if="index < Math.min(selectedEngineCounts.length, 2) - 1">, </span>
|
||||||
|
</span>
|
||||||
|
<span v-if="index === 2" class="text-caption text-medium-emphasis">+{{ selectedEngineCounts.length - 2 }}</span>
|
||||||
|
</template>
|
||||||
|
</v-select>
|
||||||
|
|
||||||
<v-select
|
<v-select
|
||||||
v-if="availableOptions.crewTypes.length > 0"
|
v-if="availableOptions.crewTypes.length > 0"
|
||||||
v-model="selectedCrewTypes"
|
v-model="selectedCrewTypes"
|
||||||
|
|||||||
@@ -659,7 +659,9 @@ export default defineComponent({
|
|||||||
|
|
||||||
const fitBounds = (): void => {
|
const fitBounds = (): void => {
|
||||||
if (!props.flights.length) return
|
if (!props.flights.length) return
|
||||||
const padding = props.compact ? 50 : 60
|
const padding = props.compact
|
||||||
|
? { top: 20, bottom: 20, left: 55, right: 55 }
|
||||||
|
: { top: 60, bottom: 60, left: 60, right: 60 }
|
||||||
|
|
||||||
const lngs = props.flights.flatMap(f => [f.departure_airport.longitude_deg, f.arrival_airport.longitude_deg])
|
const lngs = props.flights.flatMap(f => [f.departure_airport.longitude_deg, f.arrival_airport.longitude_deg])
|
||||||
const lats = props.flights.flatMap(f => [f.departure_airport.latitude_deg, f.arrival_airport.latitude_deg])
|
const lats = props.flights.flatMap(f => [f.departure_airport.latitude_deg, f.arrival_airport.latitude_deg])
|
||||||
|
|||||||
@@ -0,0 +1,46 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { usePage, router } from "@inertiajs/vue3";
|
||||||
|
import { SharedProps } from "@/Types/types";
|
||||||
|
|
||||||
|
const props = withDefaults(
|
||||||
|
defineProps<{
|
||||||
|
redirectRoute: string;
|
||||||
|
routeParams?: Record<string, string | number>;
|
||||||
|
placeholder?: string;
|
||||||
|
}>(),
|
||||||
|
{
|
||||||
|
routeParams: () => ({}),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const page = usePage<SharedProps>().props;
|
||||||
|
const following = [...page.auth?.following ?? [], page.auth?.user?.name]
|
||||||
|
.filter((x, i, a) => a.indexOf(x) === i);
|
||||||
|
|
||||||
|
function onUpdate(user: string) {
|
||||||
|
if (!user) return;
|
||||||
|
|
||||||
|
router.get(
|
||||||
|
route(props.redirectRoute, {
|
||||||
|
user,
|
||||||
|
...props.routeParams,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
|
||||||
|
<VSelect
|
||||||
|
v-if="following.length > 1"
|
||||||
|
:placeholder="placeholder"
|
||||||
|
variant="outlined"
|
||||||
|
density="comfortable"
|
||||||
|
:items="following"
|
||||||
|
@update:model-value="onUpdate"
|
||||||
|
>
|
||||||
|
</VSelect>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
||||||
@@ -25,5 +25,4 @@ defineProps<{
|
|||||||
background-size: cover;
|
background-size: cover;
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ export function getCountries(flights: Flight[], upcomingFlights: Flight[]) {
|
|||||||
const result = {
|
const result = {
|
||||||
countries: sorted,
|
countries: sorted,
|
||||||
series: [
|
series: [
|
||||||
{ name: 'Departed', data: sorted.map(s => s.past) },
|
{ name: 'Flown', data: sorted.map(s => s.past) },
|
||||||
{ name: 'Upcoming', data: sorted.map(s => s.upcoming) },
|
{ name: 'Upcoming', data: sorted.map(s => s.upcoming) },
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import {useFlights} from "@/Composables/useFlights";
|
|||||||
import InlineBadge from "@/Components/FlightsGoneBy/InlineBadge.vue";
|
import InlineBadge from "@/Components/FlightsGoneBy/InlineBadge.vue";
|
||||||
import GlassTooltip from "@/Components/FlightsGoneBy/GlassTooltip.vue";
|
import GlassTooltip from "@/Components/FlightsGoneBy/GlassTooltip.vue";
|
||||||
import ButtonLink from "@/Components/FlightsGoneBy/ButtonLink.vue";
|
import ButtonLink from "@/Components/FlightsGoneBy/ButtonLink.vue";
|
||||||
|
import FollowingSelectBox from "@/Components/FlightsGoneBy/FollowingSelectBox.vue";
|
||||||
|
|
||||||
defineOptions({ layout: MainLayout })
|
defineOptions({ layout: MainLayout })
|
||||||
|
|
||||||
@@ -119,6 +120,12 @@ const unlocked = computed(() => {
|
|||||||
:families="aircraft_families"
|
:families="aircraft_families"
|
||||||
:major-alliances="majorAlliances"
|
:major-alliances="majorAlliances"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<FollowingSelectBox
|
||||||
|
redirect-route="profile.achievement"
|
||||||
|
:route-params="{ achievement: achievement.internal_name }"
|
||||||
|
placeholder="View the Progress of Someone You Follow"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ProfileLayout>
|
</ProfileLayout>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import MainLayout from "@/Layouts/MainLayout.vue";
|
|||||||
import Panel from "@/Components/FlightsGoneBy/Panels/Panel.vue";
|
import Panel from "@/Components/FlightsGoneBy/Panels/Panel.vue";
|
||||||
import PanelHeader from "@/Components/FlightsGoneBy/Panels/PanelHeader.vue";
|
import PanelHeader from "@/Components/FlightsGoneBy/Panels/PanelHeader.vue";
|
||||||
import {useUpdateSetting} from "@/Composables/useUpdateSetting";
|
import {useUpdateSetting} from "@/Composables/useUpdateSetting";
|
||||||
|
import FollowingSelectBox from "@/Components/FlightsGoneBy/FollowingSelectBox.vue";
|
||||||
|
|
||||||
const {updateSetting} = useUpdateSetting()
|
const {updateSetting} = useUpdateSetting()
|
||||||
|
|
||||||
@@ -121,6 +122,8 @@ const filteredUnlockedCount = computed(() =>
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</Panel>
|
</Panel>
|
||||||
|
|
||||||
|
<FollowingSelectBox redirect-route="profile.achievements" placeholder="View The Achievements of Someone You Follow" />
|
||||||
</div>
|
</div>
|
||||||
</ProfileLayout>
|
</ProfileLayout>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -56,6 +56,8 @@ const selectedFlightReasons = ref<number[]>([])
|
|||||||
const selectedSeatTypes = ref<number[]>([])
|
const selectedSeatTypes = ref<number[]>([])
|
||||||
const selectedManufacturers = ref<string[]>([])
|
const selectedManufacturers = ref<string[]>([])
|
||||||
const selectedAircraftModels = ref<number[]>([])
|
const selectedAircraftModels = ref<number[]>([])
|
||||||
|
const selectedEngineTypes = ref<string[]>([])
|
||||||
|
const selectedEngineCounts = ref<number[]>([])
|
||||||
const selectedAirportRegions = ref<number[]>([])
|
const selectedAirportRegions = ref<number[]>([])
|
||||||
const selectedOtherUsers = ref<string[]>([])
|
const selectedOtherUsers = ref<string[]>([])
|
||||||
|
|
||||||
@@ -74,6 +76,8 @@ const activeFilterCount = computed(() =>
|
|||||||
selectedSeatTypes.value.length +
|
selectedSeatTypes.value.length +
|
||||||
selectedManufacturers.value.length +
|
selectedManufacturers.value.length +
|
||||||
selectedAircraftModels.value.length +
|
selectedAircraftModels.value.length +
|
||||||
|
selectedEngineTypes.value.length +
|
||||||
|
selectedEngineCounts.value.length +
|
||||||
selectedAirportRegions.value.length +
|
selectedAirportRegions.value.length +
|
||||||
selectedOtherUsers.value.length
|
selectedOtherUsers.value.length
|
||||||
)
|
)
|
||||||
@@ -93,6 +97,8 @@ function onFiltersChange(filters: {
|
|||||||
seatTypes: number[]
|
seatTypes: number[]
|
||||||
manufacturers: string[]
|
manufacturers: string[]
|
||||||
aircraftModels: number[]
|
aircraftModels: number[]
|
||||||
|
engineTypes: string[]
|
||||||
|
engineCounts: number[]
|
||||||
airportRegions: number[]
|
airportRegions: number[]
|
||||||
otherUsers: string[]
|
otherUsers: string[]
|
||||||
}) {
|
}) {
|
||||||
@@ -111,6 +117,8 @@ function onFiltersChange(filters: {
|
|||||||
selectedSeatTypes.value = filters.seatTypes
|
selectedSeatTypes.value = filters.seatTypes
|
||||||
selectedManufacturers.value = filters.manufacturers
|
selectedManufacturers.value = filters.manufacturers
|
||||||
selectedAircraftModels.value = filters.aircraftModels
|
selectedAircraftModels.value = filters.aircraftModels
|
||||||
|
selectedEngineTypes.value = filters.engineTypes
|
||||||
|
selectedEngineCounts.value = filters.engineCounts
|
||||||
selectedAirportRegions.value = filters.airportRegions
|
selectedAirportRegions.value = filters.airportRegions
|
||||||
selectedOtherUsers.value = filters.otherUsers
|
selectedOtherUsers.value = filters.otherUsers
|
||||||
}
|
}
|
||||||
@@ -141,6 +149,8 @@ function matchesFilters(f: Flight): boolean {
|
|||||||
if (selectedSeatTypes.value.length && !selectedSeatTypes.value.includes(f.seat_type?.id ?? -1)) return false
|
if (selectedSeatTypes.value.length && !selectedSeatTypes.value.includes(f.seat_type?.id ?? -1)) return false
|
||||||
if (selectedManufacturers.value.length && !selectedManufacturers.value.includes(f.aircraft?.manufacturer_code ?? '')) return false
|
if (selectedManufacturers.value.length && !selectedManufacturers.value.includes(f.aircraft?.manufacturer_code ?? '')) return false
|
||||||
if (selectedAircraftModels.value.length && !selectedAircraftModels.value.includes(f.aircraft?.id ?? -1)) return false
|
if (selectedAircraftModels.value.length && !selectedAircraftModels.value.includes(f.aircraft?.id ?? -1)) return false
|
||||||
|
if (selectedEngineTypes.value.length && !selectedEngineTypes.value.includes(f.aircraft?.engine_type ?? '')) return false
|
||||||
|
if (selectedEngineCounts.value.length && !selectedEngineCounts.value.includes(f.aircraft?.engine_count ?? -1)) return false
|
||||||
if (selectedAirportRegions.value.length) {
|
if (selectedAirportRegions.value.length) {
|
||||||
const depRegion = f.departure_airport.region?.id
|
const depRegion = f.departure_airport.region?.id
|
||||||
const arrRegion = f.arrival_airport.region?.id
|
const arrRegion = f.arrival_airport.region?.id
|
||||||
|
|||||||
Vendored
+1
@@ -101,6 +101,7 @@ export type SharedProps = import('@inertiajs/core').PageProps & {
|
|||||||
roles: string[];
|
roles: string[];
|
||||||
permissions: string[];
|
permissions: string[];
|
||||||
apiToken: string | null;
|
apiToken: string | null;
|
||||||
|
following: string[];
|
||||||
},
|
},
|
||||||
flash: {
|
flash: {
|
||||||
success?: string;
|
success?: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user