mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: big wizard audit
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep beforeSubmit={createDomain}>
|
||||
<svelte:fragment slot="title">Add function domain</svelte:fragment>
|
||||
<svelte:fragment slot="title">Domain</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Use your self-owned domain as the endpoint of your Appwrite API. <a
|
||||
href="https://appwrite.io/docs/advanced/platform/custom-domains"
|
||||
|
||||
@@ -44,6 +44,7 @@
|
||||
|
||||
<WizardStep {beforeSubmit}>
|
||||
<svelte:fragment slot="title">
|
||||
<!-- @vincentge - What about this? -->
|
||||
{hasProjects ? 'Select project' : 'Create project'}
|
||||
</svelte:fragment>
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep beforeSubmit={validateCoupon}>
|
||||
<svelte:fragment slot="title">Add credits</svelte:fragment>
|
||||
<svelte:fragment slot="title">Credits</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Add Appwrite credits to your organization. A payment method is required before credits can
|
||||
be applied.
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep beforeSubmit={handleSubmit}>
|
||||
<svelte:fragment slot="title">Payment details</svelte:fragment>
|
||||
<svelte:fragment slot="title">Details</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Add a payment method to your organization. You will not be charged until you upgrade to a
|
||||
Pro or Scale plan.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<svelte:fragment slot="title">Add Scopes</svelte:fragment>
|
||||
<svelte:fragment slot="title">Scopes</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Choose which permission scopes to grant your application. It is best practice to allow only
|
||||
the permissions you need to meet your project goals.
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep {beforeSubmit}>
|
||||
<svelte:fragment slot="title">Register your Android app</svelte:fragment>
|
||||
<svelte:fragment slot="title">Android registration</svelte:fragment>
|
||||
<FormList>
|
||||
<InputText
|
||||
id="name"
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">Get the SDK</svelte:fragment>
|
||||
<p>First, add this to your root level <code class="inline-code">build.gradle</code> file.</p>
|
||||
<Code label="Groovy" labelIcon="android" language="kotlin" code={example1} withCopy />
|
||||
|
||||
@@ -15,6 +15,7 @@ val client = Client(context)
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">Initialize SDK</svelte:fragment>
|
||||
|
||||
<h2 class="heading-level-7">Initialize your SDK</h2>
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep {beforeSubmit}>
|
||||
<svelte:fragment slot="title">Register your bundle ID</svelte:fragment>
|
||||
<svelte:fragment slot="title">Apple registration</svelte:fragment>
|
||||
|
||||
<FormList isCommonSection>
|
||||
<FormItem>
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">Get the SDK</svelte:fragment>
|
||||
<div class="u-flex u-gap-16 u-margin-block-start-8">
|
||||
<Pill button on:click={() => (method = Method.Xcode)} selected={method === Method.Xcode}>
|
||||
|
||||
@@ -17,6 +17,7 @@ let client = Client()
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">Initialize SDK</svelte:fragment>
|
||||
|
||||
<h2 class="heading-level-7">Initialize your SDK</h2>
|
||||
|
||||
@@ -149,16 +149,16 @@
|
||||
|
||||
$: registee = {
|
||||
[PlatformType.Flutterandroid]: 'package name',
|
||||
[PlatformType.Flutterios]: 'bundle ID',
|
||||
[PlatformType.Flutterlinux]: 'package name',
|
||||
[PlatformType.Fluttermacos]: 'bundle ID',
|
||||
[PlatformType.Flutterwindows]: 'package name',
|
||||
[PlatformType.Flutterweb]: 'hostname'
|
||||
[PlatformType.Flutterios]: 'Bundle ID',
|
||||
[PlatformType.Flutterlinux]: 'Package name',
|
||||
[PlatformType.Fluttermacos]: 'Bundle ID',
|
||||
[PlatformType.Flutterwindows]: 'Package name',
|
||||
[PlatformType.Flutterweb]: 'Hostname'
|
||||
}[platform];
|
||||
</script>
|
||||
|
||||
<WizardStep {beforeSubmit}>
|
||||
<svelte:fragment slot="title">Register your {registee}</svelte:fragment>
|
||||
<svelte:fragment slot="title">{registee} registration</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
<div class="u-flex u-gap-16 u-margin-block-start-8 u-flex-wrap">
|
||||
<Pill
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">Get the SDK</svelte:fragment>
|
||||
|
||||
<p>
|
||||
|
||||
@@ -18,6 +18,7 @@ client
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">Initialize SDK</svelte:fragment>
|
||||
|
||||
<h2 class="heading-level-7">Initialize your SDK</h2>
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">You're ready to go 🎉</svelte:fragment>
|
||||
<p>
|
||||
{#if isFirstProject}
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep {beforeSubmit}>
|
||||
<svelte:fragment slot="title">Register your hostname</svelte:fragment>
|
||||
<svelte:fragment slot="title">Hostname registration</svelte:fragment>
|
||||
<FormList>
|
||||
<InputText
|
||||
id="name"
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">Get the SDK</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Choose your preferred method of installation
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep beforeSubmit={handleBefore}>
|
||||
<svelte:fragment slot="title">Confirm your details</svelte:fragment>
|
||||
<svelte:fragment slot="title">Details</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Confirm the details of your new organization and start your free trial.
|
||||
</svelte:fragment>
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep beforeSubmit={handleBefore}>
|
||||
<svelte:fragment slot="title">Choose a plan</svelte:fragment>
|
||||
<svelte:fragment slot="title">Plan selection</svelte:fragment>
|
||||
|
||||
<p class="body-text-1 u-bold common-section">Plan</p>
|
||||
<p class="text u-margin-block-start-4">
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
|
||||
{#if downgradeToStarter}
|
||||
<WizardStep>
|
||||
<svelte:fragment slot="title">Confirm plan change</svelte:fragment>
|
||||
<svelte:fragment slot="title">Change confirmation</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Your feedback is important to us and helps us improve the services Appwrite offer. If
|
||||
there is a specific reason you chose to change your plan at this time, please let us
|
||||
@@ -65,7 +65,7 @@
|
||||
</WizardStep>
|
||||
{:else}
|
||||
<WizardStep>
|
||||
<svelte:fragment slot="title">Confirm your details</svelte:fragment>
|
||||
<svelte:fragment slot="title">Details</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Confirm the details of your new organization and start your free trial.
|
||||
</svelte:fragment>
|
||||
|
||||
@@ -7,8 +7,9 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<svelte:fragment slot="title"
|
||||
>Your usage exceeds the limits of the {tierToPlan($organization.billingPlan).name} plan</svelte:fragment>
|
||||
<svelte:fragment slot="title">
|
||||
<!-- @vincentge - What about this? -->
|
||||
Your usage exceeds the limits of the {tierToPlan($organization.billingPlan).name} plan</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
View the current usage for <b>{$organization.name}</b> and where you will exceed the limits of
|
||||
your new plan.
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep {beforeSubmit}>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">{$selectedFeedback.title}</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">{$selectedFeedback.desc}</svelte:fragment>
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">Thanks for the feedback!</svelte:fragment>
|
||||
|
||||
<div class="u-flex u-main-center">
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
</script>
|
||||
|
||||
<WizardStep>
|
||||
<!-- @vincentge - What about this? -->
|
||||
<svelte:fragment slot="title">How can we help you?</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
Please describe your request in detail. If applicable, include steps for reproduction of any
|
||||
|
||||
Reference in New Issue
Block a user