Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dark theme to experiment pane #10380

Merged
merged 20 commits into from Nov 15, 2023

Conversation

daniellok-db
Copy link
Collaborator

@daniellok-db daniellok-db commented Nov 14, 2023

🛠 DevTools 🛠

Open in GitHub Codespaces

Install mlflow from this PR

pip install git+https://github.com/mlflow/mlflow.git@refs/pull/10380/merge

Checkout with GitHub CLI

gh pr checkout 10380

Related Issues/PRs

What changes are proposed in this pull request?

The previous PR was getting quite large as there's a number of things to fix, so I'm going to be breaking it up into smaller PRs. This one just addresses the experiment sidebar:

I also updated the tests to move away from enzyme.

How is this PR tested?

  • Existing unit/integration tests
  • New unit/integration tests
  • Manual tests
Screenshot 2023-11-14 at 12 43 39 PM

Does this PR require documentation update?

  • No. You can skip the rest of this section.
  • Yes. I've updated:
    • Examples
    • API references
    • Instructions

Release Notes

Is this a user-facing change?

  • No. You can skip the rest of this section.
  • Yes. Give a description of this change to be included in the release notes for MLflow users.

What component(s), interfaces, languages, and integrations does this PR affect?

Components

  • area/artifacts: Artifact stores and artifact logging
  • area/build: Build and test infrastructure for MLflow
  • area/docs: MLflow documentation pages
  • area/examples: Example code
  • area/gateway: AI Gateway service, Gateway client APIs, third-party Gateway integrations
  • area/model-registry: Model Registry service, APIs, and the fluent client calls for Model Registry
  • area/models: MLmodel format, model serialization/deserialization, flavors
  • area/recipes: Recipes, Recipe APIs, Recipe configs, Recipe Templates
  • area/projects: MLproject format, project running backends
  • area/scoring: MLflow Model server, model deployment tools, Spark UDFs
  • area/server-infra: MLflow Tracking server backend
  • area/tracking: Tracking Service, tracking client APIs, autologging

Interface

  • area/uiux: Front-end, user experience, plotting, JavaScript, JavaScript dev server
  • area/docker: Docker use across MLflow's components, such as MLflow Projects and MLflow Models
  • area/sqlalchemy: Use of SQLAlchemy in the Tracking Service or Model Registry
  • area/windows: Windows support

Language

  • language/r: R APIs and clients
  • language/java: Java APIs and clients
  • language/new: Proposals for new client languages

Integrations

  • integrations/azure: Azure and Azure ML integrations
  • integrations/sagemaker: SageMaker integrations
  • integrations/databricks: Databricks integrations

How should the PR be classified in the release notes? Choose one:

  • rn/none - No description will be included. The PR will be mentioned only by the PR number in the "Small Bugfixes and Documentation Updates" section
  • rn/breaking-change - The PR will be mentioned in the "Breaking Changes" section
  • rn/feature - A new user-facing feature worth mentioning in the release notes
  • rn/bug-fix - A user-facing bug fix worth mentioning in the release notes
  • rn/documentation - A user-facing documentation change worth mentioning in the release notes

Haxatron and others added 4 commits November 14, 2023 08:26
…10372)

Signed-off-by: Ben Wilson <benjamin.wilson@databricks.com>
Signed-off-by: B-Step62 <yuki.watanabe@databricks.com>
Signed-off-by: Yuki Watanabe <31463517+B-Step62@users.noreply.github.com>
Co-authored-by: Ben Wilson <39283302+BenWilson2@users.noreply.github.com>
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
Copy link

github-actions bot commented Nov 14, 2023

Documentation preview for db2bcbb will be available here when this CircleCI job completes successfully.

More info

@github-actions github-actions bot added area/uiux Front-end, user experience, plotting, JavaScript, JavaScript dev server rn/none List under Small Changes in Changelogs. labels Nov 14, 2023
daniellok-db and others added 5 commits November 14, 2023 12:47
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
…ance type validation (mlflow#10379)

Signed-off-by: Ben Wilson <benjamin.wilson@databricks.com>
Signed-off-by: Ben Wilson <39283302+BenWilson2@users.noreply.github.com>
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
Copy link
Collaborator

@hubertzub-db hubertzub-db left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

left few nits, looks well otherwise!

@@ -174,7 +174,7 @@ export class ExperimentListView extends Component<Props, State> {
return (
<div
css={isActive ? this.activeExperimentListItem : this.inactiveExperimentListItem}
data-test-id={dataTestId}
data-testid={dataTestId}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks 🙏

@@ -392,6 +391,11 @@ const classNames = {
justifySelf: 'end',
marginRight: '10px',
},
icon: (theme: Theme) => ({
color: theme.colors.actionDefaultTextDefault,
fontSize: 24,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(should evaluate to 24 as well)

Suggested change
fontSize: 24,
fontSize: theme.general.iconSize,

@@ -63,8 +64,8 @@ class HomeView extends Component<HomeViewProps> {
);
}
return (
<div css={{ display: 'flex', height: 'calc(100% - 60px)' }}>
<div css={{ height: '100%', paddingTop: 24, display: 'flex' }}>
<div css={styles.homeContainer}>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We've eventually stopped using automatic (theme) => styleObject function pattern for emotion because jest runtime hates it badly and produces super noisy logs. Whenever possible, please just get theme object e.g. from hook and use

Suggested change
<div css={styles.homeContainer}>
<div css={styles.homeContainer(theme)}>

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah and for class components, you can use HoC

);
expect(wrapper.length).toBe(1);
expect(screen.getByAltText('No experiments found.')).not.toBeNull();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
expect(screen.getByAltText('No experiments found.')).not.toBeNull();
expect(screen.getByAltText('No experiments found.')).toBeInTheDocument();

chenmoneygithub and others added 3 commits November 13, 2023 22:05
Signed-off-by: chenmoneygithub <chen.qian@databricks.com>
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
@@ -230,19 +228,21 @@ export class ExperimentListView extends Component<Props, State> {

render() {
const { hidden } = this.state;
const { activeExperimentIds, designSystemThemeApi } = this.props;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hubertzub-db is this the right way to use HoC (what does it stand for btw)?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, it works! thanks! HoC means Higher-order-Component which is an old (pre-hook) technique for wrapping components in other (higher-order) ones to inject features within

BenWilson2 and others added 8 commits November 14, 2023 11:00
…mlflow#10362)

Signed-off-by: Ben Wilson <benjamin.wilson@databricks.com>
Signed-off-by: Serena Ruan <serena.rxy@gmail.com>
Signed-off-by: Liang Zhang <liang.zhang@databricks.com>
)

Signed-off-by: chenmoneygithub <chen.qian@databricks.com>
Signed-off-by: Chen Qian <chenmoney@google.com>
Co-authored-by: Harutaka Kawamura <hkawamura0130@gmail.com>
Signed-off-by: Prithvi Kannan <prithvi.kannan@databricks.com>
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
…10394)

Signed-off-by: chenmoneygithub <chen.qian@databricks.com>
@daniellok-db daniellok-db merged commit 1c33add into mlflow:dark-mode Nov 15, 2023
4 of 23 checks passed
daniellok-db added a commit that referenced this pull request Nov 15, 2023
daniellok-db added a commit that referenced this pull request Nov 15, 2023
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
daniellok-db added a commit that referenced this pull request Nov 15, 2023
Signed-off-by: Ben Wilson <benjamin.wilson@databricks.com>
Signed-off-by: B-Step62 <yuki.watanabe@databricks.com>
Signed-off-by: Yuki Watanabe <31463517+B-Step62@users.noreply.github.com>
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
Signed-off-by: Ben Wilson <39283302+BenWilson2@users.noreply.github.com>
Signed-off-by: chenmoneygithub <chen.qian@databricks.com>
Signed-off-by: Serena Ruan <serena.rxy@gmail.com>
Signed-off-by: Liang Zhang <liang.zhang@databricks.com>
Signed-off-by: Chen Qian <chenmoney@google.com>
Signed-off-by: Prithvi Kannan <prithvi.kannan@databricks.com>
Co-authored-by: Haxatron <haxatron1@gmail.com>
Co-authored-by: Ben Wilson <39283302+BenWilson2@users.noreply.github.com>
Co-authored-by: Yuki Watanabe <31463517+B-Step62@users.noreply.github.com>
Co-authored-by: Chen Qian <chenmoney@google.com>
Co-authored-by: Serena Ruan <82044803+serena-ruan@users.noreply.github.com>
Co-authored-by: Liang Zhang <liang.zhang@databricks.com>
Co-authored-by: Harutaka Kawamura <hkawamura0130@gmail.com>
Co-authored-by: Prithvi Kannan <46332835+prithvikannan@users.noreply.github.com>
daniellok-db added a commit that referenced this pull request Nov 15, 2023
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
daniellok-db added a commit that referenced this pull request Nov 15, 2023
Signed-off-by: Daniel Lok <daniel.lok@databricks.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/uiux Front-end, user experience, plotting, JavaScript, JavaScript dev server rn/none List under Small Changes in Changelogs.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

9 participants