Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-webui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-webui
Commits
e3c5fc6e
Commit
e3c5fc6e
authored
2 years ago
by
florian
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Hide properties by default, unhide if appliccable
parent
e7566b6d
No related branches found
No related tags found
2 merge requests
!89
Release v0.10.0
,
!86
F hide properties
Pipeline
#31199
passed
2 years ago
Stage: linting
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/js/ext_prop_display.js
+35
-24
35 additions, 24 deletions
src/core/js/ext_prop_display.js
src/core/xsl/entity.xsl
+2
-1
2 additions, 1 deletion
src/core/xsl/entity.xsl
with
37 additions
and
25 deletions
src/core/js/ext_prop_display.js
+
35
−
24
View file @
e3c5fc6e
...
...
@@ -52,29 +52,38 @@ var prop_display = new function ($, getEntityName, getPropertyElements, getPrope
return
$
(
"
.caosdb-entity-panel,.caosdb-entity-preview
"
)
}
this
.
_hide_properties
=
function
(
entities
,
conf
,
typesWithChildren
)
{
this
.
_
un
hide_properties
=
function
(
entities
,
conf
,
allTypes
)
{
const
userName
=
getUserName
();
const
userRoles
=
getUserRoles
();
for
(
let
typeName
of
Object
.
keys
(
conf
))
{
let
typeConf
=
conf
[
typeName
];
let
allNames
=
typesWithChildren
[
typeName
];
for
(
let
ent
of
entities
)
{
let
parents
=
getParents
(
ent
).
map
(
par
=>
par
.
name
);
// only hide something if there is a match in at least one parent type
if
(
parents
.
some
(
par
=>
allNames
.
includes
(
par
)))
{
let
properties
=
getPropertyElements
(
ent
);
for
(
let
prop
of
properties
)
{
if
(
this
.
_hide_property
(
getPropertyName
(
prop
),
userName
,
userRoles
,
typeConf
))
{
console
.
log
(
prop
);
$
(
prop
).
toggleClass
(
"
caosdb-v-hidden-property
"
);
}
else
{
$
(
prop
).
toggleClass
(
"
caosdb-v-show-property
"
);
}
for
(
let
ent
of
entities
)
{
let
parents
=
getParents
(
ent
).
map
(
par
=>
par
.
name
);
let
properties
=
getPropertyElements
(
ent
);
if
(
parents
.
some
(
par
=>
allTypes
.
allTypesOrChildren
.
includes
(
par
)))
{
console
.
log
(
parents
);
// we know that there is at least one rule for this type (it is
// in `allTypes.allTypesOrChildren`), but we don't know which tp
// apply yet.
for
(
let
typeName
of
Object
.
keys
(
conf
))
{
let
typeConf
=
conf
[
typeName
];
let
allNames
=
allTypes
.
typesWithChildren
[
typeName
];
// only hide something if there is a match in at least one parent type
if
(
parents
.
some
(
par
=>
allNames
.
includes
(
par
)))
{
properties
.
forEach
((
prop
,
index
)
=>
{
if
(
this
.
_hide_property
(
getPropertyName
(
prop
),
userName
,
userRoles
,
typeConf
))
{
console
.
log
(
prop
);
// Should be hidden by default but better safe than sorry
$
(
prop
).
addClass
(
"
caosdb-v-hidden-property
"
).
removeClass
(
"
caosdb-v-show-property
"
);
}
else
{
// show this property
$
(
prop
).
addClass
(
"
caosdb-v-show-property
"
).
removeClass
(
"
caosdb-v-hidden-property
"
);
}
});
}
}
}
else
{
// no rules for this RecordType, so show all properties
properties
.
forEach
((
prop
,
index
)
=>
$
(
prop
).
addClass
(
"
caosdb-v-show-property
"
).
removeClass
(
"
caosdb-v-hidden-property
"
));
}
}
}
...
...
@@ -96,9 +105,6 @@ var prop_display = new function ($, getEntityName, getPropertyElements, getPrope
if
((
conf
.
hide
!=
undefined
)
&&
conf
.
hide
.
length
>
0
)
{
for
(
let
def
of
conf
.
hide
)
{
if
(
propname
.
toLowerCase
()
==
def
.
name
.
toLowerCase
())
{
console
.
log
(
propname
);
console
.
log
(
`
${
userName
}
-
${
def
.
users
}
`
);
console
.
log
(
`
${
userRoles
}
-
${
def
.
roles
}
`
);
if
(
def
.
users
.
includes
(
userName
)
||
userRoles
.
some
(
role
=>
def
.
roles
.
includes
(
role
)))
{
return
true
}
...
...
@@ -114,22 +120,27 @@ var prop_display = new function ($, getEntityName, getPropertyElements, getPrope
const
parentTypes
=
Object
.
keys
(
conf
);
var
typesWithChildren
=
{};
var
allTypesOrChildren
=
[];
for
(
let
parentName
of
parentTypes
)
{
const
children
=
await
query
(
`FIND RECORDTYPE "
${
parentName
}
"`
);
const
names
=
children
.
map
(
ent
=>
getEntityName
(
ent
));
typesWithChildren
[
parentName
]
=
names
;
allTypesOrChildren
=
allTypesOrChildren
.
concat
(
names
);
}
return
typesWithChildren
;
return
{
"
typesWithChildren
"
:
typesWithChildren
,
"
allTypesOrChildren
"
:
allTypesOrChildren
};
}
this
.
init
=
async
function
()
{
console
.
log
(
"
initializing ext_prop_display.js
"
);
const
conf
=
await
this
.
load_config
();
const
typesWithChildren
=
await
this
.
_getRecordTypes
(
conf
);
const
allTypes
=
await
this
.
_getRecordTypes
(
conf
);
var
entities
=
this
.
_get_entities_in_view
();
this
.
_hide_properties
(
entities
,
conf
,
typesWithChildren
)
this
.
_
un
hide_properties
(
entities
,
conf
,
allTypes
)
}
}(
$
,
getEntityName
,
getPropertyElements
,
getPropertyName
,
getUserName
,
getUserRoles
,
log
.
getLogger
(
"
ext_prop_display
"
),
load_config
,
query
);
...
...
This diff is collapsed.
Click to expand it.
src/core/xsl/entity.xsl
+
2
−
1
View file @
e3c5fc6e
...
...
@@ -232,7 +232,8 @@
</xsl:template>
<!-- PROPERTIES -->
<xsl:template
match=
"Property"
mode=
"entity-body"
>
<li
class=
"list-group-item caosdb-v-property-row caosdb-f-entity-property"
>
<!-- all properties are now hidden by default -->
<li
class=
"list-group-item caosdb-v-property-row caosdb-f-entity-property caosdb-v-hidden-property"
>
<xsl:attribute
name=
"id"
>
<xsl:value-of
select=
"generate-id()"
/>
</xsl:attribute>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment