Skip to content

Commit 8f8a03d

Browse files
committed
fix: prevent users from loading too many s2 cells
1 parent a4d6865 commit 8f8a03d

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

packages/locales/lib/human/en.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,7 @@
620620
"rocket_pokemon": "Rocket Pokémon",
621621
"decoy": "Decoy",
622622
"s2_cell_limit_0": "You attempted to generate more than 20,000 cells ({{variable_0}})",
623+
"s2_cell_zoom_limit": "Some cells are too small to be displayed at this zoom level",
623624
"show_all_pvp_ranks": "Show All PVP Ranks",
624625
"enable_pokemon_popup_coords": "Show Pokémon Coords",
625626
"enable_gym_popup_coords": "Show Gym Coords",
@@ -785,4 +786,4 @@
785786
"locale_instructions_8": "Wait for the pull request to be reviewed and merged",
786787
"enter_translation": "Enter Translation",
787788
"individual_filters": "Partially Filtered"
788-
}
789+
}

src/features/drawer/pokemon/ModeSelector.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { FCSelectListItem } from '@components/inputs/FCSelect'
1111
export function PokemonModeSelector() {
1212
const filterMode = useStorage((s) => s.getPokemonFilterMode())
1313
const { t } = useTranslation()
14-
const ui = useMemory((s) => s.ui.pokemon)
14+
const isLegacyEnabled = useMemory((s) => !!s.ui.pokemon?.legacy)
1515
const selectRef = React.useRef(/** @type {HTMLDivElement | null} */ (null))
1616

1717
return (
@@ -35,7 +35,7 @@ export function PokemonModeSelector() {
3535
}
3636
}}
3737
>
38-
{['basic', 'intermediate', ...(ui.legacy ? ['expert'] : [])].map(
38+
{['basic', 'intermediate', ...(isLegacyEnabled ? ['expert'] : [])].map(
3939
(tier) => (
4040
<MenuItem
4141
key={tier}

src/features/s2cell/GenerateCells.jsx

+11-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,15 @@ export function GenerateCells() {
2323
: s.userSettings.s2cells.lightMapBorder,
2424
)
2525
/** @type {number[]} */
26-
const filter = useStorage((s) => s.filters.s2cells.cells)
26+
const filter = useStorage((s) => s.filters?.s2cells?.cells)
2727
const location = useStorage((s) => s.location)
2828
const zoom = useStorage((s) => s.zoom)
2929

3030
const cells = React.useMemo(() => {
3131
const bounds = getQueryArgs()
32-
return filter.flatMap((level) => {
32+
return filter?.flatMap((level) => {
33+
if (level > zoom) return []
34+
3335
const regionCoverer = new S2RegionCoverer()
3436
const region = S2LatLngRect.fromLatLng(
3537
S2LatLng.fromDegrees(bounds.minLat, bounds.minLon),
@@ -55,7 +57,7 @@ export function GenerateCells() {
5557
})
5658
}, [filter, location, zoom, color])
5759

58-
return (
60+
return filter ? (
5961
<>
6062
{cells
6163
.filter((_, i) => i < 20_000)
@@ -73,6 +75,11 @@ export function GenerateCells() {
7375
},
7476
]}
7577
/>
78+
<Notification
79+
open={filter.some((x) => x > zoom)}
80+
severity="warning"
81+
title="s2_cell_zoom_limit"
82+
/>
7683
</>
77-
)
84+
) : null
7885
}

0 commit comments

Comments
 (0)