* adding to view * updating the portal location * add new line * updating font styling to class * Update components/Search.tsx Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com> * Update components/Search.module.scss Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com> * update ItemInput * using router.replace and import updates * Update components/Search.tsx Co-authored-by: Peter Bengtsson <peterbe@github.com> * run prettier * Update components/Search.tsx Co-authored-by: Peter Bengtsson <peterbe@github.com> Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com> Co-authored-by: Peter Bengtsson <peterbe@github.com>
18 lines
516 B
TypeScript
18 lines
516 B
TypeScript
import { useRouter } from 'next/router'
|
|
|
|
type VersionInfo = {
|
|
currentVersion: string
|
|
isEnterprise: boolean
|
|
isEnterpriseServer: boolean
|
|
}
|
|
export const DEFAULT_VERSION = 'free-pro-team@latest'
|
|
export const useVersion = (): VersionInfo => {
|
|
const router = useRouter()
|
|
const currentVersion = (router.query.versionId as string) || DEFAULT_VERSION
|
|
return {
|
|
currentVersion,
|
|
isEnterprise: currentVersion.includes('enterprise'),
|
|
isEnterpriseServer: currentVersion.includes('enterprise-server'),
|
|
}
|
|
}
|