casnode/web/src/main/SelectEditorTypeBox.js

48 lines
1.9 KiB
JavaScript
Raw Normal View History

// Copyright 2020 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 { Link } from "react-router-dom";
import i18next from "i18next";
class SelectLanguageBox extends React.Component {
constructor(props) {
super(props);
this.state = {
classes: props,
};
}
render() {
return (
<div align="center">
2021-12-28 21:43:45 +08:00
<div className="box" style={{ width: Setting.PcBrowser ? "600px" : "auto" }}>
<div className="header">
2021-12-28 21:43:45 +08:00
<Link to="/">{Setting.getForumName()}</Link> <span className="chevron">&nbsp;&nbsp;</span> Select Default Editor /
</div>
2021-12-28 21:43:45 +08:00
<div className="cell">{Setting.PcBrowser ? <span>Please select the Default Editor you would like to use on {Setting.getForumName()}</span> : <span>Please select the Default Editor you would like to use:</span>}</div>
<a href="javascript:void(0);" onClick={() => Setting.changeEditorType("markdown")} className={"lang-selector"}>
{i18next.t("new:Markdown")}
</a>
2021-12-28 21:43:45 +08:00
<a href="javascript:void(0);" onClick={() => Setting.changeEditorType("richtext")} className={"lang-selector"}>
{i18next.t("new:RichText")}
</a>
</div>
</div>
);
}
}
export default SelectLanguageBox;