Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /**
* Custom viewBox overrides for map/continent combinations
*
* This file is automatically updated by the DevCropTool (Ctrl+Shift+B in dev mode)
*
* Format: { [mapId]: { [continentId]: viewBox } }
*/
export interface CropOverrides {
[mapId: string]: {
[continentId: string]: string
}
}
export const customCrops: CropOverrides = {
world: {
africa: '394.40 344.29 254.23 229.00',
'south-america': '204.64 424.60 185.09 230.17',
'north-america': '-17.45 150.31 444.57 299.97',
europe: '399.21 102.01 198.44 266.44',
asia: '537.52 271.25 368.29 239.28',
oceania: '777.19 467.60 223.33 152.54',
},
}
/**
* Runtime crop overrides (for dev mode live updates without page reload)
* These take precedence over the static customCrops above
*/
const runtimeCropOverrides: CropOverrides = {}
/**
* Custom event name for crop updates
*/
export const CROP_UPDATE_EVENT = 'dev-crop-update'
/**
* Custom event name for crop mode state changes
*/
export const CROP_MODE_EVENT = 'dev-crop-mode'
/**
* Event detail type for crop updates
*/
export interface CropUpdateEventDetail {
mapId: string
continentId: string
viewBox: string | null // null means crop was reset/deleted
}
/**
* Event detail type for crop mode state
*/
export interface CropModeEventDetail {
active: boolean
}
/**
* Dispatch crop mode state change event
*/
export function setCropModeActive(active: boolean): void {
if (typeof window !== 'undefined') {
const event = new CustomEvent<CropModeEventDetail>(CROP_MODE_EVENT, {
detail: { active },
})
window.dispatchEvent(event)
}
}
/**
* Update a crop at runtime (dev mode only)
* This immediately makes the new crop available via getCustomCrop()
* and dispatches an event so components can react
*/
export function setRuntimeCrop(mapId: string, continentId: string, viewBox: string | null): void {
if (viewBox === null) {
// Delete the runtime override
if (runtimeCropOverrides[mapId]) {
delete runtimeCropOverrides[mapId][continentId]
if (Object.keys(runtimeCropOverrides[mapId]).length === 0) {
delete runtimeCropOverrides[mapId]
}
}
} else {
// Set the runtime override
if (!runtimeCropOverrides[mapId]) {
runtimeCropOverrides[mapId] = {}
}
runtimeCropOverrides[mapId][continentId] = viewBox
}
// Dispatch event for live updates
if (typeof window !== 'undefined') {
const event = new CustomEvent<CropUpdateEventDetail>(CROP_UPDATE_EVENT, {
detail: { mapId, continentId, viewBox },
})
window.dispatchEvent(event)
}
}
/**
* Get custom crop viewBox for a map/continent combination
* Returns null if no custom crop is defined
* Checks runtime overrides first (for dev mode live updates), then static crops
*/
export function getCustomCrop(mapId: string, continentId: string): string | null {
// Check runtime overrides first (for dev mode live updates)
const runtimeCrop = runtimeCropOverrides[mapId]?.[continentId]
if (runtimeCrop !== undefined) {
return runtimeCrop
}
// Fall back to static crops
const staticCrop = customCrops[mapId]?.[continentId] ?? null
return staticCrop
}
|