update roadmap

This commit is contained in:
Danny van Kooten 2016-12-09 10:12:44 +01:00
parent f7a1d7ff35
commit 0f77812c77
2 changed files with 4 additions and 3 deletions

View File

@ -5,10 +5,11 @@ This is a general draft document for thoughts and todo's, without any structure
### What's cooking?
- Fix /collect route
- Hand out unique ID to each visitor
- Reference site URL when tracking.
- Reference path & title when tracking (indexed by path, update title when changes)
- Track referrals, use tables from aforementioned points.
- Update page title when it changes.
- Track referrals, use same tables as aforementioned points?
- Bulk process tracking requests (Redis or in-memory?)
- Allow sorting in table overviews.
- Choose a OS license & settle on name.

View File

@ -40,7 +40,7 @@ class Pageviews extends Component {
const tableRows = this.state.records.map( (p, i) => (
<tr>
<td class="muted">{i+1}</td>
<td><a href={p.Path}>{p.Path.substring(0, 50)}{p.Path.length > 50 ? '..' : ''}</a></td>
<td><a href={p.Url + p.Path}>{p.Path.substring(0, 50)}{p.Path.length > 50 ? '..' : ''}</a></td>
<td>{numbers.formatWithComma(p.Count)}</td>
<td>{numbers.formatWithComma(p.CountUnique)}</td>
</tr>