Display Admin history in table
This commit is contained in:
parent
38500b3c94
commit
244a78d8b5
|
@ -6,6 +6,62 @@ import moment from 'moment';
|
||||||
import { apiUrl, statusColor, BasicTable, staticUrl, requester } from './utils.js';
|
import { apiUrl, statusColor, BasicTable, staticUrl, requester } from './utils.js';
|
||||||
import { NotFound } from './Misc.js';
|
import { NotFound } from './Misc.js';
|
||||||
|
|
||||||
|
let historyCache = false;
|
||||||
|
|
||||||
|
export function AdminHistory(props) {
|
||||||
|
const { token, user } = props;
|
||||||
|
const [history, setHistory] = useState(historyCache);
|
||||||
|
const [error, setError] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
requester('/history/', 'GET', token)
|
||||||
|
.then(res => {
|
||||||
|
setHistory(res.results);
|
||||||
|
historyCache = res.results;
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
console.log(err);
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{!error ?
|
||||||
|
history ?
|
||||||
|
<Table basic='very'>
|
||||||
|
<Table.Header>
|
||||||
|
<Table.Row>
|
||||||
|
<Table.HeaderCell>Date</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell>Username</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell>Type</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell>Owner</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell>Object</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell>Changed Fields</Table.HeaderCell>
|
||||||
|
</Table.Row>
|
||||||
|
</Table.Header>
|
||||||
|
|
||||||
|
<Table.Body>
|
||||||
|
{history.map(x =>
|
||||||
|
<Table.Row key={x.id}>
|
||||||
|
<Table.Cell>{moment().utc(x.history_date).format('YYYY-MM-DD')}</Table.Cell>
|
||||||
|
<Table.Cell>{x.history_user || 'System'}</Table.Cell>
|
||||||
|
<Table.Cell>{x.history_type}</Table.Cell>
|
||||||
|
<Table.Cell>{x.owner_name}</Table.Cell>
|
||||||
|
<Table.Cell>{x.object_name}</Table.Cell>
|
||||||
|
<Table.Cell>{x.changes.map(x => x.field).join(', ')}</Table.Cell>
|
||||||
|
</Table.Row>
|
||||||
|
)}
|
||||||
|
</Table.Body>
|
||||||
|
</Table>
|
||||||
|
:
|
||||||
|
<p>Loading...</p>
|
||||||
|
:
|
||||||
|
<p>Error loading.</p>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
export function Admin(props) {
|
export function Admin(props) {
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
|
@ -16,6 +72,11 @@ export function Admin(props) {
|
||||||
<p>Backups contain the complete member data and must be kept secure.</p>
|
<p>Backups contain the complete member data and must be kept secure.</p>
|
||||||
<p>Talk to Tanner to learn how to get backups.</p>
|
<p>Talk to Tanner to learn how to get backups.</p>
|
||||||
|
|
||||||
|
<Header size='medium'>History (Experimental)</Header>
|
||||||
|
<p>Last 100 database changes:</p>
|
||||||
|
|
||||||
|
<AdminHistory {...props} />
|
||||||
|
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user