mirror of https://github.com/status-im/fathom.git
update roadmap
This commit is contained in:
parent
f7a1d7ff35
commit
0f77812c77
|
@ -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.
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue