mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-01 07:11:23 +00:00
Compare commits
3 Commits
master
...
users/saks
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
91cd61d387 | ||
|
|
e9151bcaf0 | ||
|
|
72debd0778 |
@@ -406,7 +406,11 @@ body {
|
|||||||
width: 440px;
|
width: 440px;
|
||||||
min-height: 565px;
|
min-height: 565px;
|
||||||
}
|
}
|
||||||
|
.dataExplorerLoaderforcopyJobs{
|
||||||
|
width: 100%;
|
||||||
|
min-height: 565px;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
.dataExplorerTabLoaderContainer {
|
.dataExplorerTabLoaderContainer {
|
||||||
left: initial;
|
left: initial;
|
||||||
top: initial;
|
top: initial;
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { Overlay, Spinner, SpinnerSize } from "@fluentui/react";
|
import { Overlay, Spinner, SpinnerSize } from "@fluentui/react";
|
||||||
|
import { useThemeStore } from "hooks/useTheme";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
interface LoadingOverlayProps {
|
interface LoadingOverlayProps {
|
||||||
@@ -7,6 +8,7 @@ interface LoadingOverlayProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const LoadingOverlay: React.FC<LoadingOverlayProps> = ({ isLoading, label }) => {
|
const LoadingOverlay: React.FC<LoadingOverlayProps> = ({ isLoading, label }) => {
|
||||||
|
const isDarkMode = useThemeStore((state) => state.isDarkMode);
|
||||||
if (!isLoading) {
|
if (!isLoading) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -15,7 +17,7 @@ const LoadingOverlay: React.FC<LoadingOverlayProps> = ({ isLoading, label }) =>
|
|||||||
<Overlay
|
<Overlay
|
||||||
styles={{
|
styles={{
|
||||||
root: {
|
root: {
|
||||||
backgroundColor: "rgba(255,255,255,0.9)",
|
backgroundColor: isDarkMode ? "rgba(32, 31, 30, 0.9)" : "rgba(255,255,255,0.9)",
|
||||||
zIndex: 9999,
|
zIndex: 9999,
|
||||||
display: "flex",
|
display: "flex",
|
||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
@@ -23,7 +25,11 @@ const LoadingOverlay: React.FC<LoadingOverlayProps> = ({ isLoading, label }) =>
|
|||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Spinner size={SpinnerSize.large} label={label} styles={{ label: { fontWeight: 600 } }} />
|
<Spinner
|
||||||
|
size={SpinnerSize.large}
|
||||||
|
label={label}
|
||||||
|
styles={{ label: { fontWeight: 600, color: isDarkMode ? "#ffffff" : "#323130" } }}
|
||||||
|
/>
|
||||||
</Overlay>
|
</Overlay>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -11,3 +11,14 @@
|
|||||||
gap: 8px;
|
gap: 8px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Override dark mode inherit for pagination icons */
|
||||||
|
body.isDarkMode .pager-container .ms-Button .ms-Button-icon,
|
||||||
|
body.isDarkMode .pager-container .ms-Button i {
|
||||||
|
color: var(--colorBrandForeground1);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.isDarkMode .pager-container .ms-Button:disabled .ms-Button-icon,
|
||||||
|
body.isDarkMode .pager-container .ms-Button:disabled i {
|
||||||
|
color: var(--colorNeutralForegroundDisabled);
|
||||||
|
}
|
||||||
@@ -31,6 +31,7 @@ const iconButtonStyles = {
|
|||||||
outline: "none",
|
outline: "none",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
const textStyle: React.CSSProperties = { color: "var(--colorNeutralForeground1)" };
|
||||||
|
|
||||||
const Pager: React.FC<PagerProps> = ({
|
const Pager: React.FC<PagerProps> = ({
|
||||||
startIndex,
|
startIndex,
|
||||||
@@ -59,7 +60,7 @@ const Pager: React.FC<PagerProps> = ({
|
|||||||
return (
|
return (
|
||||||
<div className={className || "pager-container"}>
|
<div className={className || "pager-container"}>
|
||||||
{showItemCount && (
|
{showItemCount && (
|
||||||
<Text>
|
<Text style={textStyle}>
|
||||||
Showing {startIndex + 1} - {endIndex} of {totalCount} items
|
Showing {startIndex + 1} - {endIndex} of {totalCount} items
|
||||||
</Text>
|
</Text>
|
||||||
)}
|
)}
|
||||||
@@ -82,7 +83,7 @@ const Pager: React.FC<PagerProps> = ({
|
|||||||
disabled={disabled || currentPage === 1}
|
disabled={disabled || currentPage === 1}
|
||||||
styles={iconButtonStyles}
|
styles={iconButtonStyles}
|
||||||
/>
|
/>
|
||||||
<Text>
|
<Text style={textStyle}>
|
||||||
Page {currentPage} of {totalPages}
|
Page {currentPage} of {totalPages}
|
||||||
</Text>
|
</Text>
|
||||||
<IconButton
|
<IconButton
|
||||||
|
|||||||
@@ -1,24 +1,28 @@
|
|||||||
import { CommandBar as FluentCommandBar, ICommandBarItemProps } from "@fluentui/react";
|
import { CommandBar as FluentCommandBar, ICommandBarItemProps } from "@fluentui/react";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { StyleConstants } from "../../../Common/StyleConstants";
|
import { useThemeStore } from "../../../hooks/useTheme";
|
||||||
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
||||||
import * as CommandBarUtil from "../../Menus/CommandBar/CommandBarUtil";
|
import * as CommandBarUtil from "../../Menus/CommandBar/CommandBarUtil";
|
||||||
|
import { getThemeTokens } from "../../Theme/ThemeUtil";
|
||||||
import { ContainerCopyProps } from "../Types/CopyJobTypes";
|
import { ContainerCopyProps } from "../Types/CopyJobTypes";
|
||||||
import { getCommandBarButtons } from "./Utils";
|
import { getCommandBarButtons } from "./Utils";
|
||||||
|
|
||||||
const backgroundColor = StyleConstants.BaseLight;
|
|
||||||
const rootStyle = {
|
|
||||||
root: {
|
|
||||||
backgroundColor: backgroundColor,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const CopyJobCommandBar: React.FC<ContainerCopyProps> = ({ explorer }) => {
|
const CopyJobCommandBar: React.FC<ContainerCopyProps> = ({ explorer }) => {
|
||||||
|
const isDarkMode = useThemeStore((state) => state.isDarkMode);
|
||||||
|
const themeTokens = getThemeTokens(isDarkMode);
|
||||||
|
const backgroundColor = themeTokens.colorNeutralBackground1;
|
||||||
|
|
||||||
|
const rootStyle = {
|
||||||
|
root: {
|
||||||
|
backgroundColor: backgroundColor,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
const commandBarItems: CommandButtonComponentProps[] = getCommandBarButtons(explorer);
|
const commandBarItems: CommandButtonComponentProps[] = getCommandBarButtons(explorer);
|
||||||
const controlButtons: ICommandBarItemProps[] = CommandBarUtil.convertButton(commandBarItems, backgroundColor);
|
const controlButtons: ICommandBarItemProps[] = CommandBarUtil.convertButton(commandBarItems, backgroundColor);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="commandBarContainer">
|
<div className="commandBarContainer" style={{ backgroundColor }}>
|
||||||
<FluentCommandBar
|
<FluentCommandBar
|
||||||
ariaLabel="Use left and right arrow keys to navigate between commands"
|
ariaLabel="Use left and right arrow keys to navigate between commands"
|
||||||
styles={rootStyle}
|
styles={rootStyle}
|
||||||
|
|||||||
@@ -82,9 +82,9 @@ describe("CommandBar Utils", () => {
|
|||||||
it("should include feedback button when platform is Portal", () => {
|
it("should include feedback button when platform is Portal", () => {
|
||||||
const buttons = getCommandBarButtons(mockExplorer);
|
const buttons = getCommandBarButtons(mockExplorer);
|
||||||
|
|
||||||
expect(buttons.length).toBe(3);
|
expect(buttons.length).toBe(4);
|
||||||
|
|
||||||
const feedbackButton = buttons[2];
|
const feedbackButton = buttons[3];
|
||||||
expect(feedbackButton).toBeDefined();
|
expect(feedbackButton).toBeDefined();
|
||||||
expect(feedbackButton.ariaLabel).toBe("Provide feedback on copy jobs");
|
expect(feedbackButton.ariaLabel).toBe("Provide feedback on copy jobs");
|
||||||
expect(feedbackButton.tooltipText).toBe("Feedback");
|
expect(feedbackButton.tooltipText).toBe("Feedback");
|
||||||
@@ -107,7 +107,7 @@ describe("CommandBar Utils", () => {
|
|||||||
const { getCommandBarButtons: getCommandBarButtonsEmulator } = await import("./Utils");
|
const { getCommandBarButtons: getCommandBarButtonsEmulator } = await import("./Utils");
|
||||||
const buttons = getCommandBarButtonsEmulator(mockExplorer);
|
const buttons = getCommandBarButtonsEmulator(mockExplorer);
|
||||||
|
|
||||||
expect(buttons.length).toBe(2);
|
expect(buttons.length).toBe(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should call openCreateCopyJobPanel when create button is clicked", () => {
|
it("should call openCreateCopyJobPanel when create button is clicked", () => {
|
||||||
@@ -131,7 +131,7 @@ describe("CommandBar Utils", () => {
|
|||||||
|
|
||||||
it("should call openContainerCopyFeedbackBlade when feedback button is clicked", () => {
|
it("should call openContainerCopyFeedbackBlade when feedback button is clicked", () => {
|
||||||
const buttons = getCommandBarButtons(mockExplorer);
|
const buttons = getCommandBarButtons(mockExplorer);
|
||||||
const feedbackButton = buttons[2];
|
const feedbackButton = buttons[3];
|
||||||
|
|
||||||
feedbackButton.onCommandClick({} as React.SyntheticEvent);
|
feedbackButton.onCommandClick({} as React.SyntheticEvent);
|
||||||
|
|
||||||
@@ -148,7 +148,10 @@ describe("CommandBar Utils", () => {
|
|||||||
expect(buttons[1].iconAlt).toBe("Refresh");
|
expect(buttons[1].iconAlt).toBe("Refresh");
|
||||||
|
|
||||||
expect(buttons[2].iconSrc).toBeDefined();
|
expect(buttons[2].iconSrc).toBeDefined();
|
||||||
expect(buttons[2].iconAlt).toBe("Feedback");
|
expect(buttons[2].iconAlt).toBe("Dark Theme");
|
||||||
|
|
||||||
|
expect(buttons[3].iconSrc).toBeDefined();
|
||||||
|
expect(buttons[3].iconAlt).toBe("Feedback");
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should handle null MonitorCopyJobsRefState ref gracefully", () => {
|
it("should handle null MonitorCopyJobsRefState ref gracefully", () => {
|
||||||
@@ -202,12 +205,13 @@ describe("CommandBar Utils", () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should maintain button order: create, refresh, feedback", () => {
|
it("should maintain button order: create, refresh, themeToggle, feedback", () => {
|
||||||
const buttons = getCommandBarButtons(mockExplorer);
|
const buttons = getCommandBarButtons(mockExplorer);
|
||||||
|
|
||||||
expect(buttons[0].tooltipText).toBe("Create Copy Job");
|
expect(buttons[0].tooltipText).toBe("Create Copy Job");
|
||||||
expect(buttons[1].tooltipText).toBe("Refresh");
|
expect(buttons[1].tooltipText).toBe("Refresh");
|
||||||
expect(buttons[2].tooltipText).toBe("Feedback");
|
expect(buttons[2].tooltipText).toBe("Dark Theme");
|
||||||
|
expect(buttons[3].tooltipText).toBe("Feedback");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -229,7 +233,7 @@ describe("CommandBar Utils", () => {
|
|||||||
buttons[1].onCommandClick({} as React.SyntheticEvent);
|
buttons[1].onCommandClick({} as React.SyntheticEvent);
|
||||||
expect(mockRefreshJobList).toHaveBeenCalled();
|
expect(mockRefreshJobList).toHaveBeenCalled();
|
||||||
|
|
||||||
buttons[2].onCommandClick({} as React.SyntheticEvent);
|
buttons[3].onCommandClick({} as React.SyntheticEvent);
|
||||||
expect(mockOpenContainerCopyFeedbackBlade).toHaveBeenCalled();
|
expect(mockOpenContainerCopyFeedbackBlade).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
import AddIcon from "../../../../images/Add.svg";
|
import AddIcon from "../../../../images/Add.svg";
|
||||||
import FeedbackIcon from "../../../../images/Feedback-Command.svg";
|
import FeedbackIcon from "../../../../images/Feedback-Command.svg";
|
||||||
|
import MoonIcon from "../../../../images/MoonIcon.svg";
|
||||||
import RefreshIcon from "../../../../images/refresh-cosmos.svg";
|
import RefreshIcon from "../../../../images/refresh-cosmos.svg";
|
||||||
|
import SunIcon from "../../../../images/SunIcon.svg";
|
||||||
import { configContext, Platform } from "../../../ConfigContext";
|
import { configContext, Platform } from "../../../ConfigContext";
|
||||||
|
import { useThemeStore } from "../../../hooks/useTheme";
|
||||||
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
||||||
import Explorer from "../../Explorer";
|
import Explorer from "../../Explorer";
|
||||||
import * as Actions from "../Actions/CopyJobActions";
|
import * as Actions from "../Actions/CopyJobActions";
|
||||||
@@ -11,6 +14,7 @@ import { CopyJobCommandBarBtnType } from "../Types/CopyJobTypes";
|
|||||||
|
|
||||||
function getCopyJobBtns(explorer: Explorer): CopyJobCommandBarBtnType[] {
|
function getCopyJobBtns(explorer: Explorer): CopyJobCommandBarBtnType[] {
|
||||||
const monitorCopyJobsRef = MonitorCopyJobsRefState((state) => state.ref);
|
const monitorCopyJobsRef = MonitorCopyJobsRefState((state) => state.ref);
|
||||||
|
const isDarkMode = useThemeStore.getState().isDarkMode;
|
||||||
const buttons: CopyJobCommandBarBtnType[] = [
|
const buttons: CopyJobCommandBarBtnType[] = [
|
||||||
{
|
{
|
||||||
key: "createCopyJob",
|
key: "createCopyJob",
|
||||||
@@ -26,7 +30,15 @@ function getCopyJobBtns(explorer: Explorer): CopyJobCommandBarBtnType[] {
|
|||||||
ariaLabel: ContainerCopyMessages.refreshButtonAriaLabel,
|
ariaLabel: ContainerCopyMessages.refreshButtonAriaLabel,
|
||||||
onClick: () => monitorCopyJobsRef?.refreshJobList(),
|
onClick: () => monitorCopyJobsRef?.refreshJobList(),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "themeToggle",
|
||||||
|
iconSrc: isDarkMode ? SunIcon : MoonIcon,
|
||||||
|
label: isDarkMode ? "Light Theme" : "Dark Theme",
|
||||||
|
ariaLabel: isDarkMode ? "Switch to Light Theme" : "Switch to Dark Theme",
|
||||||
|
onClick: () => useThemeStore.getState().toggleTheme(),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
if (configContext.platform === Platform.Portal) {
|
if (configContext.platform === Platform.Portal) {
|
||||||
buttons.push({
|
buttons.push({
|
||||||
key: "feedback",
|
key: "feedback",
|
||||||
|
|||||||
@@ -12,7 +12,12 @@ import useToggle from "./hooks/useToggle";
|
|||||||
const managedIdentityTooltip = (
|
const managedIdentityTooltip = (
|
||||||
<Text>
|
<Text>
|
||||||
{ContainerCopyMessages.addManagedIdentity.tooltip.content}
|
{ContainerCopyMessages.addManagedIdentity.tooltip.content}
|
||||||
<Link href={ContainerCopyMessages.addManagedIdentity.tooltip.href} target="_blank" rel="noopener noreferrer">
|
<Link
|
||||||
|
style={{ color: "var(--colorBrandForeground1)" }}
|
||||||
|
href={ContainerCopyMessages.addManagedIdentity.tooltip.href}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
{ContainerCopyMessages.addManagedIdentity.tooltip.hrefText}
|
{ContainerCopyMessages.addManagedIdentity.tooltip.hrefText}
|
||||||
</Link>
|
</Link>
|
||||||
</Text>
|
</Text>
|
||||||
@@ -26,7 +31,7 @@ const AddManagedIdentity: React.FC<AddManagedIdentityProps> = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack className="addManagedIdentityContainer" tokens={{ childrenGap: 15, padding: "0 0 0 20px" }}>
|
<Stack className="addManagedIdentityContainer" tokens={{ childrenGap: 15, padding: "0 0 0 20px" }}>
|
||||||
<Text>
|
<Text className="themeText">
|
||||||
{ContainerCopyMessages.addManagedIdentity.description} 
|
{ContainerCopyMessages.addManagedIdentity.description} 
|
||||||
<Link href={ContainerCopyMessages.addManagedIdentity.descriptionHref} target="_blank" rel="noopener noreferrer">
|
<Link href={ContainerCopyMessages.addManagedIdentity.descriptionHref} target="_blank" rel="noopener noreferrer">
|
||||||
{ContainerCopyMessages.addManagedIdentity.descriptionHrefText}
|
{ContainerCopyMessages.addManagedIdentity.descriptionHrefText}
|
||||||
|
|||||||
@@ -13,7 +13,12 @@ import useToggle from "./hooks/useToggle";
|
|||||||
const TooltipContent = (
|
const TooltipContent = (
|
||||||
<Text>
|
<Text>
|
||||||
{ContainerCopyMessages.readPermissionAssigned.tooltip.content}
|
{ContainerCopyMessages.readPermissionAssigned.tooltip.content}
|
||||||
<Link href={ContainerCopyMessages.readPermissionAssigned.tooltip.href} target="_blank" rel="noopener noreferrer">
|
<Link
|
||||||
|
style={{ color: "var(--colorBrandForeground1)" }}
|
||||||
|
href={ContainerCopyMessages.readPermissionAssigned.tooltip.href}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
{ContainerCopyMessages.readPermissionAssigned.tooltip.hrefText}
|
{ContainerCopyMessages.readPermissionAssigned.tooltip.hrefText}
|
||||||
</Link>
|
</Link>
|
||||||
</Text>
|
</Text>
|
||||||
|
|||||||
@@ -47,8 +47,8 @@ const PermissionGroup: React.FC<PermissionGroupConfig> = ({ title, description,
|
|||||||
tokens={{ childrenGap: 15 }}
|
tokens={{ childrenGap: 15 }}
|
||||||
styles={{
|
styles={{
|
||||||
root: {
|
root: {
|
||||||
background: "#fafafa",
|
background: "var(--colorNeutralBackground2)",
|
||||||
border: "1px solid #e1e1e1",
|
border: "1px solid var(--colorNeutralStroke1)",
|
||||||
borderRadius: 8,
|
borderRadius: 8,
|
||||||
padding: 16,
|
padding: 16,
|
||||||
boxShadow: "0 1px 3px rgba(0,0,0,0.1)",
|
boxShadow: "0 1px 3px rgba(0,0,0,0.1)",
|
||||||
@@ -56,11 +56,11 @@ const PermissionGroup: React.FC<PermissionGroupConfig> = ({ title, description,
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Stack tokens={{ childrenGap: 5 }}>
|
<Stack tokens={{ childrenGap: 5 }}>
|
||||||
<Text variant="medium" style={{ fontWeight: 600 }}>
|
<Text variant="medium" style={{ fontWeight: 600, color: "var(--colorNeutralForeground1)" }}>
|
||||||
{title}
|
{title}
|
||||||
</Text>
|
</Text>
|
||||||
{description && (
|
{description && (
|
||||||
<Text variant="small" styles={{ root: { color: "#605E5C" } }}>
|
<Text variant="small" styles={{ root: { color: "var(--colorNeutralForeground2)" } }}>
|
||||||
{description}
|
{description}
|
||||||
</Text>
|
</Text>
|
||||||
)}
|
)}
|
||||||
@@ -100,7 +100,7 @@ const AssignPermissions = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack className="assignPermissionsContainer" tokens={{ childrenGap: 20 }}>
|
<Stack className="assignPermissionsContainer" tokens={{ childrenGap: 20 }}>
|
||||||
<Text variant="medium">
|
<Text variant="medium" style={{ color: "var(--colorNeutralForeground1)" }}>
|
||||||
{isSameAccount && copyJobState.migrationType === CopyJobMigrationType.Online
|
{isSameAccount && copyJobState.migrationType === CopyJobMigrationType.Online
|
||||||
? ContainerCopyMessages.assignPermissions.intraAccountOnlineDescription(
|
? ContainerCopyMessages.assignPermissions.intraAccountOnlineDescription(
|
||||||
copyJobState?.source?.account?.name || "",
|
copyJobState?.source?.account?.name || "",
|
||||||
|
|||||||
@@ -12,7 +12,12 @@ import useToggle from "./hooks/useToggle";
|
|||||||
const managedIdentityTooltip = (
|
const managedIdentityTooltip = (
|
||||||
<Text>
|
<Text>
|
||||||
{ContainerCopyMessages.defaultManagedIdentity.tooltip.content}
|
{ContainerCopyMessages.defaultManagedIdentity.tooltip.content}
|
||||||
<Link href={ContainerCopyMessages.defaultManagedIdentity.tooltip.href} target="_blank" rel="noopener noreferrer">
|
<Link
|
||||||
|
style={{ color: "var(--colorBrandForeground1)" }}
|
||||||
|
href={ContainerCopyMessages.defaultManagedIdentity.tooltip.href}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
{ContainerCopyMessages.defaultManagedIdentity.tooltip.hrefText}
|
{ContainerCopyMessages.defaultManagedIdentity.tooltip.hrefText}
|
||||||
</Link>
|
</Link>
|
||||||
</Text>
|
</Text>
|
||||||
|
|||||||
@@ -13,7 +13,12 @@ import InfoTooltip from "../Components/InfoTooltip";
|
|||||||
const tooltipContent = (
|
const tooltipContent = (
|
||||||
<Text>
|
<Text>
|
||||||
{ContainerCopyMessages.pointInTimeRestore.tooltip.content}
|
{ContainerCopyMessages.pointInTimeRestore.tooltip.content}
|
||||||
<Link href={ContainerCopyMessages.pointInTimeRestore.tooltip.href} target="_blank" rel="noopener noreferrer">
|
<Link
|
||||||
|
style={{ color: "var(--colorBrandForeground1)" }}
|
||||||
|
href={ContainerCopyMessages.pointInTimeRestore.tooltip.href}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
{ContainerCopyMessages.pointInTimeRestore.tooltip.hrefText}
|
{ContainerCopyMessages.pointInTimeRestore.tooltip.hrefText}
|
||||||
</Link>
|
</Link>
|
||||||
</Text>
|
</Text>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ exports[`AddManagedIdentity Snapshot Tests renders initial state correctly 1`] =
|
|||||||
class="ms-Stack addManagedIdentityContainer css-109"
|
class="ms-Stack addManagedIdentityContainer css-109"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
>
|
>
|
||||||
A system-assigned managed identity is restricted to one per resource and is tied to the lifecycle of this resource. Once enabled, you can grant permissions to the managed identity by using Azure role-based access control (Azure RBAC). The managed identity is authenticated with Microsoft Entra ID, so you don’t have to store any credentials in code.
|
A system-assigned managed identity is restricted to one per resource and is tied to the lifecycle of this resource. Once enabled, you can grant permissions to the managed identity by using Azure role-based access control (Azure RBAC). The managed identity is authenticated with Microsoft Entra ID, so you don’t have to store any credentials in code.
|
||||||
|
|
||||||
@@ -92,7 +92,7 @@ exports[`AddManagedIdentity Snapshot Tests renders loading state 1`] = `
|
|||||||
class="ms-Stack addManagedIdentityContainer css-109"
|
class="ms-Stack addManagedIdentityContainer css-109"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
>
|
>
|
||||||
A system-assigned managed identity is restricted to one per resource and is tied to the lifecycle of this resource. Once enabled, you can grant permissions to the managed identity by using Azure role-based access control (Azure RBAC). The managed identity is authenticated with Microsoft Entra ID, so you don’t have to store any credentials in code.
|
A system-assigned managed identity is restricted to one per resource and is tied to the lifecycle of this resource. Once enabled, you can grant permissions to the managed identity by using Azure role-based access control (Azure RBAC). The managed identity is authenticated with Microsoft Entra ID, so you don’t have to store any credentials in code.
|
||||||
|
|
||||||
@@ -192,13 +192,13 @@ exports[`AddManagedIdentity Snapshot Tests renders loading state 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<span
|
<span
|
||||||
class="css-124"
|
class="themeText css-124"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
Enable system assigned managed identity
|
Enable system assigned managed identity
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
>
|
>
|
||||||
Enable system-assigned managed identity on the test-target-account. To confirm, click the "Yes" button.
|
Enable system-assigned managed identity on the test-target-account. To confirm, click the "Yes" button.
|
||||||
</span>
|
</span>
|
||||||
@@ -261,7 +261,7 @@ exports[`AddManagedIdentity Snapshot Tests renders with toggle on and popover vi
|
|||||||
class="ms-Stack addManagedIdentityContainer css-109"
|
class="ms-Stack addManagedIdentityContainer css-109"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
>
|
>
|
||||||
A system-assigned managed identity is restricted to one per resource and is tied to the lifecycle of this resource. Once enabled, you can grant permissions to the managed identity by using Azure role-based access control (Azure RBAC). The managed identity is authenticated with Microsoft Entra ID, so you don’t have to store any credentials in code.
|
A system-assigned managed identity is restricted to one per resource and is tied to the lifecycle of this resource. Once enabled, you can grant permissions to the managed identity by using Azure role-based access control (Azure RBAC). The managed identity is authenticated with Microsoft Entra ID, so you don’t have to store any credentials in code.
|
||||||
|
|
||||||
@@ -345,13 +345,13 @@ exports[`AddManagedIdentity Snapshot Tests renders with toggle on and popover vi
|
|||||||
style="max-width: 450px;"
|
style="max-width: 450px;"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-124"
|
class="themeText css-124"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
Enable system assigned managed identity
|
Enable system assigned managed identity
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
>
|
>
|
||||||
Enable system-assigned managed identity on the test-target-account. To confirm, click the "Yes" button.
|
Enable system-assigned managed identity on the test-target-account. To confirm, click the "Yes" button.
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -22,10 +22,10 @@ const PopoverContainer: React.FC<PopoverContainerProps> = React.memo(
|
|||||||
style={{ maxWidth: 450 }}
|
style={{ maxWidth: 450 }}
|
||||||
>
|
>
|
||||||
<LoadingOverlay isLoading={isLoading} label={ContainerCopyMessages.popoverOverlaySpinnerLabel} />
|
<LoadingOverlay isLoading={isLoading} label={ContainerCopyMessages.popoverOverlaySpinnerLabel} />
|
||||||
<Text variant="mediumPlus" style={{ fontWeight: 600 }}>
|
<Text variant="mediumPlus" className="themeText" style={{ fontWeight: 600 }}>
|
||||||
{title}
|
{title}
|
||||||
</Text>
|
</Text>
|
||||||
<Text>{children}</Text>
|
<Text className="themeText">{children}</Text>
|
||||||
<Stack horizontal tokens={{ childrenGap: 20 }}>
|
<Stack horizontal tokens={{ childrenGap: 20 }}>
|
||||||
<PrimaryButton text={"Yes"} onClick={onPrimary} disabled={isLoading} />
|
<PrimaryButton text={"Yes"} onClick={onPrimary} disabled={isLoading} />
|
||||||
<DefaultButton text="No" onClick={onCancel} disabled={isLoading} />
|
<DefaultButton text="No" onClick={onCancel} disabled={isLoading} />
|
||||||
|
|||||||
@@ -7,11 +7,11 @@ exports[`PopoverMessage Component Edge Cases should handle empty string title 1`
|
|||||||
style="max-width: 450px;"
|
style="max-width: 450px;"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
Test content
|
Test content
|
||||||
@@ -74,7 +74,7 @@ exports[`PopoverMessage Component Edge Cases should handle null children 1`] = `
|
|||||||
style="max-width: 450px;"
|
style="max-width: 450px;"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
Test Title
|
Test Title
|
||||||
@@ -136,7 +136,7 @@ exports[`PopoverMessage Component Edge Cases should handle undefined children 1`
|
|||||||
style="max-width: 450px;"
|
style="max-width: 450px;"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
Test Title
|
Test Title
|
||||||
@@ -198,13 +198,13 @@ exports[`PopoverMessage Component Edge Cases should handle very long title 1`] =
|
|||||||
style="max-width: 450px;"
|
style="max-width: 450px;"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
This is a very long title that might cause layout issues or text wrapping in the popover component
|
This is a very long title that might cause layout issues or text wrapping in the popover component
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
Test content
|
Test content
|
||||||
@@ -269,13 +269,13 @@ exports[`PopoverMessage Component Rendering should render correctly when visible
|
|||||||
style="max-width: 450px;"
|
style="max-width: 450px;"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
Test Title
|
Test Title
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
Test content
|
Test content
|
||||||
@@ -338,13 +338,13 @@ exports[`PopoverMessage Component Rendering should render correctly with differe
|
|||||||
style="max-width: 450px;"
|
style="max-width: 450px;"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
Test Title
|
Test Title
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
@@ -412,13 +412,13 @@ exports[`PopoverMessage Component Rendering should render correctly with differe
|
|||||||
style="max-width: 450px;"
|
style="max-width: 450px;"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
Custom Title
|
Custom Title
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
Test content
|
Test content
|
||||||
@@ -485,13 +485,13 @@ exports[`PopoverMessage Component Rendering should render correctly with loading
|
|||||||
data-testid="loading-overlay"
|
data-testid="loading-overlay"
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
style="font-weight: 600;"
|
style="font-weight: 600;"
|
||||||
>
|
>
|
||||||
Test Title
|
Test Title
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
Test content
|
Test content
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ const AddCollectionPanelWrapper: React.FunctionComponent<AddCollectionPanelWrapp
|
|||||||
return (
|
return (
|
||||||
<Stack className="addCollectionPanelWrapper">
|
<Stack className="addCollectionPanelWrapper">
|
||||||
<Stack.Item className="addCollectionPanelHeader">
|
<Stack.Item className="addCollectionPanelHeader">
|
||||||
<Text>{ContainerCopyMessages.createNewContainerSubHeading}</Text>
|
<Text className="themeText">{ContainerCopyMessages.createNewContainerSubHeading}</Text>
|
||||||
</Stack.Item>
|
</Stack.Item>
|
||||||
<Stack.Item className="addCollectionPanelBody">
|
<Stack.Item className="addCollectionPanelBody">
|
||||||
<AddCollectionPanel explorer={explorer} isCopyJobFlow={true} onSubmitSuccess={handleAddCollectionSuccess} />
|
<AddCollectionPanel explorer={explorer} isCopyJobFlow={true} onSubmitSuccess={handleAddCollectionSuccess} />
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ exports[`AddCollectionPanelWrapper Component Rendering should match snapshot 1`]
|
|||||||
class="ms-StackItem addCollectionPanelHeader css-110"
|
class="ms-StackItem addCollectionPanelHeader css-110"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
Select the properties for your container.
|
Select the properties for your container.
|
||||||
</span>
|
</span>
|
||||||
@@ -50,7 +50,7 @@ exports[`AddCollectionPanelWrapper Component Rendering should match snapshot wit
|
|||||||
class="ms-StackItem addCollectionPanelHeader css-110"
|
class="ms-StackItem addCollectionPanelHeader css-110"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
Select the properties for your container.
|
Select the properties for your container.
|
||||||
</span>
|
</span>
|
||||||
@@ -91,7 +91,7 @@ exports[`AddCollectionPanelWrapper Component Rendering should match snapshot wit
|
|||||||
class="ms-StackItem addCollectionPanelHeader css-110"
|
class="ms-StackItem addCollectionPanelHeader css-110"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
Select the properties for your container.
|
Select the properties for your container.
|
||||||
</span>
|
</span>
|
||||||
@@ -132,7 +132,7 @@ exports[`AddCollectionPanelWrapper Component Rendering should match snapshot wit
|
|||||||
class="ms-StackItem addCollectionPanelHeader css-110"
|
class="ms-StackItem addCollectionPanelHeader css-110"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-111"
|
class="themeText css-111"
|
||||||
>
|
>
|
||||||
Select the properties for your container.
|
Select the properties for your container.
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable react/prop-types */
|
/* eslint-disable react/prop-types */
|
||||||
/* eslint-disable react/display-name */
|
/* eslint-disable react/display-name */
|
||||||
import { Checkbox, Stack } from "@fluentui/react";
|
import { Checkbox, ICheckboxStyles, Stack } from "@fluentui/react";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import ContainerCopyMessages from "../../../../ContainerCopyMessages";
|
import ContainerCopyMessages from "../../../../ContainerCopyMessages";
|
||||||
|
|
||||||
@@ -9,8 +9,25 @@ interface MigrationTypeCheckboxProps {
|
|||||||
onChange: (_ev?: React.FormEvent, checked?: boolean) => void;
|
onChange: (_ev?: React.FormEvent, checked?: boolean) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const MigrationTypeCheckbox: React.FC<MigrationTypeCheckboxProps> = React.memo(({ checked, onChange }) => (
|
const checkboxStyles: ICheckboxStyles = {
|
||||||
<Stack horizontal horizontalAlign="space-between" className="migrationTypeRow">
|
text: { color: "var(--colorNeutralForeground1)" },
|
||||||
<Checkbox label={ContainerCopyMessages.migrationTypeCheckboxLabel} checked={checked} onChange={onChange} />
|
checkbox: { borderColor: "var(--colorNeutralStroke1)" },
|
||||||
</Stack>
|
root: {
|
||||||
));
|
selectors: {
|
||||||
|
":hover .ms-Checkbox-text": { color: "var(--colorNeutralForeground1)" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export const MigrationTypeCheckbox: React.FC<MigrationTypeCheckboxProps> = React.memo(({ checked, onChange }) => {
|
||||||
|
return (
|
||||||
|
<Stack horizontal horizontalAlign="space-between" className="migrationTypeRow">
|
||||||
|
<Checkbox
|
||||||
|
label={ContainerCopyMessages.migrationTypeCheckboxLabel}
|
||||||
|
checked={checked}
|
||||||
|
onChange={onChange}
|
||||||
|
styles={checkboxStyles}
|
||||||
|
/>
|
||||||
|
</Stack>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ const SelectAccount = React.memo(() => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack data-test="Panel:SelectAccountContainer" className="selectAccountContainer" tokens={{ childrenGap: 15 }}>
|
<Stack data-test="Panel:SelectAccountContainer" className="selectAccountContainer" tokens={{ childrenGap: 15 }}>
|
||||||
<Text>{ContainerCopyMessages.selectAccountDescription}</Text>
|
<Text className="themeText">{ContainerCopyMessages.selectAccountDescription}</Text>
|
||||||
|
|
||||||
<SubscriptionDropdown />
|
<SubscriptionDropdown />
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ exports[`SelectAccount Component Rendering should render correctly with snapshot
|
|||||||
data-test="Panel:SelectAccountContainer"
|
data-test="Panel:SelectAccountContainer"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-110"
|
class="themeText css-110"
|
||||||
>
|
>
|
||||||
Please select a source account from which to copy.
|
Please select a source account from which to copy.
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ const SelectSourceAndTargetContainers = ({ showAddCollectionPanel }: SelectSourc
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack className="selectSourceAndTargetContainers" tokens={{ childrenGap: 25 }}>
|
<Stack className="selectSourceAndTargetContainers" tokens={{ childrenGap: 25 }}>
|
||||||
<span>{ContainerCopyMessages.selectSourceAndTargetContainersDescription}</span>
|
<span className="themeText">{ContainerCopyMessages.selectSourceAndTargetContainersDescription}</span>
|
||||||
<DatabaseContainerSection
|
<DatabaseContainerSection
|
||||||
heading={ContainerCopyMessages.sourceContainerSubHeading}
|
heading={ContainerCopyMessages.sourceContainerSubHeading}
|
||||||
databaseOptions={sourceDatabaseOptions}
|
databaseOptions={sourceDatabaseOptions}
|
||||||
|
|||||||
@@ -41,7 +41,11 @@ export const DatabaseContainerSection = ({
|
|||||||
onChange={containerOnChange}
|
onChange={containerOnChange}
|
||||||
/>
|
/>
|
||||||
{handleOnDemandCreateContainer && (
|
{handleOnDemandCreateContainer && (
|
||||||
<ActionButton className="create-container-link-btn" onClick={() => handleOnDemandCreateContainer()}>
|
<ActionButton
|
||||||
|
className="create-container-link-btn"
|
||||||
|
style={{ color: "var(--colorBrandForeground1)" }}
|
||||||
|
onClick={() => handleOnDemandCreateContainer()}
|
||||||
|
>
|
||||||
{ContainerCopyMessages.createContainerButtonLabel}
|
{ContainerCopyMessages.createContainerButtonLabel}
|
||||||
</ActionButton>
|
</ActionButton>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { DetailsList, DetailsListLayoutMode, IColumn, Stack, Text } from "@fluentui/react";
|
import { DetailsList, DetailsListLayoutMode, IColumn, Stack, Text } from "@fluentui/react";
|
||||||
import React, { memo } from "react";
|
import React, { memo } from "react";
|
||||||
|
import { useThemeStore } from "../../../../hooks/useTheme";
|
||||||
import ContainerCopyMessages from "../../ContainerCopyMessages";
|
import ContainerCopyMessages from "../../ContainerCopyMessages";
|
||||||
import { CopyJobStatusType } from "../../Enums/CopyJobEnums";
|
import { CopyJobStatusType } from "../../Enums/CopyJobEnums";
|
||||||
import { CopyJobType } from "../../Types/CopyJobTypes";
|
import { CopyJobType } from "../../Types/CopyJobTypes";
|
||||||
@@ -63,6 +64,19 @@ const getCopyJobDetailsListColumns = (): IColumn[] => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const CopyJobDetails: React.FC<CopyJobDetailsProps> = ({ job }) => {
|
const CopyJobDetails: React.FC<CopyJobDetailsProps> = ({ job }) => {
|
||||||
|
const isDarkMode = useThemeStore((state) => state.isDarkMode);
|
||||||
|
|
||||||
|
const errorMessageStyle: React.CSSProperties = {
|
||||||
|
whiteSpace: "pre-wrap",
|
||||||
|
...(isDarkMode && {
|
||||||
|
whiteSpace: "pre-wrap",
|
||||||
|
backgroundColor: "var(--colorNeutralBackground2)",
|
||||||
|
color: "var(--colorNeutralForeground1)",
|
||||||
|
padding: "10px",
|
||||||
|
borderRadius: "4px",
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
|
||||||
const selectedContainers = [
|
const selectedContainers = [
|
||||||
{
|
{
|
||||||
sourceContainerName: job?.Source?.containerName || "N/A",
|
sourceContainerName: job?.Source?.containerName || "N/A",
|
||||||
@@ -77,10 +91,10 @@ const CopyJobDetails: React.FC<CopyJobDetailsProps> = ({ job }) => {
|
|||||||
<Stack className="copyJobDetailsContainer" tokens={{ childrenGap: 15 }} data-testid="copy-job-details">
|
<Stack className="copyJobDetailsContainer" tokens={{ childrenGap: 15 }} data-testid="copy-job-details">
|
||||||
{job.Error ? (
|
{job.Error ? (
|
||||||
<Stack.Item data-testid="error-stack" style={sectionCss.verticalAlign}>
|
<Stack.Item data-testid="error-stack" style={sectionCss.verticalAlign}>
|
||||||
<Text className="bold" style={sectionCss.headingText}>
|
<Text className="bold themeText" style={sectionCss.headingText}>
|
||||||
{ContainerCopyMessages.errorTitle}
|
{ContainerCopyMessages.errorTitle}
|
||||||
</Text>
|
</Text>
|
||||||
<Text as="pre" style={{ whiteSpace: "pre-wrap" }}>
|
<Text as="pre" style={errorMessageStyle}>
|
||||||
{job.Error.message}
|
{job.Error.message}
|
||||||
</Text>
|
</Text>
|
||||||
</Stack.Item>
|
</Stack.Item>
|
||||||
@@ -88,16 +102,16 @@ const CopyJobDetails: React.FC<CopyJobDetailsProps> = ({ job }) => {
|
|||||||
<Stack.Item data-testid="selectedcollection-stack">
|
<Stack.Item data-testid="selectedcollection-stack">
|
||||||
<Stack tokens={{ childrenGap: 15 }}>
|
<Stack tokens={{ childrenGap: 15 }}>
|
||||||
<Stack.Item style={sectionCss.verticalAlign}>
|
<Stack.Item style={sectionCss.verticalAlign}>
|
||||||
<Text className="bold">{ContainerCopyMessages.MonitorJobs.Columns.lastUpdatedTime}</Text>
|
<Text className="bold themeText">{ContainerCopyMessages.MonitorJobs.Columns.lastUpdatedTime}</Text>
|
||||||
<Text>{job.LastUpdatedTime}</Text>
|
<Text className="themeText">{job.LastUpdatedTime}</Text>
|
||||||
</Stack.Item>
|
</Stack.Item>
|
||||||
<Stack.Item style={sectionCss.verticalAlign}>
|
<Stack.Item style={sectionCss.verticalAlign}>
|
||||||
<Text className="bold">{ContainerCopyMessages.sourceAccountLabel}</Text>
|
<Text className="bold themeText">{ContainerCopyMessages.sourceAccountLabel}</Text>
|
||||||
<Text>{job.Source?.remoteAccountName}</Text>
|
<Text className="themeText">{job.Source?.remoteAccountName}</Text>
|
||||||
</Stack.Item>
|
</Stack.Item>
|
||||||
<Stack.Item style={sectionCss.verticalAlign}>
|
<Stack.Item style={sectionCss.verticalAlign}>
|
||||||
<Text className="bold">{ContainerCopyMessages.MonitorJobs.Columns.mode}</Text>
|
<Text className="bold themeText">{ContainerCopyMessages.MonitorJobs.Columns.mode}</Text>
|
||||||
<Text>{job.Mode}</Text>
|
<Text className="themeText">{job.Mode}</Text>
|
||||||
</Stack.Item>
|
</Stack.Item>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Stack.Item>
|
</Stack.Item>
|
||||||
|
|||||||
@@ -1,30 +1,14 @@
|
|||||||
import { FontIcon, getTheme, mergeStyles, mergeStyleSets, Spinner, SpinnerSize, Stack, Text } from "@fluentui/react";
|
import { FontIcon, mergeStyles, Spinner, SpinnerSize, Stack, Text } from "@fluentui/react";
|
||||||
import PropTypes from "prop-types";
|
import PropTypes from "prop-types";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import ContainerCopyMessages from "../../ContainerCopyMessages";
|
import ContainerCopyMessages from "../../ContainerCopyMessages";
|
||||||
import { CopyJobStatusType } from "../../Enums/CopyJobEnums";
|
import { CopyJobStatusType } from "../../Enums/CopyJobEnums";
|
||||||
|
|
||||||
const theme = getTheme();
|
|
||||||
|
|
||||||
const iconClass = mergeStyles({
|
const iconClass = mergeStyles({
|
||||||
fontSize: "16px",
|
fontSize: "16px",
|
||||||
marginRight: "8px",
|
marginRight: "8px",
|
||||||
});
|
});
|
||||||
|
|
||||||
const classNames = mergeStyleSets({
|
|
||||||
[CopyJobStatusType.Pending]: [{ color: theme.semanticColors.bodySubtext }, iconClass],
|
|
||||||
[CopyJobStatusType.InProgress]: [{ color: theme.palette.themePrimary }, iconClass],
|
|
||||||
[CopyJobStatusType.Running]: [{ color: theme.palette.themePrimary }, iconClass],
|
|
||||||
[CopyJobStatusType.Partitioning]: [{ color: theme.palette.themePrimary }, iconClass],
|
|
||||||
[CopyJobStatusType.Paused]: [{ color: theme.palette.themePrimary }, iconClass],
|
|
||||||
[CopyJobStatusType.Skipped]: [{ color: theme.semanticColors.bodySubtext }, iconClass],
|
|
||||||
[CopyJobStatusType.Cancelled]: [{ color: theme.semanticColors.bodySubtext }, iconClass],
|
|
||||||
[CopyJobStatusType.Failed]: [{ color: theme.semanticColors.errorIcon }, iconClass],
|
|
||||||
[CopyJobStatusType.Faulted]: [{ color: theme.semanticColors.errorIcon }, iconClass],
|
|
||||||
[CopyJobStatusType.Completed]: [{ color: theme.semanticColors.successIcon }, iconClass],
|
|
||||||
unknown: [{ color: theme.semanticColors.bodySubtext }, iconClass],
|
|
||||||
});
|
|
||||||
|
|
||||||
const iconMap: Partial<Record<CopyJobStatusType, string>> = {
|
const iconMap: Partial<Record<CopyJobStatusType, string>> = {
|
||||||
[CopyJobStatusType.Pending]: "Clock",
|
[CopyJobStatusType.Pending]: "Clock",
|
||||||
[CopyJobStatusType.Paused]: "CirclePause",
|
[CopyJobStatusType.Paused]: "CirclePause",
|
||||||
@@ -35,6 +19,17 @@ const iconMap: Partial<Record<CopyJobStatusType, string>> = {
|
|||||||
[CopyJobStatusType.Completed]: "CompletedSolid",
|
[CopyJobStatusType.Completed]: "CompletedSolid",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Icon colors for different statuses
|
||||||
|
const statusIconColors: Partial<Record<CopyJobStatusType, string>> = {
|
||||||
|
[CopyJobStatusType.Failed]: "var(--colorPaletteRedForeground1)",
|
||||||
|
[CopyJobStatusType.Faulted]: "var(--colorPaletteRedForeground1)",
|
||||||
|
[CopyJobStatusType.Completed]: "#107c10", // Green color for success
|
||||||
|
[CopyJobStatusType.InProgress]: "var(--colorBrandForeground1)",
|
||||||
|
[CopyJobStatusType.Running]: "var(--colorBrandForeground1)",
|
||||||
|
[CopyJobStatusType.Partitioning]: "var(--colorBrandForeground1)",
|
||||||
|
[CopyJobStatusType.Paused]: "var(--colorBrandForeground1)",
|
||||||
|
};
|
||||||
|
|
||||||
export interface CopyJobStatusWithIconProps {
|
export interface CopyJobStatusWithIconProps {
|
||||||
status: CopyJobStatusType;
|
status: CopyJobStatusType;
|
||||||
}
|
}
|
||||||
@@ -47,19 +42,17 @@ const CopyJobStatusWithIcon: React.FC<CopyJobStatusWithIconProps> = React.memo((
|
|||||||
CopyJobStatusType.InProgress,
|
CopyJobStatusType.InProgress,
|
||||||
CopyJobStatusType.Partitioning,
|
CopyJobStatusType.Partitioning,
|
||||||
].includes(status);
|
].includes(status);
|
||||||
|
const iconColor = statusIconColors[status] || "var(--colorNeutralForeground2)";
|
||||||
|
const iconStyle = mergeStyles(iconClass, { color: iconColor });
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack horizontal verticalAlign="center">
|
<Stack horizontal verticalAlign="center">
|
||||||
{isSpinnerStatus ? (
|
{isSpinnerStatus ? (
|
||||||
<Spinner size={SpinnerSize.small} style={{ marginRight: "8px" }} />
|
<Spinner size={SpinnerSize.small} style={{ marginRight: "8px" }} />
|
||||||
) : (
|
) : (
|
||||||
<FontIcon
|
<FontIcon aria-label={status} iconName={iconMap[status] || "UnknownSolid"} className={iconStyle} />
|
||||||
aria-label={status}
|
|
||||||
iconName={iconMap[status] || "UnknownSolid"}
|
|
||||||
className={classNames[status] || classNames.unknown}
|
|
||||||
/>
|
|
||||||
)}
|
)}
|
||||||
<Text>{statusText}</Text>
|
<Text className="themeText">{statusText}</Text>
|
||||||
</Stack>
|
</Stack>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ import {
|
|||||||
} from "@fluentui/react";
|
} from "@fluentui/react";
|
||||||
import React, { useEffect } from "react";
|
import React, { useEffect } from "react";
|
||||||
import Pager from "../../../../Common/Pager";
|
import Pager from "../../../../Common/Pager";
|
||||||
|
import { useThemeStore } from "../../../../hooks/useTheme";
|
||||||
|
import { getThemeTokens } from "../../../Theme/ThemeUtil";
|
||||||
import { openCopyJobDetailsPanel } from "../../Actions/CopyJobActions";
|
import { openCopyJobDetailsPanel } from "../../Actions/CopyJobActions";
|
||||||
import { CopyJobType, HandleJobActionClickType } from "../../Types/CopyJobTypes";
|
import { CopyJobType, HandleJobActionClickType } from "../../Types/CopyJobTypes";
|
||||||
import { getColumns } from "./CopyJobColumns";
|
import { getColumns } from "./CopyJobColumns";
|
||||||
@@ -26,13 +28,15 @@ interface CopyJobsListProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const styles = {
|
const styles = {
|
||||||
container: { height: "calc(100vh - 25em)" } as React.CSSProperties,
|
container: { height: "100%" } as React.CSSProperties,
|
||||||
stackItem: { position: "relative", marginBottom: "20px" } as React.CSSProperties,
|
stackItem: { position: "relative", marginBottom: "20px" } as React.CSSProperties,
|
||||||
};
|
};
|
||||||
|
|
||||||
const PAGE_SIZE = 10;
|
const PAGE_SIZE = 10;
|
||||||
|
|
||||||
const CopyJobsList: React.FC<CopyJobsListProps> = ({ jobs, handleActionClick, pageSize = PAGE_SIZE }) => {
|
const CopyJobsList: React.FC<CopyJobsListProps> = ({ jobs, handleActionClick, pageSize = PAGE_SIZE }) => {
|
||||||
|
const isDarkMode = useThemeStore((state) => state.isDarkMode);
|
||||||
|
const themeTokens = getThemeTokens(isDarkMode);
|
||||||
const [startIndex, setStartIndex] = React.useState(0);
|
const [startIndex, setStartIndex] = React.useState(0);
|
||||||
const [sortedJobs, setSortedJobs] = React.useState<CopyJobType[]>(jobs);
|
const [sortedJobs, setSortedJobs] = React.useState<CopyJobType[]>(jobs);
|
||||||
const [sortedColumnKey, setSortedColumnKey] = React.useState<string | undefined>(undefined);
|
const [sortedColumnKey, setSortedColumnKey] = React.useState<string | undefined>(undefined);
|
||||||
@@ -87,11 +91,28 @@ const CopyJobsList: React.FC<CopyJobsListProps> = ({ jobs, handleActionClick, pa
|
|||||||
enableShimmer={false}
|
enableShimmer={false}
|
||||||
constrainMode={ConstrainMode.unconstrained}
|
constrainMode={ConstrainMode.unconstrained}
|
||||||
layoutMode={DetailsListLayoutMode.justified}
|
layoutMode={DetailsListLayoutMode.justified}
|
||||||
onRenderDetailsHeader={(props, defaultRender) => (
|
onRenderDetailsHeader={(props, defaultRender) => {
|
||||||
<Sticky stickyPosition={StickyPositionType.Header} isScrollSynced>
|
const bgColor = themeTokens.colorNeutralBackground3;
|
||||||
{defaultRender({ ...props })}
|
const textColor = themeTokens.colorNeutralForeground1;
|
||||||
</Sticky>
|
return (
|
||||||
)}
|
<Sticky stickyPosition={StickyPositionType.Header} isScrollSynced stickyBackgroundColor={bgColor}>
|
||||||
|
<div style={{ backgroundColor: bgColor }}>
|
||||||
|
{defaultRender({
|
||||||
|
...props,
|
||||||
|
styles: {
|
||||||
|
root: {
|
||||||
|
backgroundColor: bgColor,
|
||||||
|
selectors: {
|
||||||
|
".ms-DetailsHeader-cellTitle": { color: textColor },
|
||||||
|
".ms-DetailsHeader-cellName": { color: textColor },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</Sticky>
|
||||||
|
);
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</ScrollablePane>
|
</ScrollablePane>
|
||||||
</Stack.Item>
|
</Stack.Item>
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ exports[`CopyJobStatusWithIcon Spinner Status Types renders InProgress with spin
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Running
|
Running
|
||||||
</span>
|
</span>
|
||||||
@@ -33,7 +33,7 @@ exports[`CopyJobStatusWithIcon Spinner Status Types renders Partitioning with sp
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Running
|
Running
|
||||||
</span>
|
</span>
|
||||||
@@ -53,7 +53,7 @@ exports[`CopyJobStatusWithIcon Spinner Status Types renders Running with spinner
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Running
|
Running
|
||||||
</span>
|
</span>
|
||||||
@@ -66,7 +66,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
aria-label="Cancelled"
|
aria-label="Cancelled"
|
||||||
class="ms-Icon root-105 css-118 mocked-style-Cancelled"
|
class="ms-Icon root-105 css-118 mocked-styles"
|
||||||
data-icon-name="StatusErrorFull"
|
data-icon-name="StatusErrorFull"
|
||||||
role="img"
|
role="img"
|
||||||
style="font-family: "FabricMDL2Icons-4";"
|
style="font-family: "FabricMDL2Icons-4";"
|
||||||
@@ -74,7 +74,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
|
|
||||||
</i>
|
</i>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Cancelled
|
Cancelled
|
||||||
</span>
|
</span>
|
||||||
@@ -87,7 +87,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
aria-label="Completed"
|
aria-label="Completed"
|
||||||
class="ms-Icon root-105 css-120 mocked-style-Completed"
|
class="ms-Icon root-105 css-120 mocked-styles"
|
||||||
data-icon-name="CompletedSolid"
|
data-icon-name="CompletedSolid"
|
||||||
role="img"
|
role="img"
|
||||||
style="font-family: "FabricMDL2Icons-5";"
|
style="font-family: "FabricMDL2Icons-5";"
|
||||||
@@ -95,7 +95,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
|
|
||||||
</i>
|
</i>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Completed
|
Completed
|
||||||
</span>
|
</span>
|
||||||
@@ -108,7 +108,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
aria-label="Failed"
|
aria-label="Failed"
|
||||||
class="ms-Icon root-105 css-118 mocked-style-Failed"
|
class="ms-Icon root-105 css-118 mocked-styles"
|
||||||
data-icon-name="StatusErrorFull"
|
data-icon-name="StatusErrorFull"
|
||||||
role="img"
|
role="img"
|
||||||
style="font-family: "FabricMDL2Icons-4";"
|
style="font-family: "FabricMDL2Icons-4";"
|
||||||
@@ -116,7 +116,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
|
|
||||||
</i>
|
</i>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Failed
|
Failed
|
||||||
</span>
|
</span>
|
||||||
@@ -129,7 +129,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
aria-label="Faulted"
|
aria-label="Faulted"
|
||||||
class="ms-Icon root-105 css-118 mocked-style-Faulted"
|
class="ms-Icon root-105 css-118 mocked-styles"
|
||||||
data-icon-name="StatusErrorFull"
|
data-icon-name="StatusErrorFull"
|
||||||
role="img"
|
role="img"
|
||||||
style="font-family: "FabricMDL2Icons-4";"
|
style="font-family: "FabricMDL2Icons-4";"
|
||||||
@@ -137,7 +137,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
|
|
||||||
</i>
|
</i>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Failed
|
Failed
|
||||||
</span>
|
</span>
|
||||||
@@ -150,7 +150,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
aria-label="Paused"
|
aria-label="Paused"
|
||||||
class="ms-Icon root-105 css-114 mocked-style-Paused"
|
class="ms-Icon root-105 css-114 mocked-styles"
|
||||||
data-icon-name="CirclePause"
|
data-icon-name="CirclePause"
|
||||||
role="img"
|
role="img"
|
||||||
style="font-family: "FabricMDL2Icons-11";"
|
style="font-family: "FabricMDL2Icons-11";"
|
||||||
@@ -158,7 +158,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
|
|
||||||
</i>
|
</i>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Paused
|
Paused
|
||||||
</span>
|
</span>
|
||||||
@@ -171,7 +171,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
aria-label="Pending"
|
aria-label="Pending"
|
||||||
class="ms-Icon root-105 css-111 mocked-style-Pending"
|
class="ms-Icon root-105 css-111 mocked-styles"
|
||||||
data-icon-name="Clock"
|
data-icon-name="Clock"
|
||||||
role="img"
|
role="img"
|
||||||
style="font-family: "FabricMDL2Icons-2";"
|
style="font-family: "FabricMDL2Icons-2";"
|
||||||
@@ -179,7 +179,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
|
|
||||||
</i>
|
</i>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Queued
|
Queued
|
||||||
</span>
|
</span>
|
||||||
@@ -192,7 +192,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
>
|
>
|
||||||
<i
|
<i
|
||||||
aria-label="Skipped"
|
aria-label="Skipped"
|
||||||
class="ms-Icon root-105 css-116 mocked-style-Skipped"
|
class="ms-Icon root-105 css-116 mocked-styles"
|
||||||
data-icon-name="StatusCircleBlock2"
|
data-icon-name="StatusCircleBlock2"
|
||||||
role="img"
|
role="img"
|
||||||
style="font-family: "FabricMDL2Icons-9";"
|
style="font-family: "FabricMDL2Icons-9";"
|
||||||
@@ -200,7 +200,7 @@ exports[`CopyJobStatusWithIcon Static Icon Status Types - Snapshot Tests renders
|
|||||||
|
|
||||||
</i>
|
</i>
|
||||||
<span
|
<span
|
||||||
class="css-112"
|
class="themeText css-112"
|
||||||
>
|
>
|
||||||
Cancelled
|
Cancelled
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -1,6 +1,30 @@
|
|||||||
@import "../../../less/Common/Constants.less";
|
@import "../../../less/Common/Constants.less";
|
||||||
|
|
||||||
|
// Common theme-aware classes
|
||||||
|
.themeText {
|
||||||
|
color: var(--colorNeutralForeground1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.themeTextSecondary {
|
||||||
|
color: var(--colorNeutralForeground2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.themeLinkText {
|
||||||
|
color: var(--colorBrandForeground1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.themeBackground {
|
||||||
|
background-color: var(--colorNeutralBackground1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.themeBackgroundSecondary {
|
||||||
|
background-color: var(--colorNeutralBackground2);
|
||||||
|
}
|
||||||
|
|
||||||
#containerCopyWrapper {
|
#containerCopyWrapper {
|
||||||
|
background-color: var(--colorNeutralBackground1);
|
||||||
|
color: var(--colorNeutralForeground1);
|
||||||
|
|
||||||
.centerContent {
|
.centerContent {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -9,20 +33,30 @@
|
|||||||
.noCopyJobsMessage {
|
.noCopyJobsMessage {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
color: @FocusColor;
|
color: var(--colorNeutralForeground2);
|
||||||
}
|
}
|
||||||
button.createCopyJobButton {
|
button.createCopyJobButton {
|
||||||
color: @LinkColor;
|
color: var(--colorBrandForeground1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.createCopyJobScreensContainer {
|
.createCopyJobScreensContainer {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 1em 1.5em;
|
padding: 1em 1.5em;
|
||||||
|
background-color: var(--colorNeutralBackground1);
|
||||||
|
color: var(--colorNeutralForeground1);
|
||||||
|
|
||||||
.pointInTimeRestoreContainer, .onlineCopyContainer {
|
.pointInTimeRestoreContainer, .onlineCopyContainer {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.toggle-label {
|
||||||
|
color: var(--colorNeutralForeground1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordionHeaderText {
|
||||||
|
color: var(--colorNeutralForeground1);
|
||||||
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -71,7 +105,7 @@
|
|||||||
}
|
}
|
||||||
.foreground {
|
.foreground {
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
background-color: #f9f9f9;
|
background-color: var(--colorNeutralBackground2);
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
||||||
transform: translate(0%, -9%);
|
transform: translate(0%, -9%);
|
||||||
@@ -83,11 +117,12 @@
|
|||||||
.create-container-link-btn {
|
.create-container-link-btn {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
color: @LinkColor;
|
color: var(--colorBrandForeground1);
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Create collection panel */
|
/* Create collection panel */
|
||||||
@@ -105,7 +140,6 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
||||||
.ms-DetailsList {
|
.ms-DetailsList {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
@@ -114,33 +148,33 @@
|
|||||||
padding: @DefaultSpace 20px;
|
padding: @DefaultSpace 20px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-size: @DefaultFontSize;
|
font-size: @DefaultFontSize;
|
||||||
color: @BaseHigh;
|
color: var(--colorNeutralForeground1);
|
||||||
background-color: @BaseLow;
|
background-color: var(--colorNeutralBackground2);
|
||||||
border-bottom: @ButtonBorderWidth solid @BaseMedium;
|
border-bottom: @ButtonBorderWidth solid var(--colorNeutralStroke1);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: @BaseMediumLow;
|
background-color: var(--colorNeutralBackground3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ms-DetailsRow {
|
.ms-DetailsRow {
|
||||||
border-bottom: @ButtonBorderWidth solid @BaseMedium;
|
border-bottom: @ButtonBorderWidth solid var(--colorNeutralStroke1);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: @BaseMediumLow;
|
background-color: var(--colorNeutralBackground2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ms-DetailsRow-cell {
|
.ms-DetailsRow-cell {
|
||||||
padding: @MediumSpace 20px;
|
padding: @MediumSpace 20px;
|
||||||
font-size: @DefaultFontSize;
|
font-size: @DefaultFontSize;
|
||||||
color: @BaseHigh;
|
color: var(--colorNeutralForeground1);
|
||||||
min-height: 48px;
|
min-height: 48px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
.jobNameLink {
|
.jobNameLink {
|
||||||
color: @LinkColor;
|
color: var(--colorBrandForeground1);
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@@ -168,7 +202,7 @@
|
|||||||
}
|
}
|
||||||
.ms-DetailsRow-cell {
|
.ms-DetailsRow-cell {
|
||||||
font-size: @DefaultFontSize;
|
font-size: @DefaultFontSize;
|
||||||
color: @BaseHigh;
|
color: var(--colorNeutralForeground1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -103,7 +103,10 @@ export const ThroughputBucketsComponent: FC<ThroughputBucketsComponentProps> = (
|
|||||||
offText="Inactive"
|
offText="Inactive"
|
||||||
checked={bucket.maxThroughputPercentage !== 100}
|
checked={bucket.maxThroughputPercentage !== 100}
|
||||||
onChange={(event, checked) => onToggle(bucket.id, checked)}
|
onChange={(event, checked) => onToggle(bucket.id, checked)}
|
||||||
styles={{ root: { marginBottom: 0 }, text: { fontSize: 12 } }}
|
styles={{
|
||||||
|
root: { marginBottom: 0 },
|
||||||
|
text: { fontSize: 12, color: "var(--colorNeutralForeground1)" },
|
||||||
|
}}
|
||||||
></Toggle>
|
></Toggle>
|
||||||
</Stack>
|
</Stack>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ type VectorEmbeddingPolicyProperty = "dataType" | "distanceFunction" | "indexTyp
|
|||||||
const labelStyles = {
|
const labelStyles = {
|
||||||
root: {
|
root: {
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
|
color: "var(--colorNeutralForeground1)",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -63,6 +64,8 @@ const textFieldStyles: IStyleFunctionOrObject<ITextFieldStyleProps, ITextFieldSt
|
|||||||
field: {
|
field: {
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
padding: "0 8px",
|
padding: "0 8px",
|
||||||
|
backgroundColor: "var(--colorNeutralBackground1)",
|
||||||
|
color: "var(--colorNeutralForeground1)",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -853,7 +853,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
|
|
||||||
{!isSynapseLinkEnabled() && (
|
{!isSynapseLinkEnabled() && (
|
||||||
<Stack className="panelGroupSpacing">
|
<Stack className="panelGroupSpacing">
|
||||||
<Text variant="small">
|
<Text variant="small" style={{ color: "var(--colorNeutralForeground1)" }}>
|
||||||
Azure Synapse Link is required for creating an analytical store{" "}
|
Azure Synapse Link is required for creating an analytical store{" "}
|
||||||
{getCollectionName().toLocaleLowerCase()}. Enable Synapse Link for this Cosmos DB account. <br />
|
{getCollectionName().toLocaleLowerCase()}. Enable Synapse Link for this Cosmos DB account. <br />
|
||||||
<Link
|
<Link
|
||||||
|
|||||||
@@ -475,6 +475,11 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
className="panelGroupSpacing"
|
className="panelGroupSpacing"
|
||||||
>
|
>
|
||||||
<Text
|
<Text
|
||||||
|
style={
|
||||||
|
{
|
||||||
|
"color": "var(--colorNeutralForeground1)",
|
||||||
|
}
|
||||||
|
}
|
||||||
variant="small"
|
variant="small"
|
||||||
>
|
>
|
||||||
Azure Synapse Link is required for creating an analytical store
|
Azure Synapse Link is required for creating an analytical store
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import React from "react";
|
|||||||
import LoadingIndicator_3Squares from "../../../images/LoadingIndicator_3Squares.gif";
|
import LoadingIndicator_3Squares from "../../../images/LoadingIndicator_3Squares.gif";
|
||||||
|
|
||||||
export const PanelLoadingScreen: React.FunctionComponent = () => (
|
export const PanelLoadingScreen: React.FunctionComponent = () => (
|
||||||
<div id="loadingScreen" className="dataExplorerLoaderContainer dataExplorerPaneLoaderContainer">
|
<div id="loadingScreen" className="dataExplorerLoaderContainer dataExplorerLoaderforcopyJobs">
|
||||||
<img className="dataExplorerLoader" src={LoadingIndicator_3Squares} />
|
<img className="dataExplorerLoader" src={LoadingIndicator_3Squares} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -438,7 +438,6 @@ body.isDarkMode {
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
&:not(.ms-Button):not(.ms-IconButton) {
|
&:not(.ms-Button):not(.ms-IconButton) {
|
||||||
background-color: var(--colorNeutralBackground1);
|
|
||||||
color: var(--colorNeutralForeground1);
|
color: var(--colorNeutralForeground1);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|||||||
Reference in New Issue
Block a user