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,
|
2022-11-19 22:11:19 +08:00
|
|
|
languages: props.languages ?? ["en", "zh", "es", "fr", "de", "ja", "ko", "ru"],
|
2021-02-19 23:23:59 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-11-19 22:11:19 +08:00
|
|
|
items = [
|
|
|
|
this.getItem("English", "en", flagIcon("US", "English")),
|
|
|
|
this.getItem("简体中文", "zh", flagIcon("CN", "简体中文")),
|
|
|
|
this.getItem("Español", "es", flagIcon("ES", "Español")),
|
|
|
|
this.getItem("Français", "fr", flagIcon("FR", "Français")),
|
|
|
|
this.getItem("Deutsch", "de", flagIcon("DE", "Deutsch")),
|
|
|
|
this.getItem("日本語", "ja", flagIcon("JP", "日本語")),
|
|
|
|
this.getItem("한국어", "ko", flagIcon("KR", "한국어")),
|
|
|
|
this.getItem("Русский", "ru", flagIcon("RU", "Русский")),
|
|
|
|
];
|
|
|
|
|
|
|
|
getOrganizationLanguages(languages) {
|
|
|
|
const select = [];
|
|
|
|
for (const language of languages) {
|
|
|
|
this.items.map((item, index) => item.key === language ? select.push(item) : null);
|
|
|
|
}
|
|
|
|
return select;
|
|
|
|
}
|
|
|
|
|
|
|
|
getItem(label, key, icon) {
|
|
|
|
return {key, icon, label};
|
|
|
|
}
|
|
|
|
|
2021-02-19 23:23:59 +08:00
|
|
|
render() {
|
2022-11-19 22:11:19 +08:00
|
|
|
const languageItems = this.getOrganizationLanguages(this.state.languages);
|
2021-07-16 20:24:55 +08:00
|
|
|
const menu = (
|
2022-11-19 22:11:19 +08:00
|
|
|
<Menu items={languageItems} onClick={(e) => {
|
|
|
|
Setting.setLanguage(e.key);
|
2021-09-14 01:22:13 +08:00
|
|
|
}}>
|
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} >
|
2022-11-19 22:11:19 +08:00
|
|
|
<div className="language-box" style={{display: languageItems.length === 0 ? "none" : null, ...this.props.style}} />
|
2021-07-16 20:24:55 +08:00
|
|
|
</Dropdown>
|
|
|
|
);
|
2021-02-19 23:23:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default SelectLanguageBox;
|