-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d645bce
commit a1ba6c7
Showing
19 changed files
with
135 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,63 @@ | ||
<aside class="sidebar"> | ||
<header class="sidebar__logo hide-on-mobile"> | ||
<PixNavigation @variant="orga" @navigationAriaLabel={{t "navigation.main.aria-label"}} @menuLabel="Menu"> | ||
<:brand> | ||
<LinkTo @route={{this.redirectionRoute}}> | ||
<img src="{{this.rootUrl}}/pix-orga.svg" alt="{{t 'common.home-page'}}" /> | ||
<img src="{{this.rootUrl}}/pix-orga.svg" class="pix-orga-logo" alt="{{t 'common.home-page'}}" /> | ||
</LinkTo> | ||
</header> | ||
|
||
<nav class="sidebar-nav" aria-label={{t "navigation.main.aria-label"}}> | ||
</:brand> | ||
<:navElements> | ||
<PixNavigationButton @route="login" @icon="home">{{t "navigation.main.home"}}</PixNavigationButton> | ||
{{#if this.shouldDisplayCampaignsEntry}} | ||
<LinkTo @route="authenticated.campaigns" class="sidebar-nav__item"> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="conversionPath" role="none" /> | ||
</span> | ||
{{t "navigation.main.campaigns"}} | ||
</LinkTo> | ||
<PixNavigationButton @route={{this.redirectionRoute}} @icon="conversionPath"> | ||
{{t "navigation.main.campaigns"}}</PixNavigationButton> | ||
{{/if}} | ||
|
||
{{#if this.shouldDisplayCertificationsEntry}} | ||
<LinkTo @route="authenticated.certifications" class="sidebar-nav__item"> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="awards" role="none" /> | ||
</span> | ||
{{t "navigation.main.certifications"}} | ||
</LinkTo> | ||
<PixNavigationButton @route="authenticated.certifications" @icon="awards"> | ||
{{t "navigation.main.certifications"}}</PixNavigationButton> | ||
{{/if}} | ||
{{#if this.shouldDisplayAttestationsEntry}} | ||
<LinkTo @route="authenticated.attestations" class="sidebar-nav__item"> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="assignment" role="none" /> | ||
</span> | ||
{{t "navigation.main.attestations"}} | ||
</LinkTo> | ||
<PixNavigationButton @route="authenticated.attestations" @icon="awards"> | ||
{{t "navigation.main.attestations"}}</PixNavigationButton> | ||
{{/if}} | ||
{{#if this.shouldDisplayMissionsEntry}} | ||
<LinkTo @route="authenticated.missions" class="sidebar-nav__item"> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="conversionPath" role="none" /> | ||
</span> | ||
<PixNavigationButton @route="authenticated.missions" @icon="conversionPath"> | ||
{{t "navigation.main.missions"}} | ||
</LinkTo> | ||
</PixNavigationButton> | ||
{{/if}} | ||
<LinkTo @route={{this.organizationLearnersList.route}} class="sidebar-nav__item"> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="infoUser" role="none" /> | ||
</span> | ||
|
||
<PixNavigationButton @route={{this.organizationLearnersList.route}} @icon="infoUser"> | ||
{{t this.organizationLearnersList.label}} | ||
</LinkTo> | ||
<LinkTo @route="authenticated.team" class="sidebar-nav__item"> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="users" role="none" /> | ||
</span> | ||
</PixNavigationButton> | ||
|
||
<PixNavigationButton @route="authenticated.team" @icon="users"> | ||
{{t "navigation.main.team"}} | ||
</LinkTo> | ||
</PixNavigationButton> | ||
|
||
{{#if this.shouldDisplayPlacesEntry}} | ||
<LinkTo @route="authenticated.places" class="sidebar-nav__item"> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="seat" role="none" /> | ||
</span> | ||
<PixNavigationButton @route="authenticated.places" @icon="seat"> | ||
{{t "navigation.main.places"}} | ||
</LinkTo> | ||
</PixNavigationButton> | ||
{{/if}} | ||
|
||
{{#if this.documentationUrl}} | ||
<a class="sidebar-nav__item" href={{this.documentationUrl}} target="_blank" rel="noopener noreferrer"> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="book" role="none" /> | ||
</span> | ||
<PixNavigationButton href={{this.documentationUrl}} target="_blank" rel="noopener noreferrer" @icon="book"> | ||
{{t "navigation.main.documentation"}} | ||
</a> | ||
</PixNavigationButton> | ||
{{/if}} | ||
{{#if this.shouldDisplayMissionsEntry}} | ||
<a | ||
<PixNavigationButton | ||
href="https://pix.fr/support/enseignement-scolaire/1er-degre" | ||
target="_blank" | ||
class="sidebar-nav__item" | ||
rel="noopener noreferrer" | ||
@icon="help" | ||
> | ||
<span class="sidebar-nav__item-icon"> | ||
<PixIcon @name="help" role="none" /> | ||
</span> | ||
{{t "navigation.main.support"}} | ||
</a> | ||
</PixNavigationButton> | ||
{{/if}} | ||
|
||
</nav> | ||
</aside> | ||
</:navElements> | ||
<:footer> | ||
<Layout::OrganizationPlacesOrCreditInfo @placesCount={{@placesCount}} /> | ||
<Layout::SchoolSessionManagement /> | ||
<PixNavigationSeparator /> | ||
<Layout::UserLoggedMenu @onChangeOrganization={{@onChangeOrganization}} /> | ||
</:footer> | ||
</PixNavigation> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,6 @@ | ||
.app { | ||
display: flex; | ||
align-items: stretch; | ||
min-height: 100vh; | ||
} | ||
|
||
.main-content { | ||
display: flex; | ||
flex-direction: column; | ||
|
||
// Minus 280px because it corresponds to the sidebar's width | ||
width: calc(100% - 280px); | ||
background-color: var(--pix-neutral-20); | ||
|
||
&__body { | ||
flex: 1 0 auto; | ||
} | ||
} | ||
|
||
.sticker-banner { | ||
position: sticky; | ||
top: 0; | ||
z-index: 200; | ||
} | ||
|
||
@include device-is('mobile') { | ||
.app { | ||
flex-direction: column; | ||
} | ||
|
||
.main-content { | ||
width: 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
<div class="app"> | ||
<Layout::Sidebar /> | ||
|
||
<div class="main-content"> | ||
<header> | ||
<Layout::Topbar @placesCount={{@model.available}} @onChangeOrganization={{this.onChangeOrganization}} /> | ||
</header> | ||
|
||
<main class="main-content__body page"> | ||
<Banner::TopBanners /> | ||
{{outlet}} | ||
</main> | ||
<PixAppLayout @variant="orga" class="app"> | ||
<Layout::Sidebar @placesCount={{@model.available}} @onChangeOrganization={{this.onChangeOrganization}} /> | ||
{{! <div class="main-content"> }} | ||
{{! <header> | ||
TODO: remove component and merge tests | ||
<Layout::Topbar /> | ||
</header> }} | ||
|
||
<main class="main-content__body page"> | ||
<Banner::TopBanners /> | ||
{{outlet}} | ||
<Layout::Footer /> | ||
</div> | ||
</main> | ||
|
||
<NotificationContainer @position="bottom-right" /> | ||
</div> | ||
{{! </div> }} | ||
</PixAppLayout> | ||
<NotificationContainer @position="bottom-right" /> |
Oops, something went wrong.