gpt4 book ai didi

javascript - 使用简单键盘的多语言支持

转载 作者:行者123 更新时间:2023-12-05 04:45:20 25 4
gpt4 key购买 nike

我是 vue js 的新手,正在尝试实现 https://virtual-keyboard.js.org/vuejs/

我已经实现了基本布局但需要做多语言https://github.com/simple-keyboard/simple-keyboard-layouts支持使用提到的不同语言布局。

但我无法在不同语言之间切换。我实际上找不到注入(inject)不同语言文件的方法。

<template>
<div :class="keyboardClass"></div>
</template>

<script>
import Keyboard from "simple-keyboard";
import "simple-keyboard/build/css/index.css";
// import SimpleKeyboardLayouts from "../lib/components/Layouts";

export default {
name: "SimpleKeyboard",
props: {
keyboardClass: {
default: "simple-keyboard",
type: String,
},
input: {
type: String,
},
},
data: () => ({
keyboard: null,
}),
mounted() {
this.keyboard = new Keyboard(this.keyboardClass, {
onChange: this.onChange,
onKeyPress: this.onKeyPress,
});
},
methods: {
onChange(input) {
this.$emit("onChange", input);
},
onKeyPress(button) {
this.$emit("onKeyPress", button);

/**
* If you want to handle the shift and caps lock buttons
*/
if (button === "{shift}" || button === "{lock}") this.handleShift();
},
handleShift() {
let currentLayout = this.keyboard.options.layoutName;
let shiftToggle = currentLayout === "default" ? "shift" : "default";

this.keyboard.setOptions({
layoutName: shiftToggle,
});
},
handleLanguages() {
let currentLayoutlang = this.keyboard.options.layoutName;
let languageToggle =
currentLayoutlang === "english" ? "german" : "english";
this.keyboard.setOptions({
layoutName: languageToggle,
});
},
},
watch: {
input(input) {
this.keyboard.setInput(input);
},
},
};
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped></style>

我有一个示例布局语言文件是这样的

import { LayoutItem } from "../interfaces";

/**
* Layout: German
*/
export default <LayoutItem>{
layout: {
default: [
"^ 1 2 3 4 5 6 7 8 9 0 \u00DF \u00B4 {bksp}",
"{tab} q w e r t z u i o p \u00FC +",
"{lock} a s d f g h j k l \u00F6 \u00E4 # {enter}",
"{shift} < y x c v b n m , . - {shift}",
".com @ {space}",
],
shift: [
'\u00B0 ! " \u00A7 $ % & / ( ) = ? ` {bksp}',
"{tab} Q W E R T Z U I O P \u00DC *",
"{lock} A S D F G H J K L \u00D6 \u00C4 ' {enter}",
"{shift} > Y X C V B N M ; : _ {shift}",
".com @ {space}",
],
},
};

最佳答案

我建议使用simple-keyboard-layouts,然后在您要更改语言的方法中执行此操作:

handleLanguages() {
let languageToggle =
this.keyboard.options.layoutName === "english" ? "german" : "english";
const layout = new this.SimpleKeyboardLayouts().get(languageToggle);
this.keyboard.setOptions({ layout });
}

这就是您使用该库切换语言的方式。如果它缺少您需要的语言,请在 simple-keyboard-layouts 中提交 PR ,我发现作者对我添加的布局非常敏感并且乐于助人。

Here is a fiddle (您可能需要单击 fiddle 中的刷新图标才能显示按钮),请注意一些较新版本的 simple-keyboard-layouts 似乎无法使用此功能,因此请确保检查 package.json 中兼容的版本号,或更新您的代码以匹配该库中最新和最好的版本。这些是绝对为此工作的版本:

"simple-keyboard": "^2.32.108",
"simple-keyboard-layouts": "^1.15.165",

关于javascript - 使用简单键盘的多语言支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69176702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com