blob: 7a84c3c0d222baa6cc7e0728a1a10111f05af2e1 (
plain)
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
|
import { useState } from 'react'
import { useGeolocation as globalUseGeolocation } from './use-geolocation'
import { useInterval } from './use-interval'
// TODO roll something smaller since
// this package likely contains tons
// of code we dont need
import suncalc from 'suncalc'
export const computeLightLevel = (
{ loading, latitude, longitude },
date = new Date()
) => {
// assume darkness if info is not ready/available
if (loading || !latitude || !longitude) return 0
let { altitude } = suncalc.getPosition(date, latitude, longitude)
if (altitude < 0) {
altitude += 2 * Math.PI
}
// on or below the horizon is considered "no light"
if (altitude >= Math.PI) return 0
// otherwise, return a relative altitude
// where n is an int in [0,10]
// and 10 represents the zenith (straight over your head)
return Math.round(10 * Math.sin(altitude))
}
// make a location hook injectable such that we can test this
export const useSunlight = (useGeolocation = globalUseGeolocation) => {
const geoLocation = useGeolocation()
const getLightLevel = () => computeLightLevel(geoLocation)
const [lightLevel, setLightLevel] = useState(getLightLevel())
useInterval(() => {
setLightLevel(getLightLevel())
}, 1000)
return [lightLevel]
}
|