feat: add actions(register, refresh) to cluster selector (#22)
Co-authored-by: yaojiping <yaojiping@infini.ltd>
This commit is contained in:
parent
3dd3ba9db0
commit
ccd44c9b7d
|
@ -1,11 +1,17 @@
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { getLocale } from "umi/locale";
|
import { getLocale, formatMessage } from "umi/locale";
|
||||||
|
|
||||||
import DropdownList from "@/common/src/DropdownList";
|
import DropdownList from "@/common/src/DropdownList";
|
||||||
import { SearchEngineIcon } from "@/lib/search_engines";
|
import { SearchEngineIcon } from "@/lib/search_engines";
|
||||||
import { HealthStatusRect } from "../infini/health_status_rect";
|
import { HealthStatusRect } from "../infini/health_status_rect";
|
||||||
|
import { connect } from "dva";
|
||||||
|
import { hasAuthority } from "@/utils/authority";
|
||||||
|
|
||||||
export default (props) => {
|
export default connect(({ global, loading }) => ({
|
||||||
|
clusterList: global.clusterList,
|
||||||
|
clusterLoading: loading.effects["global/fetchClusterList"],
|
||||||
|
clusterStatus: global.clusterStatus,
|
||||||
|
}))((props) => {
|
||||||
const {
|
const {
|
||||||
className,
|
className,
|
||||||
popoverClassName,
|
popoverClassName,
|
||||||
|
@ -17,7 +23,12 @@ export default (props) => {
|
||||||
clusterStatus,
|
clusterStatus,
|
||||||
onChange,
|
onChange,
|
||||||
mode = "",
|
mode = "",
|
||||||
|
onRefresh,
|
||||||
|
clusterLoading,
|
||||||
|
dispatch,
|
||||||
|
showCreate = true
|
||||||
} = props;
|
} = props;
|
||||||
|
|
||||||
const [sorter, setSorter] = useState([]);
|
const [sorter, setSorter] = useState([]);
|
||||||
const [filters, setFilters] = useState({
|
const [filters, setFilters] = useState({
|
||||||
status: ["green", "yellow", "red"],
|
status: ["green", "yellow", "red"],
|
||||||
|
@ -44,6 +55,16 @@ export default (props) => {
|
||||||
: "unavailable",
|
: "unavailable",
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const actions = [];
|
||||||
|
if (hasAuthority("system.cluster:all") && showCreate) {
|
||||||
|
actions.push(
|
||||||
|
<a onClick={() => window.open(`/#/resource/cluster/regist`,"_blank")}>
|
||||||
|
{formatMessage({ id: "cluster.manage.btn.regist" })}
|
||||||
|
</a>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DropdownList
|
<DropdownList
|
||||||
getPopupContainer={(triggerNode) => triggerNode.parentNode}
|
getPopupContainer={(triggerNode) => triggerNode.parentNode}
|
||||||
|
@ -146,8 +167,22 @@ export default (props) => {
|
||||||
value: "opensearch",
|
value: "opensearch",
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
onRefresh={() => {
|
||||||
|
dispatch({
|
||||||
|
type: "global/fetchClusterList",
|
||||||
|
payload: {
|
||||||
|
size: 200,
|
||||||
|
name: "",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
dispatch({
|
||||||
|
type: "global/fetchClusterStatus",
|
||||||
|
})
|
||||||
|
}}
|
||||||
|
loading={clusterLoading}
|
||||||
|
actions={actions}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</DropdownList>
|
</DropdownList>
|
||||||
);
|
);
|
||||||
};
|
});
|
||||||
|
|
|
@ -63,8 +63,6 @@ export default class GlobalHeader extends PureComponent {
|
||||||
width={300}
|
width={300}
|
||||||
dropdownWidth={400}
|
dropdownWidth={400}
|
||||||
selectedCluster={selectedCluster}
|
selectedCluster={selectedCluster}
|
||||||
clusterList={clusterList}
|
|
||||||
clusterStatus={clusterStatus}
|
|
||||||
onChange={(item) => {
|
onChange={(item) => {
|
||||||
const rel = this.props
|
const rel = this.props
|
||||||
.handleSaveGlobalState({
|
.handleSaveGlobalState({
|
||||||
|
|
|
@ -32,8 +32,6 @@ export default ({ onEnroll, loading }) => {
|
||||||
width={"100%"}
|
width={"100%"}
|
||||||
dropdownWidth={400}
|
dropdownWidth={400}
|
||||||
selectedCluster={selectedCluster}
|
selectedCluster={selectedCluster}
|
||||||
clusterList={clusterList}
|
|
||||||
clusterStatus={clusterStatus}
|
|
||||||
onChange={(item) => {
|
onChange={(item) => {
|
||||||
setSelectedCluster(item);
|
setSelectedCluster(item);
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -32,8 +32,6 @@ export default ({ onBatchEnroll, loading }) => {
|
||||||
width={"100%"}
|
width={"100%"}
|
||||||
dropdownWidth={400}
|
dropdownWidth={400}
|
||||||
selectedCluster={selectedCluster}
|
selectedCluster={selectedCluster}
|
||||||
clusterList={clusterList}
|
|
||||||
clusterStatus={clusterStatus}
|
|
||||||
onChange={(item) => {
|
onChange={(item) => {
|
||||||
console.log("onChange item:", item);
|
console.log("onChange item:", item);
|
||||||
setSelectedCluster(item);
|
setSelectedCluster(item);
|
||||||
|
|
|
@ -477,8 +477,6 @@ const RuleForm = (props) => {
|
||||||
width={300}
|
width={300}
|
||||||
dropdownWidth={400}
|
dropdownWidth={400}
|
||||||
selectedCluster={selectedCluster}
|
selectedCluster={selectedCluster}
|
||||||
clusterList={props.clusterList}
|
|
||||||
clusterStatus={props.clusterStatus}
|
|
||||||
onChange={(item) => {
|
onChange={(item) => {
|
||||||
setSelectedCluster(item);
|
setSelectedCluster(item);
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -18,10 +18,10 @@ import { TabTitle } from "./console_tab_title";
|
||||||
import "@/assets/utility.scss";
|
import "@/assets/utility.scss";
|
||||||
import { Resizable } from "re-resizable";
|
import { Resizable } from "re-resizable";
|
||||||
import { ResizeBar } from "@/components/infini/resize_bar";
|
import { ResizeBar } from "@/components/infini/resize_bar";
|
||||||
import NewTabMenu from "./NewTabMenu";
|
|
||||||
|
|
||||||
import maximizeSvg from "@/assets/window-maximize.svg";
|
import maximizeSvg from "@/assets/window-maximize.svg";
|
||||||
import restoreSvg from "@/assets/window-restore.svg";
|
import restoreSvg from "@/assets/window-restore.svg";
|
||||||
|
import ClusterSelect from "@/components/ClusterSelect";
|
||||||
|
|
||||||
const MaximizeIcon = (props = {}) => {
|
const MaximizeIcon = (props = {}) => {
|
||||||
return <img height="14px" width="14px" {...props} src={maximizeSvg} />;
|
return <img height="14px" width="14px" {...props} src={maximizeSvg} />;
|
||||||
|
@ -282,19 +282,6 @@ export const ConsoleUI = ({
|
||||||
[clusterList]
|
[clusterList]
|
||||||
);
|
);
|
||||||
|
|
||||||
// const menu = (
|
|
||||||
// // <Menu onClick={newTabClick}>
|
|
||||||
// // {(clusterList||[]).map((cluster:any)=>{
|
|
||||||
// // return <Menu.Item key={cluster.id}>{cluster.name}</Menu.Item>
|
|
||||||
// // })}
|
|
||||||
// // </Menu>
|
|
||||||
// <NewTabMenu data={clusterList}
|
|
||||||
// onItemClick={newTabClick}
|
|
||||||
// clusterStatus={clusterStatus}
|
|
||||||
// size={10}
|
|
||||||
// width="300px"/>
|
|
||||||
// );
|
|
||||||
|
|
||||||
const rootRef = useRef(null);
|
const rootRef = useRef(null);
|
||||||
const [isFullscreen, setIsFullscreen] = useState(false);
|
const [isFullscreen, setIsFullscreen] = useState(false);
|
||||||
const fullscreenClick = () => {
|
const fullscreenClick = () => {
|
||||||
|
@ -340,17 +327,15 @@ export const ConsoleUI = ({
|
||||||
</>
|
</>
|
||||||
),
|
),
|
||||||
append: (
|
append: (
|
||||||
<NewTabMenu
|
<ClusterSelect
|
||||||
data={clusterList}
|
width={34}
|
||||||
onItemClick={newTabClick}
|
dropdownWidth={400}
|
||||||
clusterStatus={clusterStatus}
|
onChange={(item) => newTabClick(item)}
|
||||||
size={10}
|
|
||||||
width="500px"
|
|
||||||
>
|
>
|
||||||
<div className="tabbar-icon">
|
<div className="tabbar-icon">
|
||||||
<Icon type="plus" />
|
<Icon type="plus" />
|
||||||
</div>
|
</div>
|
||||||
</NewTabMenu>
|
</ClusterSelect>
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -487,7 +472,7 @@ export const ConsoleUI = ({
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default connect(({ global }) => ({
|
export default connect(({ global, loading }) => ({
|
||||||
selectedCluster: global.selectedCluster,
|
selectedCluster: global.selectedCluster,
|
||||||
clusterList: global.clusterList,
|
clusterList: global.clusterList,
|
||||||
clusterStatus: global.clusterStatus,
|
clusterStatus: global.clusterStatus,
|
||||||
|
|
|
@ -11,24 +11,31 @@ class NewTabMenu extends React.Component {
|
||||||
};
|
};
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
this.state = {
|
|
||||||
data: this.props.data || [],
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {}
|
componentDidMount() {}
|
||||||
|
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { clusterStatus } = this.props;
|
const { clusterList, clusterStatus, clusterLoading, dispatch } = this.props;
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<ClusterSelect
|
<ClusterSelect
|
||||||
width={34}
|
width={34}
|
||||||
dropdownWidth={400}
|
dropdownWidth={400}
|
||||||
clusterList={this.state.data}
|
clusterList={clusterList}
|
||||||
clusterStatus={clusterStatus}
|
clusterStatus={clusterStatus}
|
||||||
onChange={(item) => this.handleItemClick(item)}
|
onChange={(item) => this.handleItemClick(item)}
|
||||||
|
loading={clusterLoading}
|
||||||
|
onRefresh={() => {
|
||||||
|
dispatch({
|
||||||
|
type: "global/fetchClusterList",
|
||||||
|
payload: {
|
||||||
|
size: 200,
|
||||||
|
name: "",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
</ClusterSelect>
|
</ClusterSelect>
|
||||||
|
|
Loading…
Reference in New Issue