2019-09-23 11:32:50 +08:00
|
|
|
<i18n>
|
|
|
|
{
|
2019-12-23 16:31:26 +08:00
|
|
|
"zh-CN": {
|
2019-09-23 11:32:50 +08:00
|
|
|
"dark": "深色",
|
2020-02-05 13:46:57 +08:00
|
|
|
"light": "浅色",
|
2020-03-06 16:13:45 +08:00
|
|
|
"searchPlaceholder": "搜索",
|
2020-02-27 18:09:23 +08:00
|
|
|
"home": "首页",
|
2020-03-04 03:01:15 +08:00
|
|
|
"doc": "文档",
|
|
|
|
"common": "常规",
|
2020-03-04 14:34:14 +08:00
|
|
|
"debug": "调试",
|
2020-02-29 14:55:52 +08:00
|
|
|
"alreadyHome": "别点了,你已经在首页了"
|
2019-09-23 11:32:50 +08:00
|
|
|
},
|
2019-12-23 16:31:26 +08:00
|
|
|
"en-US": {
|
2019-09-23 11:32:50 +08:00
|
|
|
"dark": "Dark",
|
2020-02-05 13:46:57 +08:00
|
|
|
"light": "Light",
|
2020-03-06 16:13:45 +08:00
|
|
|
"searchPlaceholder": "Search",
|
2020-02-27 18:09:23 +08:00
|
|
|
"home": "Home",
|
2020-03-04 03:01:15 +08:00
|
|
|
"doc": "Documentation",
|
|
|
|
"common": "Common",
|
2020-03-04 14:34:14 +08:00
|
|
|
"debug": "Debug",
|
2020-02-29 14:55:52 +08:00
|
|
|
"alreadyHome": "You've already been in home page. No clicking."
|
2019-09-23 11:32:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</i18n>
|
|
|
|
|
2019-09-17 19:28:28 +08:00
|
|
|
<template>
|
2020-03-03 19:25:25 +08:00
|
|
|
<n-layout-header
|
|
|
|
bordered
|
|
|
|
:style="{
|
2020-03-11 21:06:19 +08:00
|
|
|
position: 'relative',
|
2020-03-03 19:25:25 +08:00
|
|
|
zIndex: zIndex
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<div class="nav">
|
2020-05-30 21:41:10 +08:00
|
|
|
<n-config-consumer v-slot="{ styleScheme }" abstract>
|
|
|
|
<div
|
|
|
|
class="ui-logo"
|
|
|
|
:style="{
|
|
|
|
color: styleScheme.primaryTextColor
|
|
|
|
}"
|
|
|
|
@click="handleLogoClick"
|
|
|
|
>
|
|
|
|
<img src="./assets/images/naivelogo.svg">
|
|
|
|
Naive UI ({{ version }})
|
|
|
|
</div>
|
|
|
|
</n-config-consumer>
|
2020-03-03 19:25:25 +08:00
|
|
|
<div style=" margin-left: 56px; display: flex; align-items: center;">
|
|
|
|
<n-auto-complete
|
|
|
|
v-model="searchInputValue"
|
|
|
|
style="width: 216px;"
|
|
|
|
:z-index="zIndex && zIndex + 1"
|
|
|
|
:placeholder="$t('searchPlaceholder')"
|
|
|
|
:options="searchOptions"
|
|
|
|
clear-after-select
|
|
|
|
blur-after-select
|
|
|
|
@select="handleSelect"
|
|
|
|
/>
|
|
|
|
<div class="nav-menu">
|
|
|
|
<n-menu mode="horizontal" :value="menuValue" @select="handleMenuSelect">
|
|
|
|
<n-menu-item :title="$t('home')" name="home" />
|
|
|
|
<n-menu-item :title="$t('doc')" name="doc" />
|
|
|
|
</n-menu>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="display: flex;">
|
2020-03-05 09:57:29 +08:00
|
|
|
<n-tag class="nav-picker" @click.native="handleThemeChange">
|
2020-05-16 21:36:52 +08:00
|
|
|
{{ $t(themeOptions[theme].label) }}
|
2020-03-03 19:25:25 +08:00
|
|
|
</n-tag>
|
2020-03-05 09:57:29 +08:00
|
|
|
<n-tag class="nav-picker" @click.native="handleLanguageChange">
|
2020-03-03 19:25:25 +08:00
|
|
|
{{ langOptions[lang].label }}
|
|
|
|
</n-tag>
|
2020-03-05 09:57:29 +08:00
|
|
|
<n-tag
|
|
|
|
v-if="env==='development'"
|
|
|
|
class="nav-picker"
|
|
|
|
@click.native="handleModeChange"
|
|
|
|
>
|
|
|
|
{{ modeOptions[mode].label }}
|
|
|
|
</n-tag>
|
2020-02-27 18:09:23 +08:00
|
|
|
</div>
|
2019-11-22 18:49:53 +08:00
|
|
|
</div>
|
2020-03-03 19:25:25 +08:00
|
|
|
</n-layout-header>
|
2019-09-17 19:28:28 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-09-20 00:22:55 +08:00
|
|
|
import { version } from '../package.json'
|
2020-02-12 13:44:53 +08:00
|
|
|
import withapp from '../src/_mixins/withapp'
|
2020-03-17 16:48:36 +08:00
|
|
|
import { state, setMode } from './store'
|
2019-09-17 19:28:28 +08:00
|
|
|
|
2020-02-26 17:21:03 +08:00
|
|
|
function match (pattern, string) {
|
|
|
|
if (!pattern.length) return true
|
|
|
|
if (!string.length) return false
|
|
|
|
if (pattern[0] === string[0]) return match(pattern.slice(1), string.slice(1))
|
|
|
|
return match(pattern, string.slice(1))
|
|
|
|
}
|
|
|
|
|
2019-09-17 19:28:28 +08:00
|
|
|
export default {
|
|
|
|
mixins: [withapp],
|
2019-09-24 16:59:07 +08:00
|
|
|
props: {
|
|
|
|
lang: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
2019-11-22 18:49:53 +08:00
|
|
|
},
|
|
|
|
items: {
|
|
|
|
type: Array,
|
|
|
|
default: () => []
|
2020-03-04 03:01:15 +08:00
|
|
|
},
|
|
|
|
env: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
2019-09-24 16:59:07 +08:00
|
|
|
}
|
|
|
|
},
|
2019-09-17 19:28:28 +08:00
|
|
|
data () {
|
|
|
|
return {
|
2019-11-22 18:49:53 +08:00
|
|
|
searchInputValue: '',
|
2019-09-20 00:22:55 +08:00
|
|
|
version,
|
2020-03-17 16:48:36 +08:00
|
|
|
state: state,
|
2020-02-29 17:40:09 +08:00
|
|
|
themeOptions: {
|
|
|
|
dark: {
|
2020-05-16 21:36:52 +08:00
|
|
|
label: 'light',
|
2020-02-29 17:40:09 +08:00
|
|
|
next: 'light'
|
2019-09-21 17:03:37 +08:00
|
|
|
},
|
2020-02-29 17:40:09 +08:00
|
|
|
light: {
|
2020-05-16 21:36:52 +08:00
|
|
|
label: 'dark',
|
2020-02-29 17:40:09 +08:00
|
|
|
next: 'dark'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
langOptions: {
|
|
|
|
'zh-CN': {
|
2019-09-21 17:03:37 +08:00
|
|
|
label: 'English',
|
2020-02-29 17:40:09 +08:00
|
|
|
next: 'en-US'
|
|
|
|
},
|
|
|
|
'en-US': {
|
|
|
|
label: '中文',
|
|
|
|
next: 'zh-CN'
|
2019-09-21 17:03:37 +08:00
|
|
|
}
|
2020-03-04 14:34:14 +08:00
|
|
|
},
|
|
|
|
modeOptions: {
|
|
|
|
'debug': {
|
2020-03-05 13:46:19 +08:00
|
|
|
label: 'Production',
|
2020-03-04 14:34:14 +08:00
|
|
|
next: 'common'
|
|
|
|
},
|
|
|
|
'common': {
|
|
|
|
label: 'Debug',
|
|
|
|
next: 'debug'
|
|
|
|
}
|
2020-02-29 17:40:09 +08:00
|
|
|
}
|
2019-09-17 19:28:28 +08:00
|
|
|
}
|
|
|
|
},
|
2019-09-23 11:32:50 +08:00
|
|
|
computed: {
|
2020-03-17 16:48:36 +08:00
|
|
|
mode () {
|
2020-03-17 18:54:21 +08:00
|
|
|
return this.state.mode
|
2020-03-17 16:48:36 +08:00
|
|
|
},
|
2020-03-03 19:25:25 +08:00
|
|
|
zIndex () {
|
|
|
|
const path = this.$route.path
|
2020-03-05 22:31:20 +08:00
|
|
|
return (path.endsWith('n-modal') || path.endsWith('n-drawer') || path.endsWith('n-confirm')) ? null : 3000
|
2020-03-03 19:25:25 +08:00
|
|
|
},
|
2020-02-29 17:40:09 +08:00
|
|
|
theme () {
|
|
|
|
return this.NConfigProvider.$parent.theme
|
2020-03-04 03:01:15 +08:00
|
|
|
},
|
2020-02-27 18:09:23 +08:00
|
|
|
menuValue () {
|
|
|
|
if (/^(\/[^/]+){2}\/doc/.test(this.$route.path)) return 'doc'
|
|
|
|
else if (this.$route.name === 'home') return 'home'
|
|
|
|
return null
|
|
|
|
},
|
2019-11-22 18:49:53 +08:00
|
|
|
searchOptions () {
|
2020-02-11 18:10:49 +08:00
|
|
|
function getLabel (item) {
|
|
|
|
if (item.title) return item.title + (item.titleExtra ? (' ' + item.titleExtra) : '')
|
|
|
|
return item.name
|
|
|
|
}
|
2019-11-22 18:49:53 +08:00
|
|
|
if (!this.searchInputValue) return []
|
2020-02-11 18:10:49 +08:00
|
|
|
const replaceRegex = / |-/g
|
2019-11-22 18:49:53 +08:00
|
|
|
return this.items.filter(item => {
|
2020-02-11 18:10:49 +08:00
|
|
|
const pattern = this.searchInputValue.toLowerCase().replace(replaceRegex, '').slice(0, 20)
|
|
|
|
const label = getLabel(item).toLowerCase().replace(replaceRegex, '')
|
2020-02-26 17:21:03 +08:00
|
|
|
return match(pattern, label)
|
2019-12-28 00:27:26 +08:00
|
|
|
}).map(item => ({
|
2020-02-11 18:10:49 +08:00
|
|
|
label: getLabel(item),
|
2019-11-22 18:49:53 +08:00
|
|
|
value: item.path
|
|
|
|
}))
|
|
|
|
},
|
2019-09-23 11:32:50 +08:00
|
|
|
options: function () {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
label: this.$t('dark'),
|
2019-09-24 16:59:07 +08:00
|
|
|
value: 'dark'
|
2019-09-23 11:32:50 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
label: this.$t('light'),
|
|
|
|
value: 'light'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2019-09-17 19:28:28 +08:00
|
|
|
methods: {
|
2020-02-27 23:03:15 +08:00
|
|
|
handleLogoClick () {
|
2020-02-29 14:55:52 +08:00
|
|
|
if (/^(\/[^/]+){2}$/.test(this.$route.path)) {
|
|
|
|
this.$NMessage.info(this.$t('alreadyHome'))
|
|
|
|
return
|
|
|
|
}
|
2020-02-27 23:03:15 +08:00
|
|
|
this.$router.push(
|
2020-03-04 18:22:25 +08:00
|
|
|
/^(\/[^/]+){2}/.exec(this.$route.path)[0]
|
2020-02-27 23:03:15 +08:00
|
|
|
)
|
|
|
|
},
|
2019-11-22 18:49:53 +08:00
|
|
|
handleSelect (value) {
|
|
|
|
this.$router.push(value)
|
2020-02-27 18:09:23 +08:00
|
|
|
},
|
|
|
|
handleMenuSelect (value) {
|
|
|
|
if (value === 'home') {
|
|
|
|
this.$router.push(
|
2020-03-04 18:22:25 +08:00
|
|
|
/^(\/[^/]+){2}/.exec(this.$route.path)[0]
|
2020-02-27 18:09:23 +08:00
|
|
|
)
|
|
|
|
} if (value === 'doc') {
|
2020-03-04 18:22:25 +08:00
|
|
|
if (/^(\/[^/]+){2}\/doc/.test(this.$route.path)) {
|
2020-02-27 18:09:23 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
this.$router.push(
|
2020-03-04 18:22:25 +08:00
|
|
|
/^(\/[^/]+){2}/.exec(this.$route.path)[0] + '/doc/start'
|
2020-02-27 18:09:23 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2019-11-22 18:49:53 +08:00
|
|
|
},
|
2020-02-29 17:40:09 +08:00
|
|
|
handleThemeChange () {
|
|
|
|
this.NConfigProvider.$parent.theme = this.themeOptions[this.theme].next
|
2019-09-27 22:28:25 +08:00
|
|
|
},
|
2020-03-04 14:34:14 +08:00
|
|
|
handleModeChange () {
|
2020-03-17 16:48:36 +08:00
|
|
|
setMode(this.modeOptions[this.mode].next)
|
2020-03-04 03:01:15 +08:00
|
|
|
},
|
2020-02-29 17:40:09 +08:00
|
|
|
handleLanguageChange () {
|
|
|
|
this.$emit('lang-change', this.langOptions[this.lang].next)
|
2019-09-17 19:28:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.nav {
|
|
|
|
display: grid;
|
2020-02-29 17:40:09 +08:00
|
|
|
grid-template-columns: 288px 1fr auto 32px;
|
2020-02-27 18:09:23 +08:00
|
|
|
grid-template-rows: 63px;
|
2019-09-17 19:28:28 +08:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.ui-logo {
|
2020-02-27 23:03:15 +08:00
|
|
|
cursor: pointer;
|
2019-10-20 00:18:55 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-02-22 20:25:10 +08:00
|
|
|
padding-left: 36px;
|
2019-10-20 00:18:55 +08:00
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
.ui-logo > img {
|
|
|
|
margin-right: 12px;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
2019-09-17 19:28:28 +08:00
|
|
|
}
|
2020-02-27 18:09:23 +08:00
|
|
|
.nav-menu {
|
|
|
|
padding-left: 32px;
|
|
|
|
}
|
|
|
|
.nav-menu .n-menu-item {
|
|
|
|
height: 63px !important;
|
|
|
|
}
|
2020-03-04 14:34:14 +08:00
|
|
|
.nav-picker {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 12px;
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2019-09-17 19:28:28 +08:00
|
|
|
}
|
|
|
|
</style>
|