Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
custom-tzcld
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
Components
custom-tzcld
Commits
427a6f82
Commit
427a6f82
authored
1 year ago
by
Antoine Dupré
Browse files
Options
Downloads
Patches
Plain Diff
fix: uniq index reload and filter for folow and auto eval
parent
09e184d8
No related branches found
No related tags found
No related merge requests found
Pipeline
#15721
passed
1 year ago
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/views-terrytories.js
+2
-2
2 additions, 2 deletions
src/views-terrytories.js
src/widjets-display-evaluation-tzcld.js
+12
-11
12 additions, 11 deletions
src/widjets-display-evaluation-tzcld.js
src/widjets-display-follow-tzcld.js
+23
-13
23 additions, 13 deletions
src/widjets-display-follow-tzcld.js
with
37 additions
and
26 deletions
src/views-terrytories.js
+
2
−
2
View file @
427a6f82
...
...
@@ -419,7 +419,7 @@ import("./utils.js").then((utils) => {
</div>
<div class="segment block shadow bg-color-white margin-right-xxsmall margin-left-xxsmall sm-margin-none">
<div class="loader" id="loader-
${
this
.
route
}
-answer">
<div class="loader" id="loader-
${
this
.
route
}
-
auto-
answer">
<div></div>
<div></div>
<div></div>
...
...
@@ -429,7 +429,7 @@ import("./utils.js").then((utils) => {
<tzcld-autoeval
class="tzcld-autoeval"
bind-resources=""
loader-id="loader-
${
this
.
route
}
-answer"
loader-id="loader-
${
this
.
route
}
-
auto-
answer"
parts ="
${
this
.
parts
}
"
parts-points ="
${
this
.
partsPoints
}
"
point-answers ="
${
this
.
pointAnswers
}
"
...
...
This diff is collapsed.
Click to expand it.
src/widjets-display-evaluation-tzcld.js
+
12
−
11
View file @
427a6f82
...
...
@@ -163,16 +163,15 @@ core.Sib.register({
if
(
await
point
.
fieldType
==
"
checkboxe
"
)
{
let
widget_id
=
'
autoeval-answer-form
'
;
render
+=
` <div class="full">
<solid-form-search id="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
" class="hidden"
<solid-form-search id="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
-
${
utils
.
getIntId
(
communityId
)}
" class="hidden"
fields="community, evaluation_point"
value-community="
${
communityId
}
"
value-evaluation_point="
${
point
[
'
@id
'
]}
"
></solid-form-search>
<solid-display
solid-resource
bind-resources
fields="@id"
filtered-by="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
"
filtered-by="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
-
${
utils
.
getIntId
(
communityId
)}
"
data-src="
${
pointsAnswers
}
"
widget-id="
${
widget_id
}
"
></solid-display>
...
...
@@ -180,16 +179,15 @@ core.Sib.register({
}
else
{
let
widget_id
=
'
autoeval-answer-form-option-custom
'
;
render
+=
` <div class="full">
<solid-form-search id="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
" class="hidden"
<solid-form-search id="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
-
${
utils
.
getIntId
(
communityId
)}
" class="hidden"
fields="community, evaluation_point"
value-community="
${
communityId
}
"
value-evaluation_point="
${
point
[
'
@id
'
]}
"
></solid-form-search>
<solid-display
solid-resource
bind-resources
fields="evaluation_point_answer"
filtered-by="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
"
filtered-by="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
-
${
utils
.
getIntId
(
communityId
)}
"
data-src="
${
point
[
'
@id
'
]}
"
widget-evaluation_point_answer="
${
widget_id
}
"
></solid-display>
...
...
@@ -247,7 +245,6 @@ core.Sib.register({
<div class="segment auto padding-small text-top whitespace-normal">
<solid-display data-src="
${
await
tzcldprofile
.
answer
[
'
@id
'
]}
"
solid-resource
bind-resources
fields="evaluation_point.name"
widget-evaluation_point.name="span"
></solid-display>
...
...
@@ -314,7 +311,7 @@ core.Sib.register({
<div class="segment full auto-eval-answer">
<div class="segment half padding-small">
<div class="segment auto padding-small text-top">
<solid-form solid-resource
bind-resources
fields="answer" data-src="
\$
{value}"
<solid-form solid-resource fields="answer" data-src="
\$
{value}"
widget-answer="solid-form-checkbox"
label-answer=" "
class-submit-button="hidden"
...
...
@@ -324,7 +321,6 @@ core.Sib.register({
<div class="segment auto padding-small text-top whitespace-normal">
<solid-display data-src="
\$
{value}"
solid-resource
bind-resources
fields="evaluation_point.name"
widget-evaluation_point.name="span"
></solid-display>
...
...
@@ -332,7 +328,7 @@ core.Sib.register({
</div>
<div class="segment half padding-small text-top">
<solid-form
solid-resource
bind-resources
fields="comment" class="form" data-src="
\$
{value}"
solid-resource fields="comment" class="form" data-src="
\$
{value}"
widget-comment="solid-form-textarea-label"
label-comment=" "
class-comment="segment margin-bottom-medium full sm-full padding-right-small sm-padding-none text-small text-semibold text-color-heading whitespace-normal text-xlarge"
...
...
@@ -345,7 +341,12 @@ core.Sib.register({
</solid-widget>
<!--<div>
${
await
tzcldprofile
.
name
}
</div>-->
<solid-display solid-resource bind-resources data-src="
${
this
.
element
.
getAttribute
(
'
parts
'
)}
" parts-points="
${
this
.
element
.
getAttribute
(
'
parts-points
'
)}
" fields="title, subtitle, part_points" class="segment full"
<solid-display
solid-resource
data-src="
${
this
.
element
.
getAttribute
(
'
parts
'
)}
"
parts-points="
${
this
.
element
.
getAttribute
(
'
parts-points
'
)}
"
fields="title, subtitle, part_points"
class="segment full"
multiple-part_points="tzcld-autoeval-points"
widget-name="div"
widget-title="h2"
...
...
This diff is collapsed.
Click to expand it.
src/widjets-display-follow-tzcld.js
+
23
−
13
View file @
427a6f82
...
...
@@ -120,16 +120,18 @@ core.Sib.register({
let
widget_id
=
'
follow-answer-form
'
;
render
+=
` <div class="full">
<solid-form-search id="filter-anwer-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
" class="hidden"
<solid-form-search
id="filter-follow-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
-
${
utils
.
getIntId
(
communityId
)}
"
class="hidden"
fields="community, followed_point"
value-community="
${
communityId
}
"
value-followed_point="
${
point
[
'
@id
'
]}
"
naked
></solid-form-search>
<solid-display
solid-resource
bind-resources
solid-resource
fields="@id"
filtered-by="filter-
anwer
-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
"
filtered-by="filter-
follow
-
${
utils
.
getIntId
(
point
[
'
@id
'
])}
-
${
utils
.
getIntId
(
communityId
)}
"
data-src="
${
pointsAnswers
}
"
widget-id="
${
widget_id
}
"
></solid-display>
...
...
@@ -176,15 +178,19 @@ core.Sib.register({
<div class="segment full auto-eval-answer">
<div class="segment half padding-small whitespace-normal">
<div class="segment full padding-small text-top whitespace-normal">
<solid-display data-src="
\$
{value}"
<solid-display
data-src="
\$
{value}"
solid-resource
bind-resources
fields="followed_point.name"
widget-followed_point.name="h4"
></solid-display>
</div>
<div class="segment full padding-small text-top">
<solid-form solid-resource bind-resources fields="answer" class="form" data-src="
\$
{value}"
<solid-form
solid-resource
fields="answer"
class="form"
data-src="
\$
{value}"
widget-answer="solid-form-textarea-label"
label-answer=" "
class-answer="segment margin-bottom-medium full sm-full padding-right-small sm-padding-none text-small text-semibold text-color-heading whitespace-normal text-xlarge"
...
...
@@ -206,12 +212,16 @@ core.Sib.register({
</solid-widget>
<!--<div>
${
await
tzcldprofile
.
name
}
</div>-->
<solid-display solid-resource bind-resources data-src="
${
this
.
element
.
getAttribute
(
'
parts
'
)}
" parts-points="
${
this
.
element
.
getAttribute
(
'
parts-points
'
)}
" fields="title, followed_part_points" class="segment full"
multiple-followed_part_points="tzcld-follow-points"
widget-name="div"
widget-title="h2"
class-title="margin-large margin-left-small text-xlarge text-xbold text-color-heading"
class-followed_part_points="full"
<solid-display
solid-resource
data-src="
${
this
.
element
.
getAttribute
(
'
parts
'
)}
"
parts-points="
${
this
.
element
.
getAttribute
(
'
parts-points
'
)}
"
fields="title, followed_part_points" class="segment full"
multiple-followed_part_points="tzcld-follow-points"
widget-name="div"
widget-title="h2"
class-title="margin-large margin-left-small text-xlarge text-xbold text-color-heading"
class-followed_part_points="full"
></solid-display>`
;
...
...
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