|
1 | 1 | <script lang="ts">
|
2 | 2 | import { Auth } from '@supabase/auth-ui-svelte';
|
3 | 3 | import { supabaseClient } from '../db';
|
4 |
| - import { ThemeSupa } from '@supabase/auth-ui-shared'; |
5 |
| - import Selector from './Selector.svelte'; |
6 |
| - import { customButtonColor, customBorderRadius, customSocialLayout } from './store'; |
| 4 | + import { ThemeSupa, type SocialLayout, type ViewType } from '@supabase/auth-ui-shared'; |
| 5 | + import MenuIcon from './MenuIcon.svelte'; |
| 6 | + import ToggleButton from './ToggleButton.svelte'; |
7 | 7 |
|
8 | 8 | const classes: { [key: string]: string } = {
|
9 | 9 | 'rgb(202, 37, 37)': 'container-redshadow',
|
10 | 10 | 'rgb(65, 163, 35)': 'container-greenshadow',
|
11 | 11 | 'rgb(8, 107, 177)': 'container-blueshadow',
|
12 | 12 | 'rgb(235, 115, 29)': 'container-orangeshadow'
|
13 | 13 | };
|
| 14 | +
|
| 15 | + const colors = [ |
| 16 | + 'rgb(202, 37, 37)', |
| 17 | + 'rgb(65, 163, 35)', |
| 18 | + 'rgb(8, 107, 177)', |
| 19 | + 'rgb(235, 115, 29)' |
| 20 | + ] as const; |
| 21 | +
|
| 22 | + const socialAlignments = ['horizontal', 'vertical'] as const; |
| 23 | +
|
| 24 | + const radii = ['5px', '10px', '20px'] as const; |
| 25 | +
|
| 26 | + const views: { id: ViewType; title: string }[] = [ |
| 27 | + { id: 'sign_in', title: 'Sign In' }, |
| 28 | + { id: 'sign_up', title: 'Sign Up' }, |
| 29 | + { id: 'magic_link', title: 'Magic Link' }, |
| 30 | + { id: 'forgotten_password', title: 'Forgotten Password' }, |
| 31 | + { id: 'update_password', title: 'Update Password' } |
| 32 | + ]; |
| 33 | +
|
| 34 | + let brandColor = colors[0]; |
| 35 | + let socialLayout = socialAlignments[1] satisfies SocialLayout; |
| 36 | + let borderRadius = radii[0]; |
| 37 | + let view = views[0]; |
14 | 38 | </script>
|
15 | 39 |
|
16 | 40 | <svelte:head>
|
17 | 41 | <title>Auth UI Svelte</title>
|
18 | 42 | </svelte:head>
|
19 | 43 |
|
20 |
| -<div class="header"> |
21 |
| - <div class="w-1/2 flex items-center justify-center"> |
22 |
| - <div class={classes[$customButtonColor]}> |
23 |
| - <Auth |
24 |
| - {supabaseClient} |
25 |
| - theme="dark" |
26 |
| - appearance={{ |
27 |
| - theme: ThemeSupa, |
28 |
| - style: { |
29 |
| - button: `border-color: rgba(0,0,0,0); border-radius: ${$customBorderRadius};` |
30 |
| - }, |
31 |
| - variables: { |
32 |
| - default: { |
33 |
| - colors: { |
34 |
| - brand: $customButtonColor, |
35 |
| - brandAccent: `gray` |
36 |
| - } |
37 |
| - } |
38 |
| - } |
39 |
| - }} |
40 |
| - providers={['apple', 'google', 'github']} |
41 |
| - socialLayout={$customSocialLayout} |
42 |
| - /> |
| 44 | +<div class="dark:bg-scale-200 bg-scale-100 relative py-2 pb-16"> |
| 45 | + <div |
| 46 | + class="sm:py-18 gap container relative mx-auto grid grid-cols-12 px-6 py-16 md:gap-16 md:py-24 lg:gap-16 lg:px-16 lg:py-24 xl:px-20" |
| 47 | + > |
| 48 | + <div class="relative col-span-12 mb-16 md:col-span-7 md:mb-0 lg:col-span-6"> |
| 49 | + <div class="relative lg:mx-auto lg:max-w-md bg-zinc-800"> |
| 50 | + <div class={classes[brandColor]}> |
| 51 | + <div class="border-scale-400 bg-scale-300 relative rounded-xl px-8 py-12 drop-shadow-sm"> |
| 52 | + <div class="mb-6 flex flex-col gap-6"> |
| 53 | + <div class="flex items-center gap-3"> |
| 54 | + <h1 class="text-scale-1200 text-2xl">Acme Industries</h1> |
| 55 | + </div> |
| 56 | + <p class="text-scale-1100 text-auth-widget-test">Sign in today for Supa stuff</p> |
| 57 | + </div> |
| 58 | + <Auth |
| 59 | + {supabaseClient} |
| 60 | + theme="dark" |
| 61 | + view={view.id} |
| 62 | + appearance={{ |
| 63 | + theme: ThemeSupa, |
| 64 | + variables: { |
| 65 | + default: { |
| 66 | + colors: { |
| 67 | + brand: brandColor, |
| 68 | + brandAccent: `gray` |
| 69 | + }, |
| 70 | + radii: { |
| 71 | + borderRadiusButton: borderRadius, |
| 72 | + buttonBorderRadius: borderRadius, |
| 73 | + inputBorderRadius: borderRadius |
| 74 | + } |
| 75 | + } |
| 76 | + } |
| 77 | + }} |
| 78 | + providers={['apple', 'google', 'github']} |
| 79 | + {socialLayout} |
| 80 | + /> |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + </div> |
| 85 | + |
| 86 | + <div class="col-span-12 md:col-span-5 lg:col-span-6"> |
| 87 | + <div class="!max-w-md"> |
| 88 | + <h3 class="text-2xl mb-8">Auth UI Svelte</h3> |
| 89 | + <p class="!mb-0">Pre-built auth widgets to get started in minutes.</p> |
| 90 | + <p class="text-scale-900 mt-0"> |
| 91 | + Customizable authentication UI component with custom themes and extensible styles to match |
| 92 | + your brand and aesthetic |
| 93 | + </p> |
| 94 | + <div class="mb-4 pt-6 flex items-center space-x-2"> |
| 95 | + <small>Currently available in Svelte, Solid.js and React</small> |
| 96 | + </div> |
| 97 | + </div> |
| 98 | + |
| 99 | + <div class="grid gap-8 py-8 lg:grid-cols-2"> |
| 100 | + <div class="flex flex-col gap-6"> |
| 101 | + <div class="text-scale-1200 text-base">Brand color</div> |
| 102 | + <div class="flex items-center gap-3"> |
| 103 | + <ToggleButton bind:selected={brandColor} defaultValue={colors[0]} color={colors[0]} /> |
| 104 | + <ToggleButton bind:selected={brandColor} defaultValue={colors[1]} color={colors[1]} /> |
| 105 | + <ToggleButton bind:selected={brandColor} defaultValue={colors[2]} color={colors[2]} /> |
| 106 | + <ToggleButton bind:selected={brandColor} defaultValue={colors[3]} color={colors[3]} /> |
| 107 | + </div> |
| 108 | + </div> |
| 109 | + |
| 110 | + <div class="flex flex-col gap-6"> |
| 111 | + <div class="text-scale-1200 text-base">Rounded corners</div> |
| 112 | + <div class="flex items-center gap-3"> |
| 113 | + <ToggleButton |
| 114 | + bind:selected={borderRadius} |
| 115 | + defaultValue={radii[0]} |
| 116 | + class="rounded-lg border-b-0 border-l-0" |
| 117 | + /> |
| 118 | + <ToggleButton |
| 119 | + bind:selected={borderRadius} |
| 120 | + defaultValue={radii[1]} |
| 121 | + class="rounded-xl border-b-0 border-l-0" |
| 122 | + /> |
| 123 | + <ToggleButton |
| 124 | + bind:selected={borderRadius} |
| 125 | + defaultValue={radii[2]} |
| 126 | + class="rounded-2xl border-b-0 border-l-0" |
| 127 | + /> |
| 128 | + </div> |
| 129 | + </div> |
| 130 | + |
| 131 | + <div class="flex flex-col gap-6"> |
| 132 | + <div class="text-scale-1200 text-base">Social Auth Layout</div> |
| 133 | + <div class="flex items-center gap-3"> |
| 134 | + <ToggleButton |
| 135 | + bind:selected={socialLayout} |
| 136 | + defaultValue={socialAlignments[0]} |
| 137 | + class="flex items-center justify-center" |
| 138 | + > |
| 139 | + <MenuIcon class="text-scale-900 dark:text-scale-1100 w-6 rotate-90" /> |
| 140 | + </ToggleButton> |
| 141 | + <ToggleButton |
| 142 | + bind:selected={socialLayout} |
| 143 | + defaultValue={socialAlignments[1]} |
| 144 | + class="flex items-center justify-center" |
| 145 | + > |
| 146 | + <MenuIcon class="text-scale-900 dark:text-scale-1100 w-6" /> |
| 147 | + </ToggleButton> |
| 148 | + </div> |
| 149 | + </div> |
| 150 | + |
| 151 | + <div class="flex flex-col gap-6"> |
| 152 | + <div class="text-scale-1200 text-base">Component View</div> |
| 153 | + <div class="flex items-center gap-3"> |
| 154 | + <div> |
| 155 | + <div class="relative inline-flex self-center"> |
| 156 | + <select |
| 157 | + bind:value={view} |
| 158 | + class="text-lg rounded border-2 border-blue-700 text-gray-600 pl-5 pr-10 h-12 bg-white hover:border-gray-400 appearance-none" |
| 159 | + > |
| 160 | + {#each views as v} |
| 161 | + <option value={v}>{v.title}</option> |
| 162 | + {/each} |
| 163 | + </select> |
| 164 | + </div> |
| 165 | + </div> |
| 166 | + </div> |
| 167 | + </div> |
| 168 | + </div> |
43 | 169 | </div>
|
44 | 170 | </div>
|
45 |
| - <Selector /> |
46 | 171 | </div>
|
| 172 | + |
| 173 | +<style> |
| 174 | + .container-redshadow { |
| 175 | + min-width: 364px; |
| 176 | + box-shadow: -1px 2px 32px 7px rgb(202, 37, 37); |
| 177 | + border-radius: 1rem; |
| 178 | + } |
| 179 | +
|
| 180 | + .container-greenshadow { |
| 181 | + min-width: 364px; |
| 182 | + box-shadow: -1px 2px 32px 7px rgb(65, 163, 35); |
| 183 | + border-radius: 1rem; |
| 184 | + } |
| 185 | +
|
| 186 | + .container-blueshadow { |
| 187 | + min-width: 364px; |
| 188 | + box-shadow: -1px 2px 32px 7px rgb(8, 107, 177); |
| 189 | + border-radius: 1rem; |
| 190 | + } |
| 191 | +
|
| 192 | + .container-orangeshadow { |
| 193 | + min-width: 364px; |
| 194 | + box-shadow: -1px 2px 32px 7px rgb(235, 115, 29); |
| 195 | + border-radius: 1rem; |
| 196 | + } |
| 197 | +</style> |
0 commit comments