Compare commits

..

No commits in common. "a3484f45251f9f44305c2b4a4a15bb89229f71c8" and "e6231f86b4c047e823d6c695a67a94c8481525fc" have entirely different histories.

9 changed files with 3 additions and 67 deletions

View File

@ -23,6 +23,5 @@ module.exports = {
},
config: {
"enterfront.api": "/api",
// paste stand URL to config
},
};

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "enterfront",
"version": "0.2.4",
"version": "0.2.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "enterfront",
"version": "0.2.4",
"version": "0.2.3",
"dependencies": {
"@brojs/cli": "^1.0.0",
"@brojs/create": "^1.0.0",

View File

@ -24,5 +24,5 @@
"clean": "rimraf dist"
},
"name": "enterfront",
"version": "0.2.4"
"version": "0.2.3"
}

View File

@ -3,14 +3,8 @@ import { BrowserRouter } from 'react-router-dom';
import { Dashboard } from './dashboard';
import { getConfigValue } from "@brojs/cli";
import './index.css'
const BASE_API_URL = getConfigValue("enterfront.api");
// fetch(`${BASE_API_URL}/books/list`)
const App = () => {
return(
<BrowserRouter>

View File

@ -1,6 +0,0 @@
{
"content": {
},
"totalElement": 0
}

View File

@ -1,5 +0,0 @@
{
"id": "1",
"name": "Book name",
"description": "Interesting book description"
}

View File

@ -1,36 +0,0 @@
const booksRouter = require('express').Router();
module.exports = booksRouter;
const books = []
booksRouter.get('/list', (req, res) => {
res.send(require('./book-list.json'))
})
booksRouter.post('/', (req, res) => {
// body() can be used because of dev server
console.log(req.body)
books.push({
name: req.body.name,
})
res.send({
status: 200
})
})
booksRouter.get('/:id', (req, res) => {
console.log(req.params);
res.send(require('./book.json'));
// res.status(404).send()
})
booksRouter.delete('/:id', (req, res) => {
res.status(201).send({
status: 'ok'
})
})

View File

@ -1,8 +1,3 @@
const booksRouter = require("./books");
const router = require('express').Router();
const delay = require('./middlewares/delay');
module.exports = router;
// router.use(delay(300));
router.use('/books', delay, booksRouter);

View File

@ -1,5 +0,0 @@
const delay = (ms = 1000) => (req, res, next) => {
setTimeout(next, ms)
}
module.exports = delay