feat(PublicPage): add schedule parts system for page with a lot of schedule (dense schedule)
This commit is contained in:
parent
61a9a703e9
commit
ebd725b0d3
3 changed files with 77 additions and 44 deletions
|
@ -478,6 +478,17 @@ section {
|
||||||
|
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
|
.schedule.dense {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
width: 100%;
|
||||||
|
column-gap: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.schedule.dense .schedule-category-days-container {
|
||||||
|
margin-right: 7em;
|
||||||
|
}
|
||||||
|
|
||||||
.schedule-category {
|
.schedule-category {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
@ -952,6 +963,13 @@ RESPONSIVE
|
||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Schedule
|
||||||
|
**/
|
||||||
|
.schedule.dense {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
.schedule-category-header {
|
.schedule-category-header {
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
padding-right: 1em;
|
padding-right: 1em;
|
||||||
|
|
|
@ -237,6 +237,17 @@ export default class PublicController {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (version.schedule.length > 8) {
|
||||||
|
let isFirst = true;
|
||||||
|
version.scheduleParts = [[], []]
|
||||||
|
version.schedule.forEach((schedule: any) => {
|
||||||
|
version.scheduleParts[isFirst ? 0 : 1].push(schedule)
|
||||||
|
isFirst = !isFirst
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
version.scheduleParts = [version.schedule]
|
||||||
|
}
|
||||||
|
|
||||||
version.cutDescription = Utils.isStrUsable(version, 'descriptionLong') && version.descriptionLong.length > 800
|
version.cutDescription = Utils.isStrUsable(version, 'descriptionLong') && version.descriptionLong.length > 800
|
||||||
|
|
||||||
// if (version.cutDescription) {
|
// if (version.cutDescription) {
|
||||||
|
|
|
@ -149,8 +149,10 @@
|
||||||
<h2>Crénaux</h2>
|
<h2>Crénaux</h2>
|
||||||
<div class="section-divider"></div>
|
<div class="section-divider"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="schedule org-container">
|
<div class="schedule org-container {% if data.scheduleParts|length > 1 %}dense{% endif %}">
|
||||||
{% for item in data.schedule %}
|
{% for schedules in data.scheduleParts %}
|
||||||
|
<div class="schedule-part">
|
||||||
|
{% for item in schedules %}
|
||||||
{% if item.when|length > 0 %}
|
{% if item.when|length > 0 %}
|
||||||
<div class="schedule-category">
|
<div class="schedule-category">
|
||||||
<div class="schedule-category-header" title="Déroulez">
|
<div class="schedule-category-header" title="Déroulez">
|
||||||
|
@ -199,6 +201,8 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue