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