mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-09 08:47:11 -05:00
* fix: move foreman to global gems to fix startup crash (#1971) * Update exporting code to stream points data to file in batches to red… (#1980) * Update exporting code to stream points data to file in batches to reduce memory usage * Update changelog * Update changelog * Feature/maplibre frontend (#1953) * Add a plan to use MapLibre GL JS for the frontend map rendering, replacing Leaflet * Implement phase 1 * Phases 1-3 + part of 4 * Fix e2e tests * Phase 6 * Implement fog of war * Phase 7 * Next step: fix specs, phase 7 done * Use our own map tiles * Extract v2 map logic to separate manager classes * Update settings panel on v2 map * Update v2 e2e tests structure * Reimplement location search in maps v2 * Update speed routes * Implement visits and places creation in v2 * Fix last failing test * Implement visits merging * Fix a routes e2e test and simplify the routes layer styling. * Extract js to modules from maps_v2_controller.js * Implement area creation * Fix spec problem * Fix some e2e tests * Implement live mode in v2 map * Update icons and panel * Extract some styles * Remove unused file * Start adding dark theme to popups on MapLibre maps * Make popups respect dark theme * Move v2 maps to maplibre namespace * Update v2 references to maplibre * Put place, area and visit info into side panel * Update API to use safe settings config method * Fix specs * Fix method name to config in SafeSettings and update usages accordingly * Add missing public files * Add handling for real time points * Fix remembering enabled/disabled layers of the v2 map * Fix lots of e2e tests * Add settings to select map version * Use maps/v2 as main path for MapLibre maps * Update routing * Update live mode * Update maplibre controller * Update changelog * Remove some console.log statements * Pull only necessary data for map v2 points * Feature/raw data archive (#2009) * 0.36.2 (#2007) * fix: move foreman to global gems to fix startup crash (#1971) * Update exporting code to stream points data to file in batches to red… (#1980) * Update exporting code to stream points data to file in batches to reduce memory usage * Update changelog * Update changelog * Feature/maplibre frontend (#1953) * Add a plan to use MapLibre GL JS for the frontend map rendering, replacing Leaflet * Implement phase 1 * Phases 1-3 + part of 4 * Fix e2e tests * Phase 6 * Implement fog of war * Phase 7 * Next step: fix specs, phase 7 done * Use our own map tiles * Extract v2 map logic to separate manager classes * Update settings panel on v2 map * Update v2 e2e tests structure * Reimplement location search in maps v2 * Update speed routes * Implement visits and places creation in v2 * Fix last failing test * Implement visits merging * Fix a routes e2e test and simplify the routes layer styling. * Extract js to modules from maps_v2_controller.js * Implement area creation * Fix spec problem * Fix some e2e tests * Implement live mode in v2 map * Update icons and panel * Extract some styles * Remove unused file * Start adding dark theme to popups on MapLibre maps * Make popups respect dark theme * Move v2 maps to maplibre namespace * Update v2 references to maplibre * Put place, area and visit info into side panel * Update API to use safe settings config method * Fix specs * Fix method name to config in SafeSettings and update usages accordingly * Add missing public files * Add handling for real time points * Fix remembering enabled/disabled layers of the v2 map * Fix lots of e2e tests * Add settings to select map version * Use maps/v2 as main path for MapLibre maps * Update routing * Update live mode * Update maplibre controller * Update changelog * Remove some console.log statements --------- Co-authored-by: Robin Tuszik <mail@robin.gg> * Remove esbuild scripts from package.json * Remove sideEffects field from package.json * Raw data archivation * Add tests * Fix tests * Fix tests * Update ExceptionReporter * Add schedule to run raw data archival job monthly * Change file structure for raw data archival feature * Update changelog and version for raw data archival feature --------- Co-authored-by: Robin Tuszik <mail@robin.gg> * Set raw_data to an empty hash instead of nil when archiving * Fix storage configuration and file extraction * Consider MIN_MINUTES_SPENT_IN_CITY during stats calculation (#2018) * Consider MIN_MINUTES_SPENT_IN_CITY during stats calculation * Remove raw data from visited cities api endpoint * Use user timezone to show dates on maps (#2020) * Fix/pre epoch time (#2019) * Use user timezone to show dates on maps * Limit timestamps to valid range to prevent database errors when users enter pre-epoch dates. * Limit timestamps to valid range to prevent database errors when users enter pre-epoch dates. * Fix tests failing due to new index on stats table * Fix failing specs * Update redis client configuration to support unix socket connection * Update changelog * Fix kml kmz import issues (#2023) * Fix kml kmz import issues * Refactor KML importer to improve readability and maintainability * Implement moving points in map v2 and fix route rendering logic to ma… (#2027) * Implement moving points in map v2 and fix route rendering logic to match map v1. * Fix route spec * fix(maplibre): update date format to ISO 8601 (#2029) * Add verification step to raw data archival process (#2028) * Add verification step to raw data archival process * Add actual verification of raw data archives after creation, and only clear raw_data for verified archives. * Fix failing specs * Eliminate zip-bomb risk * Fix potential memory leak in js * Return .keep files * Use Toast instead of alert for notifications * Add help section to navbar dropdown * Update changelog * Remove raw_data_archival_job * Ensure file is being closed properly after reading in Archivable concern --------- Co-authored-by: Robin Tuszik <mail@robin.gg>
544 lines
17 KiB
JavaScript
544 lines
17 KiB
JavaScript
import { Controller } from '@hotwired/stimulus'
|
|
import { ApiClient } from 'maps_maplibre/services/api_client'
|
|
import { SettingsManager } from 'maps_maplibre/utils/settings_manager'
|
|
import { SearchManager } from 'maps_maplibre/utils/search_manager'
|
|
import { Toast } from 'maps_maplibre/components/toast'
|
|
import { performanceMonitor } from 'maps_maplibre/utils/performance_monitor'
|
|
import { CleanupHelper } from 'maps_maplibre/utils/cleanup_helper'
|
|
import { MapInitializer } from './maplibre/map_initializer'
|
|
import { MapDataManager } from './maplibre/map_data_manager'
|
|
import { LayerManager } from './maplibre/layer_manager'
|
|
import { DataLoader } from './maplibre/data_loader'
|
|
import { EventHandlers } from './maplibre/event_handlers'
|
|
import { FilterManager } from './maplibre/filter_manager'
|
|
import { DateManager } from './maplibre/date_manager'
|
|
import { SettingsController } from './maplibre/settings_manager'
|
|
import { AreaSelectionManager } from './maplibre/area_selection_manager'
|
|
import { VisitsManager } from './maplibre/visits_manager'
|
|
import { PlacesManager } from './maplibre/places_manager'
|
|
import { RoutesManager } from './maplibre/routes_manager'
|
|
|
|
/**
|
|
* Main map controller for Maps V2
|
|
* Coordinates between different managers and handles UI interactions
|
|
*/
|
|
export default class extends Controller {
|
|
static values = {
|
|
apiKey: String,
|
|
startDate: String,
|
|
endDate: String,
|
|
timezone: String
|
|
}
|
|
|
|
static targets = [
|
|
'container',
|
|
'loading',
|
|
'loadingText',
|
|
'monthSelect',
|
|
'clusterToggle',
|
|
'settingsPanel',
|
|
'visitsSearch',
|
|
'routeOpacityRange',
|
|
'placesFilters',
|
|
'enableAllPlaceTagsToggle',
|
|
'fogRadiusValue',
|
|
'fogThresholdValue',
|
|
'metersBetweenValue',
|
|
'minutesBetweenValue',
|
|
// Search
|
|
'searchInput',
|
|
'searchResults',
|
|
// Layer toggles
|
|
'pointsToggle',
|
|
'routesToggle',
|
|
'heatmapToggle',
|
|
'visitsToggle',
|
|
'photosToggle',
|
|
'areasToggle',
|
|
'placesToggle',
|
|
'fogToggle',
|
|
'scratchToggle',
|
|
// Speed-colored routes
|
|
'routesOptions',
|
|
'speedColoredToggle',
|
|
'speedColorScaleContainer',
|
|
'speedColorScaleInput',
|
|
// Area selection
|
|
'selectAreaButton',
|
|
'selectionActions',
|
|
'deleteButtonText',
|
|
'selectedVisitsContainer',
|
|
'selectedVisitsBulkActions',
|
|
// Info display
|
|
'infoDisplay',
|
|
'infoTitle',
|
|
'infoContent',
|
|
'infoActions'
|
|
]
|
|
|
|
async connect() {
|
|
this.cleanup = new CleanupHelper()
|
|
|
|
// Initialize API and settings
|
|
SettingsManager.initialize(this.apiKeyValue)
|
|
this.settingsController = new SettingsController(this)
|
|
await this.settingsController.loadSettings()
|
|
this.settings = this.settingsController.settings
|
|
|
|
// Sync toggle states with loaded settings
|
|
this.settingsController.syncToggleStates()
|
|
|
|
await this.initializeMap()
|
|
this.initializeAPI()
|
|
|
|
// Initialize managers
|
|
this.layerManager = new LayerManager(this.map, this.settings, this.api)
|
|
this.dataLoader = new DataLoader(this.api, this.apiKeyValue, this.settings)
|
|
this.eventHandlers = new EventHandlers(this.map, this)
|
|
this.filterManager = new FilterManager(this.dataLoader)
|
|
this.mapDataManager = new MapDataManager(this)
|
|
|
|
// Initialize feature managers
|
|
this.areaSelectionManager = new AreaSelectionManager(this)
|
|
this.visitsManager = new VisitsManager(this)
|
|
this.placesManager = new PlacesManager(this)
|
|
this.routesManager = new RoutesManager(this)
|
|
|
|
// Initialize search manager
|
|
this.initializeSearch()
|
|
|
|
// Listen for visit and place creation/update events
|
|
this.boundHandleVisitCreated = this.visitsManager.handleVisitCreated.bind(this.visitsManager)
|
|
this.cleanup.addEventListener(document, 'visit:created', this.boundHandleVisitCreated)
|
|
|
|
this.boundHandleVisitUpdated = this.visitsManager.handleVisitUpdated.bind(this.visitsManager)
|
|
this.cleanup.addEventListener(document, 'visit:updated', this.boundHandleVisitUpdated)
|
|
|
|
this.boundHandlePlaceCreated = this.placesManager.handlePlaceCreated.bind(this.placesManager)
|
|
this.cleanup.addEventListener(document, 'place:created', this.boundHandlePlaceCreated)
|
|
|
|
this.boundHandlePlaceUpdated = this.placesManager.handlePlaceUpdated.bind(this.placesManager)
|
|
this.cleanup.addEventListener(document, 'place:updated', this.boundHandlePlaceUpdated)
|
|
|
|
this.boundHandleAreaCreated = this.handleAreaCreated.bind(this)
|
|
this.cleanup.addEventListener(document, 'area:created', this.boundHandleAreaCreated)
|
|
|
|
// Format initial dates
|
|
this.startDateValue = DateManager.formatDateForAPI(new Date(this.startDateValue))
|
|
this.endDateValue = DateManager.formatDateForAPI(new Date(this.endDateValue))
|
|
console.log('[Maps V2] Initial dates:', this.startDateValue, 'to', this.endDateValue)
|
|
|
|
this.loadMapData()
|
|
}
|
|
|
|
disconnect() {
|
|
this.searchManager?.destroy()
|
|
this.cleanup.cleanup()
|
|
this.map?.remove()
|
|
performanceMonitor.logReport()
|
|
}
|
|
|
|
/**
|
|
* Initialize MapLibre map
|
|
*/
|
|
async initializeMap() {
|
|
this.map = await MapInitializer.initialize(this.containerTarget, {
|
|
mapStyle: this.settings.mapStyle
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Initialize API client
|
|
*/
|
|
initializeAPI() {
|
|
this.api = new ApiClient(this.apiKeyValue)
|
|
}
|
|
|
|
/**
|
|
* Initialize location search
|
|
*/
|
|
initializeSearch() {
|
|
if (!this.hasSearchInputTarget || !this.hasSearchResultsTarget) {
|
|
console.warn('[Maps V2] Search targets not found, search functionality disabled')
|
|
return
|
|
}
|
|
|
|
this.searchManager = new SearchManager(this.map, this.apiKeyValue)
|
|
this.searchManager.initialize(this.searchInputTarget, this.searchResultsTarget)
|
|
|
|
console.log('[Maps V2] Search manager initialized')
|
|
}
|
|
|
|
/**
|
|
* Load map data from API
|
|
*/
|
|
async loadMapData(options = {}) {
|
|
return this.mapDataManager.loadMapData(
|
|
this.startDateValue,
|
|
this.endDateValue,
|
|
{
|
|
...options,
|
|
onProgress: this.updateLoadingProgress.bind(this)
|
|
}
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Month selector changed
|
|
*/
|
|
monthChanged(event) {
|
|
const { startDate, endDate } = DateManager.parseMonthSelector(event.target.value)
|
|
this.startDateValue = startDate
|
|
this.endDateValue = endDate
|
|
|
|
console.log('[Maps V2] Date range changed:', this.startDateValue, 'to', this.endDateValue)
|
|
this.loadMapData()
|
|
}
|
|
|
|
/**
|
|
* Show loading indicator
|
|
*/
|
|
showLoading() {
|
|
this.loadingTarget.classList.remove('hidden')
|
|
}
|
|
|
|
/**
|
|
* Hide loading indicator
|
|
*/
|
|
hideLoading() {
|
|
this.loadingTarget.classList.add('hidden')
|
|
}
|
|
|
|
/**
|
|
* Update loading progress
|
|
*/
|
|
updateLoadingProgress({ loaded, totalPages, progress }) {
|
|
if (this.hasLoadingTextTarget) {
|
|
const percentage = Math.round(progress * 100)
|
|
this.loadingTextTarget.textContent = `Loading... ${percentage}%`
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Toggle settings panel
|
|
*/
|
|
toggleSettings() {
|
|
if (this.hasSettingsPanelTarget) {
|
|
this.settingsPanelTarget.classList.toggle('open')
|
|
}
|
|
}
|
|
|
|
// ===== Delegated Methods to Managers =====
|
|
|
|
// Settings Controller methods
|
|
updateMapStyle(event) { return this.settingsController.updateMapStyle(event) }
|
|
resetSettings() { return this.settingsController.resetSettings() }
|
|
updateRouteOpacity(event) { return this.settingsController.updateRouteOpacity(event) }
|
|
updateAdvancedSettings(event) { return this.settingsController.updateAdvancedSettings(event) }
|
|
updateFogRadiusDisplay(event) { return this.settingsController.updateFogRadiusDisplay(event) }
|
|
updateFogThresholdDisplay(event) { return this.settingsController.updateFogThresholdDisplay(event) }
|
|
updateMetersBetweenDisplay(event) { return this.settingsController.updateMetersBetweenDisplay(event) }
|
|
updateMinutesBetweenDisplay(event) { return this.settingsController.updateMinutesBetweenDisplay(event) }
|
|
|
|
// Area Selection Manager methods
|
|
startSelectArea() { return this.areaSelectionManager.startSelectArea() }
|
|
cancelAreaSelection() { return this.areaSelectionManager.cancelAreaSelection() }
|
|
deleteSelectedPoints() { return this.areaSelectionManager.deleteSelectedPoints() }
|
|
|
|
// Visits Manager methods
|
|
toggleVisits(event) { return this.visitsManager.toggleVisits(event) }
|
|
searchVisits(event) { return this.visitsManager.searchVisits(event) }
|
|
filterVisits(event) { return this.visitsManager.filterVisits(event) }
|
|
startCreateVisit() { return this.visitsManager.startCreateVisit() }
|
|
|
|
// Places Manager methods
|
|
togglePlaces(event) { return this.placesManager.togglePlaces(event) }
|
|
filterPlacesByTags(event) { return this.placesManager.filterPlacesByTags(event) }
|
|
toggleAllPlaceTags(event) { return this.placesManager.toggleAllPlaceTags(event) }
|
|
startCreatePlace() { return this.placesManager.startCreatePlace() }
|
|
|
|
// Area creation
|
|
startCreateArea() {
|
|
console.log('[Maps V2] Starting create area mode')
|
|
|
|
if (this.hasSettingsPanelTarget && this.settingsPanelTarget.classList.contains('open')) {
|
|
this.toggleSettings()
|
|
}
|
|
|
|
// Find area drawer controller on the same element
|
|
const drawerController = this.application.getControllerForElementAndIdentifier(
|
|
this.element,
|
|
'area-drawer'
|
|
)
|
|
|
|
if (drawerController) {
|
|
console.log('[Maps V2] Area drawer controller found, starting drawing with map:', this.map)
|
|
drawerController.startDrawing(this.map)
|
|
} else {
|
|
console.error('[Maps V2] Area drawer controller not found')
|
|
Toast.error('Area drawer controller not available')
|
|
}
|
|
}
|
|
|
|
async handleAreaCreated(event) {
|
|
console.log('[Maps V2] Area created:', event.detail.area)
|
|
|
|
try {
|
|
// Fetch all areas from API
|
|
const areas = await this.api.fetchAreas()
|
|
console.log('[Maps V2] Fetched areas:', areas.length)
|
|
|
|
// Convert to GeoJSON
|
|
const areasGeoJSON = this.dataLoader.areasToGeoJSON(areas)
|
|
console.log('[Maps V2] Converted to GeoJSON:', areasGeoJSON.features.length, 'features')
|
|
if (areasGeoJSON.features.length > 0) {
|
|
console.log('[Maps V2] First area GeoJSON:', JSON.stringify(areasGeoJSON.features[0], null, 2))
|
|
}
|
|
|
|
// Get or create the areas layer
|
|
let areasLayer = this.layerManager.getLayer('areas')
|
|
console.log('[Maps V2] Areas layer exists?', !!areasLayer, 'visible?', areasLayer?.visible)
|
|
|
|
if (areasLayer) {
|
|
// Update existing layer
|
|
areasLayer.update(areasGeoJSON)
|
|
console.log('[Maps V2] Areas layer updated')
|
|
} else {
|
|
// Create the layer if it doesn't exist yet
|
|
console.log('[Maps V2] Creating areas layer')
|
|
this.layerManager._addAreasLayer(areasGeoJSON)
|
|
areasLayer = this.layerManager.getLayer('areas')
|
|
console.log('[Maps V2] Areas layer created, visible?', areasLayer?.visible)
|
|
}
|
|
|
|
// Enable the layer if it wasn't already
|
|
if (areasLayer) {
|
|
if (!areasLayer.visible) {
|
|
console.log('[Maps V2] Showing areas layer')
|
|
areasLayer.show()
|
|
this.settings.layers.areas = true
|
|
this.settingsController.saveSetting('layers.areas', true)
|
|
|
|
// Update toggle state
|
|
if (this.hasAreasToggleTarget) {
|
|
this.areasToggleTarget.checked = true
|
|
}
|
|
} else {
|
|
console.log('[Maps V2] Areas layer already visible')
|
|
}
|
|
}
|
|
|
|
Toast.success('Area created successfully!')
|
|
} catch (error) {
|
|
console.error('[Maps V2] Failed to reload areas:', error)
|
|
Toast.error('Failed to reload areas')
|
|
}
|
|
}
|
|
|
|
// Routes Manager methods
|
|
togglePoints(event) { return this.routesManager.togglePoints(event) }
|
|
toggleRoutes(event) { return this.routesManager.toggleRoutes(event) }
|
|
toggleHeatmap(event) { return this.routesManager.toggleHeatmap(event) }
|
|
toggleFog(event) { return this.routesManager.toggleFog(event) }
|
|
toggleScratch(event) { return this.routesManager.toggleScratch(event) }
|
|
togglePhotos(event) { return this.routesManager.togglePhotos(event) }
|
|
toggleAreas(event) { return this.routesManager.toggleAreas(event) }
|
|
toggleTracks(event) { return this.routesManager.toggleTracks(event) }
|
|
toggleSpeedColoredRoutes(event) { return this.routesManager.toggleSpeedColoredRoutes(event) }
|
|
openSpeedColorEditor() { return this.routesManager.openSpeedColorEditor() }
|
|
handleSpeedColorSave(event) { return this.routesManager.handleSpeedColorSave(event) }
|
|
|
|
// Info Display methods
|
|
showInfo(title, content, actions = []) {
|
|
if (!this.hasInfoDisplayTarget) return
|
|
|
|
// Set title
|
|
this.infoTitleTarget.textContent = title
|
|
|
|
// Set content
|
|
this.infoContentTarget.innerHTML = content
|
|
|
|
// Set actions
|
|
if (actions.length > 0) {
|
|
this.infoActionsTarget.innerHTML = actions.map(action => {
|
|
if (action.type === 'button') {
|
|
// For button actions (modals, etc.), create a button with data-action
|
|
// Use error styling for delete buttons
|
|
const buttonClass = action.label === 'Delete' ? 'btn btn-sm btn-error' : 'btn btn-sm btn-primary'
|
|
return `<button class="${buttonClass}" data-action="click->maps--maplibre#${action.handler}" data-id="${action.id}" data-entity-type="${action.entityType}">${action.label}</button>`
|
|
} else {
|
|
// For link actions, keep the original behavior
|
|
return `<a href="${action.url}" class="btn btn-sm btn-primary">${action.label}</a>`
|
|
}
|
|
}).join('')
|
|
} else {
|
|
this.infoActionsTarget.innerHTML = ''
|
|
}
|
|
|
|
// Show info display
|
|
this.infoDisplayTarget.classList.remove('hidden')
|
|
|
|
// Switch to tools tab and open panel
|
|
this.switchToToolsTab()
|
|
}
|
|
|
|
closeInfo() {
|
|
if (!this.hasInfoDisplayTarget) return
|
|
this.infoDisplayTarget.classList.add('hidden')
|
|
}
|
|
|
|
/**
|
|
* Handle edit action from info display
|
|
*/
|
|
handleEdit(event) {
|
|
const button = event.currentTarget
|
|
const id = button.dataset.id
|
|
const entityType = button.dataset.entityType
|
|
|
|
console.log('[Maps V2] Opening edit for', entityType, id)
|
|
|
|
switch (entityType) {
|
|
case 'visit':
|
|
this.openVisitModal(id)
|
|
break
|
|
case 'place':
|
|
this.openPlaceEditModal(id)
|
|
break
|
|
default:
|
|
console.warn('[Maps V2] Unknown entity type:', entityType)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handle delete action from info display
|
|
*/
|
|
handleDelete(event) {
|
|
const button = event.currentTarget
|
|
const id = button.dataset.id
|
|
const entityType = button.dataset.entityType
|
|
|
|
console.log('[Maps V2] Deleting', entityType, id)
|
|
|
|
switch (entityType) {
|
|
case 'area':
|
|
this.deleteArea(id)
|
|
break
|
|
default:
|
|
console.warn('[Maps V2] Unknown entity type for delete:', entityType)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Open visit edit modal
|
|
*/
|
|
async openVisitModal(visitId) {
|
|
try {
|
|
// Fetch visit details
|
|
const response = await fetch(`/api/v1/visits/${visitId}`, {
|
|
headers: {
|
|
'Authorization': `Bearer ${this.apiKeyValue}`,
|
|
'Content-Type': 'application/json'
|
|
}
|
|
})
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`Failed to fetch visit: ${response.status}`)
|
|
}
|
|
|
|
const visit = await response.json()
|
|
|
|
// Trigger visit edit event
|
|
const event = new CustomEvent('visit:edit', {
|
|
detail: { visit },
|
|
bubbles: true
|
|
})
|
|
document.dispatchEvent(event)
|
|
} catch (error) {
|
|
console.error('[Maps V2] Failed to load visit:', error)
|
|
Toast.error('Failed to load visit details')
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Delete area with confirmation
|
|
*/
|
|
async deleteArea(areaId) {
|
|
try {
|
|
// Fetch area details
|
|
const area = await this.api.fetchArea(areaId)
|
|
|
|
// Show delete confirmation
|
|
const confirmed = confirm(`Delete area "${area.name}"?\n\nThis action cannot be undone.`)
|
|
|
|
if (!confirmed) return
|
|
|
|
Toast.info('Deleting area...')
|
|
|
|
// Delete the area
|
|
await this.api.deleteArea(areaId)
|
|
|
|
// Reload areas
|
|
const areas = await this.api.fetchAreas()
|
|
const areasGeoJSON = this.dataLoader.areasToGeoJSON(areas)
|
|
|
|
const areasLayer = this.layerManager.getLayer('areas')
|
|
if (areasLayer) {
|
|
areasLayer.update(areasGeoJSON)
|
|
}
|
|
|
|
// Close info display
|
|
this.closeInfo()
|
|
|
|
Toast.success('Area deleted successfully')
|
|
} catch (error) {
|
|
console.error('[Maps V2] Failed to delete area:', error)
|
|
Toast.error('Failed to delete area')
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Open place edit modal
|
|
*/
|
|
async openPlaceEditModal(placeId) {
|
|
try {
|
|
// Fetch place details
|
|
const response = await fetch(`/api/v1/places/${placeId}`, {
|
|
headers: {
|
|
'Authorization': `Bearer ${this.apiKeyValue}`,
|
|
'Content-Type': 'application/json'
|
|
}
|
|
})
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`Failed to fetch place: ${response.status}`)
|
|
}
|
|
|
|
const place = await response.json()
|
|
|
|
// Trigger place edit event
|
|
const event = new CustomEvent('place:edit', {
|
|
detail: { place },
|
|
bubbles: true
|
|
})
|
|
document.dispatchEvent(event)
|
|
} catch (error) {
|
|
console.error('[Maps V2] Failed to load place:', error)
|
|
Toast.error('Failed to load place details')
|
|
}
|
|
}
|
|
|
|
switchToToolsTab() {
|
|
// Open the panel if it's not already open
|
|
if (!this.settingsPanelTarget.classList.contains('open')) {
|
|
this.toggleSettings()
|
|
}
|
|
|
|
// Find the map-panel controller and switch to tools tab
|
|
const panelElement = this.settingsPanelTarget
|
|
const panelController = this.application.getControllerForElementAndIdentifier(panelElement, 'map-panel')
|
|
|
|
if (panelController && panelController.switchToTab) {
|
|
panelController.switchToTab('tools')
|
|
}
|
|
}
|
|
}
|