Add notifications markup and style

This commit is contained in:
Timothée Goguely 2024-10-29 13:02:03 +01:00
parent badcc46358
commit b332c6d871
4 changed files with 108 additions and 5 deletions

View file

@ -48,7 +48,8 @@
[data-icon="home"] {
--icon: var(--icon-home)
}
[data-icon="calendar"] {
[data-icon="calendar"],
[data-icon="event"] {
--icon: var(--icon-calendar)
}
[data-icon="megaphone"] {
@ -96,7 +97,8 @@
[data-icon="arrow-left"] {
--icon: var(--icon-arrow-left)
}
[data-icon="document"] {
[data-icon="document"],
[data-icon="content"] {
--icon: var(--icon-document)
}
[data-icon="comment"] {

View file

@ -18,6 +18,8 @@
.top-0 { top: 0 }
.bottom-0 { bottom: 0 }
.left-0 { left: 0 }
.right-0 { right: 0 }
.right-0 { right: 0 }
.right-gutter { right: var(--gutter) }
.-z-1 { z-index: -1 }

View file

@ -63,4 +63,14 @@
.underline {
text-decoration: underline;
}
}
/* Line clamp */
.line-clamp {
display: -webkit-box;
-webkit-line-clamp: var(--line-clamp, 2);
-webkit-box-orient: vertical;
overflow: hidden;
}

View file

@ -2,13 +2,56 @@
<main class="wrapper">
<h2 id="tabslist" class="sr-only">Status</h2>
<Tabs :tabs="tabs" @update:currentTab="changeTab" />
<button class="btn | absolute top-0 right-0" disabled>Marquer tout come lu</button>
<button class="btn | absolute top-0 right-gutter" disabled>Marquer tout come lu</button>
<!-- IF pas de nouvelles notifications -->
<div class="flex flex-col justify-center | text-grey-700 | absolute inset-0 -z-1">
<svg aria-hidden="true" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7 28.925C23.4895 30.6616 22.625 32.2526 21.2825 33.3741C19.94 34.4955 18.2205 35.0631 16.4742 34.9611C14.7279 34.8591 13.0861 34.0953 11.8832 32.8252C10.6804 31.5551 10.0069 29.8743 10 28.125V24.15M34.6 32.675L5.425 22.5C4.94896 22.3339 4.53427 22.0278 4.23534 21.6218C3.93642 21.2158 3.76724 20.7289 3.75 20.225V17.5C3.75206 16.9832 3.91423 16.4798 4.21418 16.0589C4.51414 15.6381 4.93715 15.3205 5.425 15.15L34.6 5.00001C34.7873 4.93673 34.987 4.91879 35.1825 4.94766C35.3781 4.97653 35.5641 5.05137 35.7251 5.16606C35.8862 5.28074 36.0177 5.43199 36.109 5.60738C36.2002 5.78277 36.2485 5.9773 36.25 6.17501V31.5C36.2485 31.6977 36.2002 31.8922 36.109 32.0676C36.0177 32.243 35.8862 32.3943 35.7251 32.5089C35.5641 32.6236 35.3781 32.6985 35.1825 32.7273C34.987 32.7562 34.7873 32.7383 34.6 32.675Z" stroke="currentColor" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p>Vous navez pas de nouvelles notifications</p>
</div>
<!-- ELSE -->
<section class="notifications | flow">
<!--
TODO: à dynamiser
data-status = unread | read
data-type = comment | content | event
data-icon = comment | content | event
-->
<article
class="notification | bg-white rounded-lg | p-16 | flow"
data-status="unread"
data-type="comment"
>
<header>
<p class="flex">
<strong class="notification__type | font-medium text-primary" data-icon="comment">Nouveau commentaire</strong>
<span class="notification__client | text-grey-700">Miss Dior Blooming Bouquet</span>
<time datetime="" class="notification__date | text-grey-700 | ml-auto">17:06</time>
</p>
</header>
<p class="notification__body | text-md font-medium | line-clamp">
Clément Dubois : Lectus adipiscing nulla quis odio in aliquam. Adipiscing libero in consequat porta mauris hendrerit malesuada viverra turpis. Lectus adipiscing nulla quis odio in aliquam. Adipiscing libero in consequat porta mauris hendrerit malesuada viverra turpis.
</p>
</article>
<article
class="notification | bg-white rounded-lg | p-16 | flow"
data-status="read"
data-type="content"
>
<header>
<p class="flex">
<strong class="notification__type | font-medium text-primary" data-icon="content">Nouveau contenu</strong>
<span class="notification__client | text-grey-700">Miss Dior Blooming Bouquet</span>
<time datetime="" class="notification__date | text-grey-700 | ml-auto">Hier</time>
</p>
</header>
<p class="notification__body | text-md font-medium | line-clamp">
Proposition 2
</p>
</article>
</section>
</main>
</template>
@ -52,4 +95,50 @@ function changeTab(newValue) {
[role="tablist"] {
margin-left: 0;
}
/* Notifications */
.notification {
--flow-space: var(--space-12);
font-size: var(--text-sm);
position: relative;
}
.notification[data-status="unread"]::after {
content: '';
display: inline-block;
width: .5rem;
height: .5rem;
outline: 2px solid var(--color-white);
background: var(--color-primary);
border-radius: 50%;
position: absolute;
top: 0;
right: 0;
}
.notification p {
max-width: 100%;
}
.notification header p {
column-gap: 0;
}
.notification__type {
display: flex;
}
.notification__type::before {
margin-right: var(--space-8);
}
.notification__client {
display: inline-block;
}
.notification__client::before {
content: '';
display: inline-block;
width: 3px;
height: 3px;
background: var(--color-grey-700);
border-radius: 50%;
margin: .2em .5em;
}
.notification__body {
--line-clamp: 2;
}
</style>