mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs: improve demo translating
This commit is contained in:
parent
b3dfb4997f
commit
09858eb1d3
22
docs/site/use-translate.ts
Normal file
22
docs/site/use-translate.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import Locale from '../../src/locale';
|
||||||
|
import { camelize } from '../../src/utils/format/string';
|
||||||
|
import { createTranslate } from '../../src/utils/create/translate';
|
||||||
|
|
||||||
|
let demoUid = 0;
|
||||||
|
|
||||||
|
export function useTranslate(i18n: Record<string, any>) {
|
||||||
|
const demoName = `demo-i18n-${demoUid++}`;
|
||||||
|
|
||||||
|
if (i18n) {
|
||||||
|
const locales = {};
|
||||||
|
const camelizedName = camelize(demoName);
|
||||||
|
|
||||||
|
Object.keys(i18n).forEach((key) => {
|
||||||
|
locales[key] = { [camelizedName]: i18n[key] };
|
||||||
|
});
|
||||||
|
|
||||||
|
Locale.add(locales);
|
||||||
|
}
|
||||||
|
|
||||||
|
return createTranslate(demoName);
|
||||||
|
}
|
@ -6,4 +6,7 @@ module.exports = {
|
|||||||
'!**/test/**',
|
'!**/test/**',
|
||||||
'!**/lang/**',
|
'!**/lang/**',
|
||||||
],
|
],
|
||||||
|
moduleNameMapper: {
|
||||||
|
'^@demo(.*)$': '<rootDir>/docs/site$1',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
@ -53,11 +53,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { computed, reactive, toRefs } from 'vue';
|
import { computed, reactive, toRefs } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Toast from '../../toast';
|
import Toast from '../../toast';
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
option1: '选项一',
|
option1: '选项一',
|
||||||
option2: '选项二',
|
option2: '选项二',
|
||||||
@ -86,10 +85,11 @@ export default {
|
|||||||
disabledOption: 'Disabled Option',
|
disabledOption: 'Disabled Option',
|
||||||
showDescription: 'Show Description',
|
showDescription: 'Show Description',
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
show: {
|
show: {
|
||||||
basic: false,
|
basic: false,
|
||||||
@ -129,6 +129,7 @@ export default {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
|
t,
|
||||||
onSelect,
|
onSelect,
|
||||||
onCancel,
|
onCancel,
|
||||||
simpleActions,
|
simpleActions,
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
import { getCurrentInstance } from 'vue';
|
|
||||||
import { noop } from '../utils';
|
|
||||||
import { createTranslate } from '../utils/create/translate';
|
|
||||||
|
|
||||||
export function useTranslate() {
|
|
||||||
const { name } = getCurrentInstance()!.type;
|
|
||||||
return name ? createTranslate(name) : noop;
|
|
||||||
}
|
|
@ -42,11 +42,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Toast from '../../toast';
|
import Toast from '../../toast';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
reset: '重置',
|
reset: '重置',
|
||||||
pause: '暂停',
|
pause: '暂停',
|
||||||
@ -69,10 +68,11 @@ export default {
|
|||||||
manualControl: 'Manual Control',
|
manualControl: 'Manual Control',
|
||||||
formatWithDay: 'DD Day, HH:mm:ss',
|
formatWithDay: 'DD Day, HH:mm:ss',
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const time = ref(30 * 60 * 60 * 1000);
|
const time = ref(30 * 60 * 60 * 1000);
|
||||||
const countDown = ref(null);
|
const countDown = ref(null);
|
||||||
|
|
||||||
@ -90,6 +90,7 @@ export default {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
t,
|
||||||
time,
|
time,
|
||||||
start,
|
start,
|
||||||
pause,
|
pause,
|
||||||
|
@ -29,11 +29,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Dialog from '..';
|
import Dialog from '..';
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
alert1: '提示弹窗',
|
alert1: '提示弹窗',
|
||||||
alert2: '提示弹窗(无标题)',
|
alert2: '提示弹窗(无标题)',
|
||||||
@ -51,10 +50,11 @@ export default {
|
|||||||
roundButton: 'Round Button Style',
|
roundButton: 'Round Button Style',
|
||||||
componentCall: 'Component Call',
|
componentCall: 'Component Call',
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const show = ref(false);
|
const show = ref(false);
|
||||||
|
|
||||||
const onClickAlert = () => {
|
const onClickAlert = () => {
|
||||||
@ -106,6 +106,7 @@ export default {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
t,
|
||||||
show,
|
show,
|
||||||
image: 'https://img.yzcdn.cn/vant/apple-3.jpg',
|
image: 'https://img.yzcdn.cn/vant/apple-3.jpg',
|
||||||
onClickAlert,
|
onClickAlert,
|
||||||
|
@ -121,7 +121,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
>
|
>
|
||||||
<div class="van-button__content">
|
<div class="van-button__content">
|
||||||
<span class="van-button__text">
|
<span class="van-button__text">
|
||||||
Confirm dialog
|
Confirm
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
|
@ -35,19 +35,11 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { reactive, toRefs } from 'vue';
|
import { reactive, toRefs } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import ImagePreview from '..';
|
import ImagePreview from '..';
|
||||||
import Toast from '../../toast';
|
import Toast from '../../toast';
|
||||||
|
|
||||||
const images = [
|
const i18n = {
|
||||||
'https://img.yzcdn.cn/vant/apple-1.jpg',
|
|
||||||
'https://img.yzcdn.cn/vant/apple-2.jpg',
|
|
||||||
'https://img.yzcdn.cn/vant/apple-3.jpg',
|
|
||||||
'https://img.yzcdn.cn/vant/apple-4.jpg',
|
|
||||||
];
|
|
||||||
|
|
||||||
export default {
|
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
closed: '关闭',
|
closed: '关闭',
|
||||||
showClose: '展示关闭按钮',
|
showClose: '展示关闭按钮',
|
||||||
@ -70,10 +62,18 @@ export default {
|
|||||||
componentCall: 'Component Call',
|
componentCall: 'Component Call',
|
||||||
index: (index) => `Page: ${index}`,
|
index: (index) => `Page: ${index}`,
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
const images = [
|
||||||
|
'https://img.yzcdn.cn/vant/apple-1.jpg',
|
||||||
|
'https://img.yzcdn.cn/vant/apple-2.jpg',
|
||||||
|
'https://img.yzcdn.cn/vant/apple-3.jpg',
|
||||||
|
'https://img.yzcdn.cn/vant/apple-4.jpg',
|
||||||
|
];
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
show: false,
|
show: false,
|
||||||
index: 0,
|
index: 0,
|
||||||
@ -113,6 +113,7 @@ export default {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
|
t,
|
||||||
images,
|
images,
|
||||||
onClose,
|
onClose,
|
||||||
onChange,
|
onChange,
|
||||||
|
@ -43,11 +43,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { computed, onMounted, reactive, toRefs } from 'vue';
|
import { computed, onMounted, reactive, toRefs } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Toast from '../../toast';
|
import Toast from '../../toast';
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
try: '下拉试试',
|
try: '下拉试试',
|
||||||
text: '刷新次数',
|
text: '刷新次数',
|
||||||
@ -62,10 +61,11 @@ export default {
|
|||||||
successTip: 'Success Tip',
|
successTip: 'Success Tip',
|
||||||
customTips: 'Custom Tips',
|
customTips: 'Custom Tips',
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
count: 0,
|
count: 0,
|
||||||
loading: false,
|
loading: false,
|
||||||
@ -101,6 +101,7 @@ export default {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
|
t,
|
||||||
tips,
|
tips,
|
||||||
onRefresh,
|
onRefresh,
|
||||||
};
|
};
|
||||||
|
@ -46,11 +46,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { toRefs, reactive } from 'vue';
|
import { toRefs, reactive } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Toast from '../../toast';
|
import Toast from '../../toast';
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
halfStar: '半星',
|
halfStar: '半星',
|
||||||
disabled: '禁用状态',
|
disabled: '禁用状态',
|
||||||
@ -71,10 +70,11 @@ export default {
|
|||||||
changeEvent: 'Change Event',
|
changeEvent: 'Change Event',
|
||||||
toastContent: (value) => `current value:${value}`,
|
toastContent: (value) => `current value:${value}`,
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
value1: 3,
|
value1: 3,
|
||||||
value2: 3,
|
value2: 3,
|
||||||
|
@ -53,11 +53,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { reactive, toRefs } from 'vue';
|
import { reactive, toRefs } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Toast from '../../toast';
|
import Toast from '../../toast';
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
label: '地址',
|
label: '地址',
|
||||||
disabled: '禁用搜索框',
|
disabled: '禁用搜索框',
|
||||||
@ -76,10 +75,11 @@ export default {
|
|||||||
customButton: 'Custom Action Button',
|
customButton: 'Custom Action Button',
|
||||||
listenToEvents: 'Listen to Events',
|
listenToEvents: 'Listen to Events',
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
value1: '',
|
value1: '',
|
||||||
value2: '',
|
value2: '',
|
||||||
@ -99,6 +99,7 @@ export default {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
|
t,
|
||||||
onSearch,
|
onSearch,
|
||||||
onCancel,
|
onCancel,
|
||||||
};
|
};
|
||||||
|
@ -52,11 +52,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { reactive, toRefs } from 'vue';
|
import { reactive, toRefs } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Toast from '../../toast';
|
import Toast from '../../toast';
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
text: '当前值:',
|
text: '当前值:',
|
||||||
title1: '基础用法',
|
title1: '基础用法',
|
||||||
@ -79,10 +78,11 @@ export default {
|
|||||||
customStyle: 'Custom Style',
|
customStyle: 'Custom Style',
|
||||||
customButton: 'Custom Button',
|
customButton: 'Custom Button',
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
value1: 50,
|
value1: 50,
|
||||||
value2: [20, 60],
|
value2: [20, 60],
|
||||||
@ -101,6 +101,7 @@ export default {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
|
t,
|
||||||
onChange,
|
onChange,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -65,11 +65,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Toast from '../../toast';
|
import Toast from '../../toast';
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
title2: '懒加载',
|
title2: '懒加载',
|
||||||
title3: '监听 change 事件',
|
title3: '监听 change 事件',
|
||||||
@ -86,10 +85,11 @@ export default {
|
|||||||
title6: 'Custom indicator',
|
title6: 'Custom indicator',
|
||||||
message: 'Current Swipe index:',
|
message: 'Current Swipe index:',
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const current = ref(0);
|
const current = ref(0);
|
||||||
const images = [
|
const images = [
|
||||||
'https://img.yzcdn.cn/vant/apple-1.jpg',
|
'https://img.yzcdn.cn/vant/apple-1.jpg',
|
||||||
@ -107,6 +107,7 @@ export default {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
t,
|
||||||
images,
|
images,
|
||||||
current,
|
current,
|
||||||
onChange1,
|
onChange1,
|
||||||
|
@ -38,11 +38,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { reactive, toRefs } from 'vue';
|
import { reactive, toRefs } from 'vue';
|
||||||
import { useTranslate } from '../../composables/use-translate';
|
import { useTranslate } from '@demo/use-translate';
|
||||||
import Dialog from '../../dialog';
|
import Dialog from '../../dialog';
|
||||||
|
|
||||||
export default {
|
const i18n = {
|
||||||
i18n: {
|
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
title: '标题',
|
title: '标题',
|
||||||
confirm: '提醒',
|
confirm: '提醒',
|
||||||
@ -61,10 +60,11 @@ export default {
|
|||||||
customColor: 'Custom Color',
|
customColor: 'Custom Color',
|
||||||
asyncControl: 'Async Control',
|
asyncControl: 'Async Control',
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const t = useTranslate();
|
const t = useTranslate(i18n);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
checked: true,
|
checked: true,
|
||||||
checked2: true,
|
checked2: true,
|
||||||
@ -85,6 +85,7 @@ export default {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
|
t,
|
||||||
onUpdateValue,
|
onUpdateValue,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
const { join } = require('path');
|
||||||
|
|
||||||
module.exports = function () {
|
module.exports = function () {
|
||||||
if (process.env.BUILD_TARGET === 'package') {
|
if (process.env.BUILD_TARGET === 'package') {
|
||||||
return {};
|
return {};
|
||||||
@ -8,5 +10,10 @@ module.exports = function () {
|
|||||||
entry: {
|
entry: {
|
||||||
'site-mobile': ['./docs/site/mobile'],
|
'site-mobile': ['./docs/site/mobile'],
|
||||||
},
|
},
|
||||||
|
resolve: {
|
||||||
|
alias: {
|
||||||
|
'@demo': join(__dirname, 'docs', 'site'),
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user