Handle POST/GET building
This commit is contained in:
parent
0ec0b52f90
commit
a2e995839e
@ -38,4 +38,54 @@ function queryBuildingAtPoint(lng, lat) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export { queryBuildingAtPoint };
|
function getBuildingById(id) {
|
||||||
|
return query(
|
||||||
|
`SELECT
|
||||||
|
building_id as id,
|
||||||
|
geometry_id,
|
||||||
|
building_doc as doc
|
||||||
|
FROM
|
||||||
|
buildings
|
||||||
|
WHERE
|
||||||
|
building_id = $1
|
||||||
|
`,
|
||||||
|
[ id ]
|
||||||
|
).then(function(data){
|
||||||
|
const rows = data.rows
|
||||||
|
if (rows.length){
|
||||||
|
const id = rows[0].id
|
||||||
|
const doc = rows[0].doc
|
||||||
|
const geometry_id = rows[0].geometry_id
|
||||||
|
|
||||||
|
doc.id = id
|
||||||
|
doc.geometry_id = geometry_id
|
||||||
|
return doc
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}).catch(function(error){
|
||||||
|
console.error(error);
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function saveBuilding(id, building_doc) {
|
||||||
|
// don't save id or geometry_id into doc
|
||||||
|
delete building_doc.id;
|
||||||
|
delete building_doc.geometry_id;
|
||||||
|
|
||||||
|
return query(
|
||||||
|
`UPDATE
|
||||||
|
buildings
|
||||||
|
SET
|
||||||
|
building_doc = $2::jsonb
|
||||||
|
WHERE
|
||||||
|
building_id = $1
|
||||||
|
`,
|
||||||
|
[ id, building_doc ]
|
||||||
|
).catch(function(error){
|
||||||
|
console.error(error);
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export { queryBuildingAtPoint, getBuildingById, saveBuilding };
|
||||||
|
@ -38,7 +38,6 @@ class App extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
selectBuilding(building) {
|
selectBuilding(building) {
|
||||||
console.log(building)
|
|
||||||
this.setState({building: building})
|
this.setState({building: building})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,15 +56,22 @@ class App extends React.Component {
|
|||||||
</Route>
|
</Route>
|
||||||
<Route exact path="/map/:map.html" component={Legend} />
|
<Route exact path="/map/:map.html" component={Legend} />
|
||||||
<Route exact path="/building/:building.html">
|
<Route exact path="/building/:building.html">
|
||||||
<BuildingView {...this.state.building} />
|
<BuildingView {...this.state.building}
|
||||||
|
user={this.state.user}
|
||||||
|
selectBuilding={this.selectBuilding}
|
||||||
|
/>
|
||||||
</Route>
|
</Route>
|
||||||
<Route exact path="/building/:building/edit.html">
|
<Route exact path="/building/:building/edit.html">
|
||||||
<BuildingEdit {...this.state.building} />
|
<BuildingEdit {...this.state.building}
|
||||||
|
user={this.state.user}
|
||||||
|
selectBuilding={this.selectBuilding}
|
||||||
|
/>
|
||||||
</Route>
|
</Route>
|
||||||
</Switch>
|
</Switch>
|
||||||
<ColouringMap {...props}
|
<ColouringMap {...props}
|
||||||
building={this.state.building}
|
building={this.state.building}
|
||||||
selectBuilding={this.selectBuilding} />
|
selectBuilding={this.selectBuilding}
|
||||||
|
/>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
) } />
|
) } />
|
||||||
<Route exact path="/about.html" component={AboutPage} />
|
<Route exact path="/about.html" component={AboutPage} />
|
||||||
|
@ -5,6 +5,7 @@ import Sidebar from './sidebar';
|
|||||||
class BuildingEdit extends Component {
|
class BuildingEdit extends Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
const user = props.user || {};
|
||||||
this.state = {
|
this.state = {
|
||||||
location_name: props.location_name,
|
location_name: props.location_name,
|
||||||
location_number: props.location_number,
|
location_number: props.location_number,
|
||||||
@ -20,7 +21,7 @@ class BuildingEdit extends Component {
|
|||||||
size_core: props.size_core,
|
size_core: props.size_core,
|
||||||
size_basement: props.size_basement,
|
size_basement: props.size_basement,
|
||||||
likes: props.likes || [],
|
likes: props.likes || [],
|
||||||
liked: this.user_likes(props.user_id, props.likes)
|
liked: this.user_likes(user.id, props.likes)
|
||||||
};
|
};
|
||||||
|
|
||||||
this.handleChange = this.handleChange.bind(this);
|
this.handleChange = this.handleChange.bind(this);
|
||||||
@ -47,12 +48,12 @@ class BuildingEdit extends Component {
|
|||||||
const likes = this.state.likes || [];
|
const likes = this.state.likes || [];
|
||||||
if (liked) {
|
if (liked) {
|
||||||
this.setState({
|
this.setState({
|
||||||
likes: likes.concat([this.props.user_id]),
|
likes: likes.concat([this.props.user.id]),
|
||||||
liked: true
|
liked: true
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.setState({
|
this.setState({
|
||||||
likes: likes.filter(id => id !== this.props.user_id),
|
likes: likes.filter(id => id !== this.props.user.id),
|
||||||
liked: false
|
liked: false
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -60,7 +61,7 @@ class BuildingEdit extends Component {
|
|||||||
|
|
||||||
handleSubmit(event) {
|
handleSubmit(event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
fetch(`/building/${this.props.id}`, {
|
fetch(`/building/${this.props.id}.json`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: JSON.stringify(this.state),
|
body: JSON.stringify(this.state),
|
||||||
headers:{
|
headers:{
|
||||||
@ -72,7 +73,7 @@ class BuildingEdit extends Component {
|
|||||||
if (res.error) {
|
if (res.error) {
|
||||||
console.error(res.error); // tell user
|
console.error(res.error); // tell user
|
||||||
} else {
|
} else {
|
||||||
console.log(res); // redirect back
|
this.props.selectBuilding(this.state);
|
||||||
}
|
}
|
||||||
}).catch(
|
}).catch(
|
||||||
err => console.error(err)
|
err => console.error(err)
|
||||||
@ -81,7 +82,7 @@ class BuildingEdit extends Component {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Sidebar title="Edit building data">
|
<Sidebar title={`Building ${this.props.id}`}>
|
||||||
<form action="building-view.html" method="GET" onSubmit={this.handleSubmit}>
|
<form action="building-view.html" method="GET" onSubmit={this.handleSubmit}>
|
||||||
<fieldset className="data-section">
|
<fieldset className="data-section">
|
||||||
<legend className="h3 bullet-prefix location toggled-on">Location</legend>
|
<legend className="h3 bullet-prefix location toggled-on">Location</legend>
|
||||||
|
@ -5,7 +5,7 @@ import Sidebar from './sidebar';
|
|||||||
import Tooltip from './tooltip';
|
import Tooltip from './tooltip';
|
||||||
|
|
||||||
const BuildingView = (props) => (
|
const BuildingView = (props) => (
|
||||||
<Sidebar title="Building data">
|
<Sidebar title={`Building ${props.id}`}>
|
||||||
<section className="data-section">
|
<section className="data-section">
|
||||||
<h3 className="h3 bullet-prefix location">Location</h3>
|
<h3 className="h3 bullet-prefix location">Location</h3>
|
||||||
<p className="data-intro">
|
<p className="data-intro">
|
||||||
|
@ -33,7 +33,7 @@ class ColouringMap extends Component {
|
|||||||
this.props.history.push(`/building/${data.id}.html`);
|
this.props.history.push(`/building/${data.id}.html`);
|
||||||
this.props.selectBuilding(data);
|
this.props.selectBuilding(data);
|
||||||
} else {
|
} else {
|
||||||
// this.props.selectBuilding(undefined);
|
// this.props.selectBuilding(undefined); // TODO follow through back to maps
|
||||||
}
|
}
|
||||||
}.bind(this)).catch(
|
}.bind(this)).catch(
|
||||||
(err) => console.error(err)
|
(err) => console.error(err)
|
||||||
@ -41,19 +41,10 @@ class ColouringMap extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
var map_type = undefined;
|
const data_layer = (
|
||||||
if (this.props.match && this.props.match.params && this.props.match.params[0]) {
|
this.props.match && this.props.match.params && this.props.match.params[1]
|
||||||
map_type = this.props.match.params[0].replace("/", "");
|
)? this.props.match.params[1].replace("/", "")
|
||||||
} else {
|
: 'date_year';
|
||||||
map_type = 'maps';
|
|
||||||
}
|
|
||||||
|
|
||||||
var data_layer = undefined;
|
|
||||||
if (this.props.match && this.props.match.params && this.props.match.params[1]) {
|
|
||||||
data_layer = this.props.match.params[1].replace("/", "");
|
|
||||||
} else {
|
|
||||||
data_layer = 'date_year';
|
|
||||||
}
|
|
||||||
|
|
||||||
const position = [this.state.lat, this.state.lng];
|
const position = [this.state.lat, this.state.lng];
|
||||||
const key = OS_API_KEY
|
const key = OS_API_KEY
|
||||||
|
@ -12,7 +12,7 @@ const pgSession = require('connect-pg-simple')(session);
|
|||||||
import App from './frontend/app';
|
import App from './frontend/app';
|
||||||
import { pool } from './db';
|
import { pool } from './db';
|
||||||
import { authUser, createUser, getUserById } from './user';
|
import { authUser, createUser, getUserById } from './user';
|
||||||
import { queryBuildingAtPoint } from './building';
|
import { queryBuildingAtPoint, getBuildingById, saveBuilding } from './building';
|
||||||
import tileserver from './tileserver';
|
import tileserver from './tileserver';
|
||||||
|
|
||||||
// create server
|
// create server
|
||||||
@ -56,26 +56,28 @@ server.get('/', frontendRoute);
|
|||||||
|
|
||||||
function frontendRoute(req, res) {
|
function frontendRoute(req, res) {
|
||||||
const data = {};
|
const data = {};
|
||||||
var re = pathToRegexp('/buildings/:building.html')
|
|
||||||
var matches = re.exec(req.url)
|
|
||||||
|
|
||||||
var building_id = undefined;
|
const building_id = parseBuildingURL(req.url);
|
||||||
|
|
||||||
|
Promise.all([
|
||||||
|
req.session.user_id? getUserById(req.session.user_id) : undefined,
|
||||||
|
building_id? getBuildingById(building_id) : undefined
|
||||||
|
]).then(function(values){
|
||||||
|
const user = values[0];
|
||||||
|
const building = values[1];
|
||||||
|
data.user = user;
|
||||||
|
data.building = building;
|
||||||
|
renderHTML(data, req, res)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseBuildingURL(url){
|
||||||
|
const re = pathToRegexp('/building/:building.html')
|
||||||
|
const matches = re.exec(url)
|
||||||
if (matches && matches.length === 2) {
|
if (matches && matches.length === 2) {
|
||||||
building_id = matches[1]
|
return matches[1]
|
||||||
}
|
|
||||||
console.log(`Building: ${building_id}`)
|
|
||||||
|
|
||||||
if (req.session.user_id) {
|
|
||||||
getUserById(req.session.user_id).then(function(user){
|
|
||||||
data.user = user;
|
|
||||||
renderHTML(data, req, res)
|
|
||||||
}).catch(function(){
|
|
||||||
renderHTML(data, req, res);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// getBuildingById() TODO load data server-side
|
|
||||||
renderHTML(data, req, res);
|
|
||||||
}
|
}
|
||||||
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderHTML(data, req, res){
|
function renderHTML(data, req, res){
|
||||||
@ -146,6 +148,31 @@ server.get('/buildings.json', function(req, res){
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Building routes
|
||||||
|
server.route('/building/:building_id.json')
|
||||||
|
.get(function (req, res) {
|
||||||
|
const { building_id } = req.params;
|
||||||
|
getBuildingById(building_id).then(function(result){
|
||||||
|
if (result) {
|
||||||
|
res.send(result)
|
||||||
|
} else {
|
||||||
|
res.status(404).send({error:'Not Found'})
|
||||||
|
}
|
||||||
|
}).catch(function(error){
|
||||||
|
res.send({error:'Database error'})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.post(function (req, res) {
|
||||||
|
const { building_id } = req.params;
|
||||||
|
const building = req.body;
|
||||||
|
saveBuilding(building_id, building).then(
|
||||||
|
() => res.send({success: true})
|
||||||
|
).catch(
|
||||||
|
() => res.send({error:'Database error'})
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
// POST new user
|
// POST new user
|
||||||
server.post('/users', function(req, res){
|
server.post('/users', function(req, res){
|
||||||
const user = req.body;
|
const user = req.body;
|
||||||
|
Loading…
Reference in New Issue
Block a user