Skip to content

Commit

Permalink
Move iOS and Android SDK to development phase (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins committed Dec 26, 2024
1 parent 776f514 commit fb5e41c
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 30 deletions.
24 changes: 14 additions & 10 deletions components/Layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,20 @@ export function Footer({ shortFooter }: { shortFooter?: boolean }): ReactElement
JS SDK
</Link>
</li>
<li className="site_item">
<Link href="/docs/ios-sdk" className="link">
iOS SDK
</Link>
</li>
<li className="site_item">
<Link href="/docs/android-sdk" className="link">
Android SDK
</Link>
</li>
{process.env.NODE_ENV === 'development' && (
<>
<li className="site_item">
<Link href="/docs/ios-sdk" className="link">
iOS SDK
</Link>
</li>
<li className="site_item">
<Link href="/docs/android-sdk" className="link">
Android SDK
</Link>
</li>
</>
)}
</ul>
</div>
<div className="site">
Expand Down
44 changes: 24 additions & 20 deletions components/Layout/MobileGnbDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,26 +87,30 @@ export function MobileGnbDropdown({ isLoggedIn }: { isLoggedIn: boolean }) {
JS SDK
</Link>
</li>
<li className="navigator_group">
<Link
href="/docs/ios-sdk"
className={classNames('navigator_item', 'add_icon', {
is_active: asPath.startsWith(`/docs/ios-sdk`),
})}
>
iOS SDK
</Link>
</li>
<li className="navigator_group">
<Link
href="/docs/android-sdk"
className={classNames('navigator_item', 'add_icon', {
is_active: asPath.startsWith(`/docs/android-sdk`),
})}
>
Android SDK
</Link>
</li>
{process.env.NODE_ENV === 'development' && (
<>
<li className="navigator_group">
<Link
href="/docs/ios-sdk"
className={classNames('navigator_item', 'add_icon', {
is_active: asPath.startsWith(`/docs/ios-sdk`),
})}
>
iOS SDK
</Link>
</li>
<li className="navigator_group">
<Link
href="/docs/android-sdk"
className={classNames('navigator_item', 'add_icon', {
is_active: asPath.startsWith(`/docs/android-sdk`),
})}
>
Android SDK
</Link>
</li>
</>
)}
<li className="navigator_group">
<Link
href="/docs/devtools"
Expand Down
1 change: 1 addition & 0 deletions docs/android-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'Android SDK'
order: 50
phase: development
---

## Android SDK
Expand Down
2 changes: 2 additions & 0 deletions docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ Welcome to Yorkie! In this guide, we will walk you through the steps to install
You can choose your preferred technology from the options below:

- [with JS SDK](/docs/getting-started/with-js-sdk)

iOS and Android SDKs are coming soon. Stay tuned!
- [with iOS SDK](/docs/getting-started/with-ios-sdk)
- [with Android SDK](/docs/getting-started/with-android-sdk)
1 change: 1 addition & 0 deletions docs/getting-started/with-android-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'with Android SDK'
order: 23
phase: development
---

## Getting Started with Android SDK
Expand Down
1 change: 1 addition & 0 deletions docs/getting-started/with-ios-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'with iOS SDK'
order: 22
phase: development
---

## Getting Started with iOS SDK
Expand Down
1 change: 1 addition & 0 deletions docs/ios-sdk.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'iOS SDK'
order: 40
phase: development
---

## iOS SDK
Expand Down

0 comments on commit fb5e41c

Please sign in to comment.