1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

Remove placeholder features which we won't have in this release from user app list screen

This commit is contained in:
Andrew Kingston 2021-05-19 15:04:07 +01:00
parent 230372dba2
commit c3b462aea1

View file

@ -44,8 +44,7 @@
</Heading>
<Body>
Welcome to the {$organisation.company} portal. Below you'll find
the list of apps that you have access to, as well as company news
and the employee handbook.
the list of apps that you have access to.
</Body>
</Layout>
<ActionMenu align="right">
@ -73,22 +72,9 @@
</div>
<Divider />
{#if $apps.length}
<div class="apps-title">
<Heading>Apps</Heading>
<Select placeholder="Filter by groups" />
</div>
<Heading>Apps</Heading>
<div class="group">
<Layout gap="S" noPadding>
<div class="group-title">
<Body weight="500" size="XS">GROUP</Body>
{#if $auth.user?.builder?.global}
<Icon
name="Settings"
hoverable
on:click={() => alert("Navigate to portal group page.")}
/>
{/if}
</div>
{#each $apps as app, idx (app.appId)}
<a class="app" target="_blank" href={`/${app.appId}`}>
<div class="preview" use:gradient={{ seed: app.name }} />
@ -106,9 +92,9 @@
{:else}
<Layout gap="XS" noPadding>
<Heading size="S">You don't have access to any apps yet.</Heading>
<Body size="S"
>The apps you have access to will be listed here.</Body
>
<Body size="S">
The apps you have access to will be listed here.
</Body>
</Layout>
{/if}
</Layout>
@ -151,20 +137,9 @@
cursor: pointer;
filter: brightness(110%);
}
.apps-title {
display: grid;
grid-template-columns: 1fr 150px;
grid-gap: var(--spacing-xl);
}
.group {
margin-top: var(--spacing-s);
}
.group-title {
display: grid;
grid-template-columns: 1fr auto;
grid-gap: var(--spacing-xl);
align-items: center;
}
.app {
display: grid;
grid-template-columns: auto 1fr auto;