Changed story dimensions
Improved logging
This commit is contained in:
parent
f4226237ab
commit
3668e8c33f
@ -54,7 +54,7 @@ function useFetch<R, T>(
|
||||
useEffect(() => {
|
||||
doSend().then(
|
||||
data => { if (data !== undefined) setData(data) }
|
||||
).catch(
|
||||
).catch( // must never occur
|
||||
err => import.meta.env.DEV && console.error('Failed to do fetch request', err)
|
||||
)
|
||||
}, [doSend])
|
||||
|
@ -1,15 +1,13 @@
|
||||
import { useState, useEffect } from 'react';
|
||||
|
||||
function getWindowDimensions() {
|
||||
const { innerWidth: width, innerHeight: height } = window;
|
||||
const getWindowDimensions = () => (
|
||||
{
|
||||
width: window.innerWidth,
|
||||
height: window.innerHeight
|
||||
}
|
||||
)
|
||||
|
||||
return {
|
||||
width,
|
||||
height
|
||||
};
|
||||
}
|
||||
|
||||
function useStoryDimensions(maxRatio = 16/9) {
|
||||
function useStoryDimensions(maxRatio = 16 / 9) {
|
||||
const [windowDimensions, setWindowDimensions] = useState(getWindowDimensions())
|
||||
|
||||
useEffect(() => {
|
||||
|
@ -70,8 +70,6 @@ function HomePage() {
|
||||
|
||||
const announcementsFetch = useAnnouncements(filter)
|
||||
|
||||
// console.log(announcementsFetch)
|
||||
|
||||
const stories = fallbackGenerateStories(announcementsFetch)
|
||||
|
||||
return (<>
|
||||
|
@ -21,7 +21,7 @@ const isObject = <T>(obj: unknown, properties: PropertiesGuards): obj is T => (
|
||||
const param: unknown = Reflect.get(obj, name)
|
||||
|
||||
if (import.meta.env.DEV) {
|
||||
console.log(name, param, guard)
|
||||
console.debug('isObject', name, param, guard)
|
||||
}
|
||||
|
||||
if (typeof guard === 'function') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user