2022-02-13 23:39:27 +08:00
|
|
|
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
|
2021-02-19 23:23:59 +08:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
import * as Setting from "./Setting";
|
2022-07-18 20:57:38 +08:00
|
|
|
import {Dropdown, Menu} from "antd";
|
2022-07-10 15:45:55 +08:00
|
|
|
import "./App.less";
|
2021-07-16 20:24:55 +08:00
|
|
|
|
2022-08-21 22:42:28 -03:00
|
|
|
function flagIcon(country, alt) {
|
|
|
|
return (
|
|
|
|
<img width={24} alt={alt} src={`${Setting.StaticBaseUrl}/flag-icons/${country}.svg`} />
|
|
|
|
);
|
|
|
|
}
|
2021-02-19 23:23:59 +08:00
|
|
|
|
|
|
|
class SelectLanguageBox extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
classes: props,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2021-07-16 20:24:55 +08:00
|
|
|
const menu = (
|
2021-09-14 01:22:13 +08:00
|
|
|
<Menu onClick={(e) => {
|
|
|
|
Setting.changeLanguage(e.key);
|
|
|
|
}}>
|
2022-08-21 22:42:28 -03:00
|
|
|
<Menu.Item key="en" icon={flagIcon("US", "English")}>English</Menu.Item>
|
|
|
|
<Menu.Item key="es" icon={flagIcon("ES", "Español")}>Español</Menu.Item>
|
|
|
|
<Menu.Item key="zh" icon={flagIcon("CN", "简体中文")}>简体中文</Menu.Item>
|
|
|
|
<Menu.Item key="fr" icon={flagIcon("FR", "Français")}>Français</Menu.Item>
|
|
|
|
<Menu.Item key="de" icon={flagIcon("DE", "Deutsch")}>Deutsch</Menu.Item>
|
|
|
|
<Menu.Item key="ja" icon={flagIcon("JP", "日本語")}>日本語</Menu.Item>
|
|
|
|
<Menu.Item key="ko" icon={flagIcon("KR", "한국어")}>한국어</Menu.Item>
|
|
|
|
<Menu.Item key="ru" icon={flagIcon("RU", "Русский")}>Русский</Menu.Item>
|
2021-07-16 20:24:55 +08:00
|
|
|
</Menu>
|
|
|
|
);
|
|
|
|
|
2021-02-19 23:23:59 +08:00
|
|
|
return (
|
2021-07-23 09:46:01 +08:00
|
|
|
<Dropdown overlay={menu} >
|
|
|
|
<div className="language_box" />
|
2021-07-16 20:24:55 +08:00
|
|
|
</Dropdown>
|
|
|
|
);
|
2021-02-19 23:23:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default SelectLanguageBox;
|