|
5 | 5 | import { organization } from '$lib/stores/organization';
|
6 | 6 | import { BillingPlan } from '$lib/constants';
|
7 | 7 | import Button from '$lib/elements/forms/button.svelte';
|
| 8 | + import { Badge, Layout, Link, Tag, Typography } from '@appwrite.io/pink-svelte'; |
8 | 9 | </script>
|
9 | 10 |
|
10 | 11 | <Base>
|
11 |
| - {#if isCloud} |
12 |
| - {#if $organization?.billingPlan !== BillingPlan.FREE} |
13 |
| - <div class="u-flex-vertical u-gap-8"> |
14 |
| - <p> |
15 |
| - <span class="u-bold">Roles</span> |
16 |
| - {#if $organization?.billingPlan === BillingPlan.FREE} |
17 |
| - <span class="inline-tag u-normal u-x-small">Pro plan</span> |
18 |
| - {/if} |
19 |
| - </p> |
20 |
| - <p>Owner, Developer, Editor, Analyst and Billing.</p> |
21 |
| - </div> |
22 |
| - <p> |
23 |
| - <Button link external href="https://appwrite.io/docs/advanced/platform/roles" |
24 |
| - >Learn more</Button> about roles. |
25 |
| - </p> |
26 |
| - {:else} |
27 |
| - <div class="u-flex-vertical u-gap-8"> |
28 |
| - <p> |
29 |
| - <span class="u-bold">Roles</span> |
30 |
| - {#if $organization?.billingPlan === BillingPlan.FREE} |
31 |
| - <span class="inline-tag u-normal u-x-small">Pro plan</span> |
32 |
| - {/if} |
33 |
| - </p> |
34 |
| - <p> |
| 12 | + <Layout.Stack> |
| 13 | + {#if isCloud} |
| 14 | + {#if $organization?.billingPlan !== BillingPlan.FREE} |
| 15 | + <Typography.Text variant="m-600">Roles</Typography.Text> |
| 16 | + <Typography.Text>Owner, Developer, Editor, Analyst and Billing.</Typography.Text> |
| 17 | + <Typography.Text> |
| 18 | + <Link.Anchor |
| 19 | + target="_blank" |
| 20 | + rel="noopener noreferrer" |
| 21 | + href="https://appwrite.io/docs/advanced/platform/roles" |
| 22 | + >Learn more</Link.Anchor> |
| 23 | + </Typography.Text> |
| 24 | + {:else} |
| 25 | + <Layout.Stack direction="row" gap="s"> |
| 26 | + <Typography.Text variant="m-600"> |
| 27 | + <span class="u-bold">Roles</span> |
| 28 | + </Typography.Text> |
| 29 | + <Badge variant="secondary" size="xs" content="Pro plan" /> |
| 30 | + </Layout.Stack> |
| 31 | + <Typography.Text> |
35 | 32 | Upgrade to Pro to assign new roles to members such as Owner, Developer, Editor
|
36 | 33 | or Analyst.
|
| 34 | + </Typography.Text> |
| 35 | + |
| 36 | + <p class="u-flex u-main-end u-cross-center u-gap-4"> |
| 37 | + <Button |
| 38 | + size="s" |
| 39 | + text |
| 40 | + external |
| 41 | + href="https://appwrite.io/docs/advanced/platform/roles">Learn more</Button> |
| 42 | + <Button size="s" secondary external href={$upgradeURL}>Upgrade plan</Button> |
37 | 43 | </p>
|
38 |
| - </div> |
| 44 | + {/if} |
| 45 | + {:else} |
| 46 | + <Layout.Stack direction="row" gap="s"> |
| 47 | + <Typography.Text variant="m-600"> |
| 48 | + <span class="u-bold">Roles</span> |
| 49 | + </Typography.Text> |
| 50 | + <Badge variant="secondary" size="xs" content="Cloud" /> |
| 51 | + </Layout.Stack> |
| 52 | + <Typography.Text> |
| 53 | + Upgrade to Cloud to assign new roles to members or ask us about our enterprise self |
| 54 | + hosted offering. |
| 55 | + </Typography.Text> |
39 | 56 | <p class="u-flex u-main-end u-cross-center u-gap-4">
|
40 |
| - <Button text external href="https://appwrite.io/docs/advanced/platform/roles" |
41 |
| - >Learn more</Button> |
42 |
| - <Button secondary external href={$upgradeURL}>Upgrade plan</Button> |
| 57 | + <Button |
| 58 | + size="s" |
| 59 | + text |
| 60 | + external |
| 61 | + href="https://appwrite.io/docs/advanced/platform/roles">Learn more</Button> |
| 62 | + <Button size="s" secondary external href={$upgradeURL}>Upgrade to Cloud</Button> |
43 | 63 | </p>
|
44 | 64 | {/if}
|
45 |
| - {:else} |
46 |
| - <div class="u-flex-vertical u-gap-8"> |
47 |
| - <p> |
48 |
| - <span class="u-bold">Roles</span> |
49 |
| - <span class="inline-tag u-normal u-x-small">Appwrite Cloud</span> |
50 |
| - </p> |
51 |
| - <p> |
52 |
| - Upgrade to Cloud to assign new roles to members or ask us about our entriprise self |
53 |
| - hosted offering. |
54 |
| - </p> |
55 |
| - </div> |
56 |
| - <p class="u-flex u-main-end u-cross-center u-gap-4"> |
57 |
| - <Button text external href="https://appwrite.io/docs/advanced/platform/roles" |
58 |
| - >Learn more</Button> |
59 |
| - <Button secondary external href={$upgradeURL}>Upgrade to Cloud</Button> |
60 |
| - </p> |
61 |
| - {/if} |
| 65 | + </Layout.Stack> |
62 | 66 | </Base>
|
0 commit comments