Cosmetic (reformat)

This commit is contained in:
Eric van der Vlist 2022-09-14 10:03:49 +02:00
parent db0761efd1
commit 4bbb642b41
3 changed files with 17 additions and 19 deletions

View File

@ -30,10 +30,7 @@ setupIonicReact();
const App: React.FC = () => ( const App: React.FC = () => (
<IonApp> <IonApp>
<Provider store={store}> <Provider store={store}>
<Slippy />
<Layer>
<TiledMap />
</Layer>
</Provider> </Provider>
</IonApp> </IonApp>
); );

View File

@ -8,20 +8,19 @@ import Slippy from '../slippy/slippy';
import TiledMap from './tiled-map'; import TiledMap from './tiled-map';
const Map: react.FC<{}> = (props: {}) => { const Map: react.FC<{}> = (props: {}) => {
const dispatch = useDispatch(); const dispatch = useDispatch();
const resizeHandler = () => { const resizeHandler = () => {
dispatch(mapActions.resize()); dispatch(mapActions.resize());
}; };
const debouncedResizeHandler = useMemo( const debouncedResizeHandler = useMemo(
() => _.debounce(resizeHandler, 500), () => _.debounce(resizeHandler, 500),
[] []
); );
useEffect(() => { useEffect(() => {
window.addEventListener('resize', debouncedResizeHandler); window.addEventListener('resize', debouncedResizeHandler);
}, []); }, []);
return ( return (
<Fragment> <Fragment>

View File

@ -105,7 +105,9 @@ const mapSlice = createSlice({
resize: (state) => { resize: (state) => {
return computeStateFromScope(state.scope); return computeStateFromScope(state.scope);
}, },
shift: (state, action) => {}, shift: (state, action) => {
},
scale: (state, action) => {}, scale: (state, action) => {},
}, },
}); });