mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
docs(console): improve code sample in vue tutorial (#1519)
This commit is contained in:
parent
14b049a8b5
commit
b4c202275b
2 changed files with 63 additions and 43 deletions
|
@ -93,21 +93,25 @@ We provide two composables `useHandleSignInCallback()` and `useLogto()`, which c
|
||||||
Go back to your IDE/editor, use the following code to implement the sign-in button:
|
Go back to your IDE/editor, use the following code to implement the sign-in button:
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
<code className="language-ts">
|
<code className="language-html">
|
||||||
{`import { useLogto } from "@logto/vue";
|
{`<script setup lang="ts">
|
||||||
|
import { useLogto } from "@logto/vue";
|
||||||
|
|
||||||
const { signIn, isAuthenticated } = useLogto();
|
const { signIn, isAuthenticated } = useLogto();
|
||||||
const onClickSignIn = () => signIn('${props.redirectUris[0] ?? 'http://localhost:1234/callback'}');`}
|
const onClickSignIn = () => signIn('${props.redirectUris[0] ?? 'http://localhost:1234/callback'}');
|
||||||
|
</script>`}
|
||||||
</code>
|
</code>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<div v-if="isAuthenticated">
|
<template>
|
||||||
|
<div v-if="isAuthenticated">
|
||||||
<div>Signed in</div>
|
<div>Signed in</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<button @click="onClickSignIn">Sign In</button>
|
<button @click="onClickSignIn">Sign In</button>
|
||||||
</div>
|
</div>
|
||||||
|
</template>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Handle redirect
|
### Handle redirect
|
||||||
|
@ -116,12 +120,14 @@ We're almost there! In the last step, we use `http://localhost:1234/callback` as
|
||||||
|
|
||||||
First let's create a callback component:
|
First let's create a callback component:
|
||||||
|
|
||||||
```ts
|
```html
|
||||||
// CallbackView.vue
|
<!-- CallbackView.vue -->
|
||||||
import { useHandleSignInCallback } from '@logto/vue';
|
<script setup lang="ts">
|
||||||
const { isLoading } = useHandleSignInCallback(() => {
|
import { useHandleSignInCallback } from '@logto/vue';
|
||||||
|
const { isLoading } = useHandleSignInCallback(() => {
|
||||||
// Navigate to root path when finished
|
// Navigate to root path when finished
|
||||||
});
|
});
|
||||||
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
```html
|
```html
|
||||||
|
@ -165,16 +171,20 @@ After signing out, it'll be great to redirect user back to your website. Let's a
|
||||||
### Implement a sign-out button
|
### Implement a sign-out button
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
<code className="language-ts">
|
<code className="language-html">
|
||||||
{`import { useLogto } from "@logto/vue";
|
{`<script setup lang="ts">
|
||||||
|
import { useLogto } from "@logto/vue";
|
||||||
|
|
||||||
const { signOut } = useLogto();
|
const { signOut } = useLogto();
|
||||||
const onClickSignOut = () => signOut('${props.postLogoutRedirectUris[0] ?? 'http://localhost:1234'}');`}
|
const onClickSignOut = () => signOut('${props.postLogoutRedirectUris[0] ?? 'http://localhost:1234'}');
|
||||||
|
</script>`}
|
||||||
</code>
|
</code>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<button @click="onClickSignOut">Sign Out</button>
|
<template>
|
||||||
|
<button @click="onClickSignOut">Sign Out</button>
|
||||||
|
</template>
|
||||||
```
|
```
|
||||||
|
|
||||||
</Step>
|
</Step>
|
||||||
|
|
|
@ -93,21 +93,25 @@ app.mount("#app");`}
|
||||||
返回你的 IDE 或编辑器,使用如下代码来实现一个登录按钮:
|
返回你的 IDE 或编辑器,使用如下代码来实现一个登录按钮:
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
<code className="language-ts">
|
<code className="language-html">
|
||||||
{`import { useLogto } from "@logto/vue";
|
{`<script setup lang="ts">
|
||||||
|
import { useLogto } from "@logto/vue";
|
||||||
|
|
||||||
const { signIn, isAuthenticated } = useLogto();
|
const { signIn, isAuthenticated } = useLogto();
|
||||||
const onClickSignIn = () => signIn('${props.redirectUris[0] ?? 'http://localhost:1234/callback'}');`}
|
const onClickSignIn = () => signIn('${props.redirectUris[0] ?? 'http://localhost:1234/callback'}');
|
||||||
|
</script>`}
|
||||||
</code>
|
</code>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<div v-if="isAuthenticated">
|
<template>
|
||||||
|
<div v-if="isAuthenticated">
|
||||||
<div>已登录</div>
|
<div>已登录</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<button @click="onClickSignIn">登录</button>
|
<button @click="onClickSignIn">登录</button>
|
||||||
</div>
|
</div>
|
||||||
|
</template>
|
||||||
```
|
```
|
||||||
|
|
||||||
### 处理重定向
|
### 处理重定向
|
||||||
|
@ -116,12 +120,14 @@ const onClickSignIn = () => signIn('${props.redirectUris[0] ?? 'http://localhost
|
||||||
|
|
||||||
首先,让我们来创建一个 Callback 组件:
|
首先,让我们来创建一个 Callback 组件:
|
||||||
|
|
||||||
```ts
|
```html
|
||||||
// CallbackView.vue
|
<!-- CallbackView.vue -->
|
||||||
import { useHandleSignInCallback } from '@logto/vue';
|
<script setup lang="ts">
|
||||||
const { isLoading } = useHandleSignInCallback(() => {
|
import { useHandleSignInCallback } from '@logto/vue';
|
||||||
|
const { isLoading } = useHandleSignInCallback(() => {
|
||||||
// 完成时跳转至根路由
|
// 完成时跳转至根路由
|
||||||
});
|
});
|
||||||
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
```html
|
```html
|
||||||
|
@ -165,16 +171,20 @@ const router = createRouter({
|
||||||
### 实现退出登录按钮
|
### 实现退出登录按钮
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
<code className="language-ts">
|
<code className="language-html">
|
||||||
{`import { useLogto } from "@logto/vue";
|
{`<script setup lang="ts">
|
||||||
|
import { useLogto } from "@logto/vue";
|
||||||
|
|
||||||
const { signOut } = useLogto();
|
const { signOut } = useLogto();
|
||||||
const onClickSignOut = () => signOut('${props.postLogoutRedirectUris[0] ?? 'http://localhost:1234'}');`}
|
const onClickSignOut = () => signOut('${props.postLogoutRedirectUris[0] ?? 'http://localhost:1234'}');
|
||||||
|
</script>`}
|
||||||
</code>
|
</code>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<button @click="onClickSignOut">退出登录</button>
|
<template>
|
||||||
|
<button @click="onClickSignOut">退出登录</button>
|
||||||
|
</template>
|
||||||
```
|
```
|
||||||
|
|
||||||
</Step>
|
</Step>
|
||||||
|
|
Loading…
Reference in a new issue