-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add language switch button (#31)
* feat: add language switch button * feat: add i18n for frontend --------- Co-authored-by: HeartLinked <lifeiyang@zju.edu.cn>
- Loading branch information
1 parent
1dca747
commit b8ec808
Showing
17 changed files
with
1,167 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
// Copyright 2021 The Casdoor Authors. All Rights Reserved. | ||
// | ||
// 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. | ||
|
||
package i18n | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
"regexp" | ||
"strings" | ||
|
||
"github.com/casbin/caswaf/util" | ||
) | ||
|
||
type I18nData map[string]map[string]string | ||
|
||
var reI18n *regexp.Regexp | ||
|
||
func init() { | ||
reI18n, _ = regexp.Compile("i18next.t\\(\"(.*?)\"\\)") | ||
} | ||
|
||
func getAllI18nStrings(fileContent string) []string { | ||
res := []string{} | ||
|
||
matches := reI18n.FindAllStringSubmatch(fileContent, -1) | ||
if matches == nil { | ||
return res | ||
} | ||
|
||
for _, match := range matches { | ||
res = append(res, match[1]) | ||
} | ||
return res | ||
} | ||
|
||
func getAllJsFilePaths() []string { | ||
path := "../web/src" | ||
|
||
res := []string{} | ||
err := filepath.Walk(path, | ||
func(path string, info os.FileInfo, err error) error { | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if !strings.HasSuffix(info.Name(), ".js") { | ||
return nil | ||
} | ||
|
||
res = append(res, path) | ||
fmt.Println(path, info.Name()) | ||
return nil | ||
}) | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
return res | ||
} | ||
|
||
func parseToData() *I18nData { | ||
allWords := []string{} | ||
paths := getAllJsFilePaths() | ||
for _, path := range paths { | ||
fileContent := util.ReadStringFromPath(path) | ||
words := getAllI18nStrings(fileContent) | ||
allWords = append(allWords, words...) | ||
} | ||
fmt.Printf("%v\n", allWords) | ||
|
||
data := I18nData{} | ||
for _, word := range allWords { | ||
tokens := strings.Split(word, ":") | ||
namespace := tokens[0] | ||
key := tokens[1] | ||
|
||
if _, ok := data[namespace]; !ok { | ||
data[namespace] = map[string]string{} | ||
} | ||
data[namespace][key] = key | ||
} | ||
|
||
return &data | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// Copyright 2021 The Casdoor Authors. All Rights Reserved. | ||
// | ||
// 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. | ||
|
||
//go:build !skipCi | ||
// +build !skipCi | ||
|
||
package i18n | ||
|
||
import "testing" | ||
|
||
func applyToOtherLanguage(dataEn *I18nData, lang string) { | ||
dataOther := readI18nFile(lang) | ||
println(dataOther) | ||
|
||
applyData(dataEn, dataOther) | ||
writeI18nFile(lang, dataEn) | ||
} | ||
|
||
func TestGenerateI18nStrings(t *testing.T) { | ||
dataEn := parseToData() | ||
writeI18nFile("en", dataEn) | ||
|
||
applyToOtherLanguage(dataEn, "zh") | ||
applyToOtherLanguage(dataEn, "fr") | ||
applyToOtherLanguage(dataEn, "de") | ||
applyToOtherLanguage(dataEn, "id") | ||
applyToOtherLanguage(dataEn, "ja") | ||
applyToOtherLanguage(dataEn, "ko") | ||
applyToOtherLanguage(dataEn, "ru") | ||
applyToOtherLanguage(dataEn, "es") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Copyright 2021 The Casdoor Authors. All Rights Reserved. | ||
// | ||
// 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. | ||
|
||
package i18n | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/casbin/caswaf/util" | ||
) | ||
|
||
func getI18nFilePath(language string) string { | ||
return fmt.Sprintf("../web/src/locales/%s/data.json", language) | ||
} | ||
|
||
func readI18nFile(language string) *I18nData { | ||
s := util.ReadStringFromPath(getI18nFilePath(language)) | ||
|
||
data := &I18nData{} | ||
err := util.JsonToStruct(s, data) | ||
if err != nil { | ||
panic(err) | ||
} | ||
return data | ||
} | ||
|
||
func writeI18nFile(language string, data *I18nData) { | ||
s := util.StructToJson(data) | ||
s = strings.ReplaceAll(s, "\\\\\"", "\"") | ||
println(s) | ||
|
||
util.WriteStringToPath(s, getI18nFilePath(language)) | ||
} | ||
|
||
func applyData(data1 *I18nData, data2 *I18nData) { | ||
for namespace, pairs2 := range *data2 { | ||
if _, ok := (*data1)[namespace]; !ok { | ||
continue | ||
} | ||
|
||
pairs1 := (*data1)[namespace] | ||
|
||
for key, value := range pairs2 { | ||
if _, ok := pairs1[key]; !ok { | ||
continue | ||
} | ||
|
||
pairs1[key] = value | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Copyright 2024 The Casbin Authors. All Rights Reserved. | ||
// | ||
// 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"; | ||
import {Dropdown, Menu} from "antd"; | ||
import {GlobalOutlined} from "@ant-design/icons"; | ||
|
||
function flagIcon(country, alt) { | ||
return <img src={`${Setting.StaticBaseUrl}/flag-icons/${country}.svg`} alt={alt} style={{marginRight: 8, width: 24}} />; | ||
} | ||
|
||
class LanguageSelect extends React.Component { | ||
constructor(props) { | ||
super(props); | ||
this.state = { | ||
classes: props, | ||
languages: Setting.Countries.map(item => item.key), | ||
}; | ||
|
||
// Preload flag icons | ||
Setting.Countries.forEach((country) => { | ||
new Image().src = `${Setting.StaticBaseUrl}/flag-icons/${country.country}.svg`; | ||
}); | ||
} | ||
|
||
items = Setting.Countries.map((country) => ({ | ||
key: country.key, | ||
label: ( | ||
<span> | ||
{flagIcon(country.country, country.alt)} | ||
{country.label} | ||
</span> | ||
), | ||
})); | ||
|
||
getLanguages(languages) { | ||
const select = []; | ||
for (const language of languages) { | ||
this.items.forEach((item) => item.key === language ? select.push(item) : null); | ||
} | ||
return select; | ||
} | ||
|
||
render() { | ||
const languageItems = this.getLanguages(this.state.languages); | ||
|
||
const menu = ( | ||
<Menu onClick={(e) => Setting.setLanguage(e.key)}> | ||
{languageItems.map(item => ( | ||
<Menu.Item key={item.key}> | ||
{item.label} | ||
</Menu.Item> | ||
))} | ||
</Menu> | ||
); | ||
|
||
return ( | ||
<Dropdown overlay={menu}> | ||
<div className="select-box" style={{display: languageItems.length === 0 ? "none" : null, ...this.props.style}}> | ||
<GlobalOutlined style={{fontSize: "24px"}} /> | ||
</div> | ||
</Dropdown> | ||
); | ||
} | ||
} | ||
|
||
export default LanguageSelect; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.