urbit/pkg/interface/weather/tile/tile.js

219 lines
6.1 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
import classnames from 'classnames';
import moment from 'moment';
class IconWithData extends Component {
render() {
const { props } = this;
return (
<div className='mt2'>
<img
src={'/~weather/img/' + props.icon + '.png'}
width={20}
height={20}
className="dib mr2" />
<p className="label-small dib white">{props.text}</p>
</div>
);
}
}
export default class WeatherTile extends Component {
constructor(props) {
super(props);
let ship = window.ship;
let api = window.api;
this.state = {
2019-08-13 02:42:41 +03:00
latlng: '',
2019-08-13 02:55:28 +03:00
manualEntry: false,
error: false
};
}
locationSubmit() {
navigator.geolocation.getCurrentPosition((res) => {
console.log(res);
let latlng = `${res.coords.latitude},${res.coords.longitude}`;
this.setState({
latlng
2019-06-28 21:38:14 +03:00
}, (err) => {
console.log(err);
}, { maximumAge: Infinity, timeout: 10000 });
api.action('weather', 'json', latlng);
});
}
2019-08-13 02:42:41 +03:00
manualLocationSubmit() {
2019-08-14 03:17:40 +03:00
event.preventDefault();
let gpsInput = document.getElementById('gps');
let latlngNoSpace = gpsInput.value.replace(/\s+/g, '');
let latlngParse = /-?[0-9]+(?:\.[0-9]*)?,-?[0-9]+(?:\.[0-9]*)?/g;
2019-08-13 02:42:41 +03:00
if (latlngParse.test(latlngNoSpace)) {
2019-08-14 03:17:40 +03:00
let latlng = latlngNoSpace;
this.setState({latlng}, (err) => {console.log(err)}, {maximumAge: Infinity, timeout: 10000});
api.action('weather', 'json', latlng);
this.setState({manualEntry: !this.state.manualEntry});
2019-08-13 02:42:41 +03:00
}
2019-08-13 02:55:28 +03:00
else {
2019-08-14 03:17:40 +03:00
this.setState({error: true});
return false;
2019-08-13 02:55:28 +03:00
}
2019-08-13 02:42:41 +03:00
}
keyPress(e) {
if (e.keyCode === 13) {
e.preventDefault();
this.manualLocationSubmit(e.target.value);
}
}
renderWrapper(child) {
return (
<div className="pa2 relative" style={{
2019-06-22 02:09:04 +03:00
width: 234,
height: 234,
background: '#1a1a1a'
}}>
{child}
</div>
);
}
2019-08-13 02:42:41 +03:00
renderManualEntry() {
2019-08-14 03:37:02 +03:00
let secureCheck;
2019-08-13 02:55:28 +03:00
let error;
if (this.state.error === true) {
2019-08-14 03:17:40 +03:00
error = <p
2019-08-14 03:37:02 +03:00
className="label-small red pt1">
Incorrect latitude/longitude formatting. Please try again. <br/>
(eg. "29.558107, -95.089023")
2019-08-14 03:17:40 +03:00
</p>
2019-08-13 02:55:28 +03:00
}
2019-08-14 03:37:02 +03:00
if (location.protocol === "https:") {
secureCheck = <a
className="label-regular b gray absolute pointer"
style={{right: 8, top: 4}}
onClick={() => this.locationSubmit()}>Detect location -></a>
}
2019-08-13 02:42:41 +03:00
return this.renderWrapper((
<div>
2019-08-14 03:17:40 +03:00
<a style={{"color": "white", "cursor": "pointer"}}
onClick={() => this.setState({manualEntry: !this.state.manualEntry})}>
&lt;&#45;
</a>
2019-08-14 03:37:02 +03:00
{secureCheck}
2019-08-14 03:17:40 +03:00
<p className="label-regular white pt2">
2019-08-20 01:40:18 +03:00
Please enter your <a className="white" href="https://latitudeandlongitude.org/" target="_blank">latitude and longitude</a>.</p>
2019-08-13 02:55:28 +03:00
{error}
2019-08-14 03:37:02 +03:00
<form className="flex absolute" style={{"bottom": 0, "left": 8}}>
2019-08-14 03:17:40 +03:00
<input id="gps"
2019-08-14 03:37:02 +03:00
className="white pa1 bg-transparent outline-0 bn bb-ns b--white"
2019-08-20 01:40:18 +03:00
style={{width: "86%"}}
2019-08-14 03:17:40 +03:00
type="text"
2019-08-14 03:37:02 +03:00
placeholder="29.558107, -95.089023"
2019-08-14 03:17:40 +03:00
onKeyDown={this.keyPress.bind(this)}>
</input>
<input className="bg-transparent inter white w-20 outliner-0 bn pointer"
type="submit"
onClick={() => this.manualLocationSubmit()}
value="->">
</input>
</form>
2019-08-13 02:42:41 +03:00
</div>
))
}
renderNoData() {
return this.renderWrapper((
2019-08-14 22:14:28 +03:00
<div onClick={() => this.setState({manualEntry: !this.state.manualEntry})}>
<p className="gray label-regular b absolute"
style={{left: 8, top: 4}}>
Weather
</p>
2019-08-02 01:32:26 +03:00
<p className="absolute w-100 flex-col body-regular white" style={{verticalAlign: "bottom", bottom: 8, left: 8, cursor: "pointer"}}>-> Set location</p>
</div>
));
}
renderWithData(data) {
let c = data.currently;
let d = data.daily.data[0];
let da = moment.unix(d.sunsetTime).format('h:mm a') || '';
return this.renderWrapper((
<div>
2019-08-02 01:33:32 +03:00
<p className="gray label-regular b absolute"
style={{left: 8, top: 4}}>
Weather
</p>
2019-08-13 19:35:45 +03:00
<a className="label-regular b gray absolute pointer"
style={{right: 8, top: 4}}
2019-08-14 03:37:02 +03:00
onClick={() => this.setState({manualEntry: !this.state.manualEntry})}>Update location -></a>
2019-08-02 01:39:26 +03:00
<div className="w-100 mb2 mt2 absolute"
style={{left: 18, top: 28}}>
<img
src={'/~weather/img/' + c.icon + '.png'}
width={64}
height={64}
className="dib" />
<h2
className="dib ml2 white"
style={{
fontSize: 72,
lineHeight: '64px',
fontWeight: 400
}}>
{Math.round(c.temperature)}°</h2>
</div>
2019-08-02 01:39:26 +03:00
<div className="w-100 cf absolute"
style={{ left: 18, top: 118 }}>
<div className="fl w-50">
<IconWithData
icon='winddirection'
text={c.windBearing + '°'} />
<IconWithData
icon='chancerain'
text={(c.precipProbability * 100) + '%'} />
<IconWithData
icon='windspeed'
text={Math.round(c.windSpeed) + ' mph'} />
</div>
<div className="fr w-50">
<IconWithData
icon='sunset'
text={da} />
<IconWithData
icon='low'
text={Math.round(d.temperatureLow) + '°'} />
<IconWithData
icon='high'
text={Math.round(d.temperatureHigh) + '°'} />
</div>
</div>
</div>
));
}
render() {
let data = !!this.props.data ? this.props.data : {};
2019-08-13 02:42:41 +03:00
if (this.state.manualEntry === true) {
return this.renderManualEntry();
}
if ('currently' in data && 'daily' in data) {
return this.renderWithData(data);
}
return this.renderNoData();
}
}
window.weatherTile = WeatherTile;