Fluid layout

Reworked routing and breadcrumb mechanism. It allows resolved parameters in paths, which allows including names of entities in the breadcrumb.
Secondary navigation which is aware of permissions.
This commit is contained in:
Tomas Bures 2017-08-11 18:16:44 +02:00
parent 86fce404a9
commit 602364caae
33 changed files with 808 additions and 907 deletions

View file

@ -31,12 +31,19 @@ async function listDTAjax(context, params) {
}
async function getById(context, id) {
shares.enforceEntityPermission(context, 'list', id, 'view');
let entity;
const entity = await knex('lists').where('id', id).first();
if (!entity) {
throw new interoperableErrors.NotFoundError();
}
await knex.transaction(async tx => {
shares.enforceEntityPermissionTx(tx, context, 'list', id, 'view');
entity = await tx('lists').where('id', id).first();
if (!entity) {
throw new interoperableErrors.NotFoundError();
}
entity.permissions = await shares.getPermissions(tx, context, 'list', id);
});
return entity;
}
@ -73,7 +80,7 @@ async function updateWithConsistencyCheck(context, entity) {
}
const existingHash = hash(existing);
if (texistingHash !== entity.originalHash) {
if (existingHash !== entity.originalHash) {
throw new interoperableErrors.ChangedError();
}