2017-12-16 17:41:22 +01:00
|
|
|
/**
|
2018-04-12 23:06:18 +02:00
|
|
|
* Docs
|
2017-12-16 17:41:22 +01:00
|
|
|
*/
|
|
|
|
|
2018-04-09 11:54:03 +02:00
|
|
|
import * as path from 'path';
|
2018-04-12 23:06:18 +02:00
|
|
|
import * as Router from 'koa-router';
|
|
|
|
import * as send from 'koa-send';
|
2017-12-16 17:41:22 +01:00
|
|
|
|
2018-04-09 11:54:03 +02:00
|
|
|
const docs = path.resolve(`${__dirname}/../../client/docs/`);
|
2018-03-29 13:50:45 +02:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
const router = new Router();
|
2017-12-16 17:41:22 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
router.get('/assets', async ctx => {
|
|
|
|
await send(ctx, `${docs}/assets`);
|
|
|
|
});
|
2017-12-16 17:41:22 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
router.get(/^\/([a-z_\-\/]+?)$/, async ctx => {
|
|
|
|
await send(ctx, `${docs}/${ctx.params[0]}.html`);
|
|
|
|
});
|
2017-12-16 17:41:22 +01:00
|
|
|
|
2018-04-12 23:06:18 +02:00
|
|
|
module.exports = router;
|