Skip to content
Snippets Groups Projects
Commit 7ef6fddd authored by Imre Toth's avatar Imre Toth
Browse files

ICSHWI-9655: Renaming title for UI

parent 94234c5d
No related branches found
No related tags found
4 merge requests!270Merging develop branch to master in order to create RC,!222Fixing missing time interval parameter for logs,!202Merging develop to master,!197ICSHWI-9655: Renaming title for UI
Pipeline #114525 passed
# build CE deployment Frontend
# build CE deploy & monitor Frontend
FROM node:16.14.0 as builder
RUN mkdir /usr/src/app
WORKDIR /usr/src/app
......
# CE deployment tool web UI
# CE deploy & monitor web UI
This project is meant to be the web User Interface for the CE Deployment tool. The project is written in ReactJS.
This project is meant to be the web User Interface for the CE deploy & monitor tool. The project is written in ReactJS.
## Developing environment
* NodeJS and npm
......
......@@ -33,7 +33,7 @@ import { LoginSuggester } from "./components/navigation/LoginSuggester/LoginSugg
//setting up the application (TAB)title
function App() {
useEffect(() => {
document.title = "CE deployment" + applicationSubTitle();
document.title = "CE deploy & monitor" + applicationSubTitle();
}, []);
return (
......
......@@ -26,11 +26,11 @@ defineFeature(feature, (test) => {
});
when('the user navigates to the hosts page', async () => {
await screen.findByText('CE deployment / IOC hosts');
await screen.findByText('CE deploy & monitor / IOC hosts');
});
then('they should be presented with a table of hosts from the iocs group in CSEntry', async () => {
expect(await screen.findByText('CE deployment / IOC hosts')).toBeInTheDocument()
expect(await screen.findByText('CE deploy & monitor / IOC hosts')).toBeInTheDocument()
expect(await screen.findByText('Status')).toBeInTheDocument()
expect(await screen.findByText('Host')).toBeInTheDocument()
expect(await screen.findByText('Network')).toBeInTheDocument()
......
......@@ -190,7 +190,7 @@ export function ButtonAppBar({ homeUrl, homeClick, title, button }) {
);
}
const defaultTitle = "CE deployment"
const defaultTitle = "CE deploy & monitor"
export const GlobalAppBarContext = createContext({
title: defaultTitle,
setButton: () => { console.log("default GlobalAppBarContext.setButton does nothing.") },
......@@ -469,7 +469,7 @@ export function useGlobalAppBar(initTitle, initButton = defaultButton) {
const [title, setTitle] = useState(initTitle);
const appBar = useContext(GlobalAppBarContext);
useEffect(() => {
appBar.setTitle('CE deployment ' + applicationSubTitle() + ' / ' + title );
appBar.setTitle('CE deploy & monitor ' + applicationSubTitle() + ' / ' + title );
appBar.setButton(button);
}, [appBar, title, button]);
return { setButton, setTitle };
......
......@@ -25,7 +25,7 @@ export function AboutView() {
<Paper className={classes.paper}>
<Typography variant="body1">
This is the <Link href="https://confluence.esss.lu.se/x/CVGQFg" target="_blank" rel="noreferrer">final</Link> version of the deployment part of the CCDB ecosystem (working name CE deployment). It is a tool that manages IOCs on host machines, using Ansible to perform the necessary configuration management. This tool will set up IOC-hosts and deploy IOC(s) in a consistent manner, and will configure all necessary services towards this purpose. The tool also integrates with various other systems to enable monitoring of IOCs and hosts, and enables some limited remote execution features. Please note that this is a developmental version, and that
This is the <Link href="https://confluence.esss.lu.se/x/CVGQFg" target="_blank" rel="noreferrer">final</Link> version of the deployment part of the CCDB ecosystem (working name CE deploy & monitor). It is a tool that manages IOCs on host machines, using Ansible to perform the necessary configuration management. This tool will set up IOC-hosts and deploy IOC(s) in a consistent manner, and will configure all necessary services towards this purpose. The tool also integrates with various other systems to enable monitoring of IOCs and hosts, and enables some limited remote execution features. Please note that this is a developmental version, and that
<ol>
<li>we do not guarantee data (about deployments) to persist</li>
<li>we offer only minimal support</li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment