mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-18 18:10:16 -04:00
81 lines
1.9 KiB
TypeScript
81 lines
1.9 KiB
TypeScript
import { useMe } from '../hooks';
|
|
import latlongdist, { R_miles } from '../latlongdist';
|
|
import usePlace from '../usePlace';
|
|
import { IEvent, IEventSignup } from './Event';
|
|
import PersonAddIcon from '@material-ui/icons/PersonAdd';
|
|
|
|
export default function EventSignups({
|
|
event,
|
|
signups,
|
|
myPlaceId,
|
|
}: {
|
|
event: IEvent;
|
|
signups: IEventSignup[];
|
|
myPlaceId: string | null;
|
|
}) {
|
|
const placeDetails = usePlace(myPlaceId);
|
|
const locationLongitude = event.latitude;
|
|
const locationLatitude = event.longitude;
|
|
const me = useMe();
|
|
|
|
return (
|
|
<div style={{ display: 'flex', flexDirection: 'column' }}>
|
|
<h3 style={{ marginBlockEnd: '0' }}>People</h3>
|
|
{signups.map(({ latitude, longitude, user }) => {
|
|
if (user.id === me?.id) {
|
|
return null;
|
|
}
|
|
let extraDistance = null;
|
|
if (placeDetails != null) {
|
|
const myLatitude = placeDetails.latitude;
|
|
const myLongitude = placeDetails.longitude;
|
|
const meToThem = latlongdist(
|
|
latitude,
|
|
longitude,
|
|
locationLongitude,
|
|
locationLatitude,
|
|
R_miles
|
|
);
|
|
const themToLocation = latlongdist(
|
|
latitude,
|
|
longitude,
|
|
myLatitude,
|
|
myLongitude,
|
|
R_miles
|
|
);
|
|
const totalWithThem = meToThem + themToLocation;
|
|
const totalWithoutThem = latlongdist(
|
|
locationLongitude,
|
|
locationLatitude,
|
|
myLatitude,
|
|
myLongitude,
|
|
R_miles
|
|
);
|
|
extraDistance = totalWithThem - totalWithoutThem;
|
|
}
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
position: 'relative',
|
|
padding: '1rem',
|
|
borderRadius: '0.5rem',
|
|
border: '1px solid #e0e0e0',
|
|
marginTop: '0.5rem',
|
|
marginBottom: '0.5rem',
|
|
}}
|
|
key={user.id}
|
|
>
|
|
<b>{user.name}</b>
|
|
{extraDistance ? `: +${extraDistance.toFixed(1)} miles` : ''}
|
|
<PersonAddIcon />
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|