Skip to content

Commit

Permalink
fix: upgrade react-dom
Browse files Browse the repository at this point in the history
  • Loading branch information
jgespinosa10 committed Jul 2, 2024
1 parent 19d9867 commit 5af38fa
Show file tree
Hide file tree
Showing 36 changed files with 1,124 additions and 1,218 deletions.
10 changes: 6 additions & 4 deletions example-demos/oveViteDemo/src/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "./shimGlobal";
import React from "react";
import ReactDOM from "react-dom";
import { createRoot } from "react-dom/client";
import { Provider } from "react-redux";
import { Loading } from "@teselagen/ui";

Expand All @@ -10,14 +10,16 @@ import App from "./App";

import * as serviceWorker from "./serviceWorker";

ReactDOM.render(
const domNode = document.getElementById("root");
const root = createRoot(domNode);

root.render(
<React.StrictMode>
<Provider store={store}>
<Loading />
<App />
</Provider>
</React.StrictMode>,
document.getElementById("root")
</React.StrictMode>
);

// If you want your app to work offline and load faster, you can change
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import React from "react";
import ReactDOM from "react-dom";
import { createRoot } from "react-dom/client";
import { Provider } from "react-redux";
import store from "./store";
import "./index.css";
import App from "./App";

ReactDOM.render(
const domNode = document.getElementById("root");
const root = createRoot(domNode);

root.render(
<React.StrictMode>
<Provider store={store}>
<App />
</Provider>
</React.StrictMode>,
document.getElementById("root")
</React.StrictMode>
);
2 changes: 0 additions & 2 deletions helperUtils/renderDemo.js

This file was deleted.

3 changes: 3 additions & 0 deletions helperUtils/renderDemo.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { createRoot } from "react-dom/client";
const root = createRoot(document.querySelector("#demo"));
export default Demo => root.render(<Demo />);
20 changes: 4 additions & 16 deletions packages/ui/cypress/e2e/EditableCellTable.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ describe("EditableCellTable.spec", () => {
cy.get(".cellDragHandle");
cy.get(`[data-test="tgCell_name"]:first`).dblclick();
cy.get(".cellDragHandle").should("not.exist");
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(0);
cy.focused().type("_zonk{enter}");
cy.get(
`[data-tip="Must include the letter 'a'"] [data-test="tgCell_name"]:first`
Expand All @@ -39,8 +37,6 @@ describe("EditableCellTable.spec", () => {
});
it(`typing a letter should start edit`, () => {
cy.visit("#/DataTable%20-%20EditableCellTable");
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(0);
cy.get(`[data-test="tgCell_name"]:first`).type("zonk{enter}");
cy.get(`[data-test="tgCell_name"]:first`).should("contain", "zonk");
});
Expand Down Expand Up @@ -126,8 +122,6 @@ describe("EditableCellTable.spec", () => {
`[data-tip="Must be a number"] [data-test="tgCell_howMany"]:first`
).should("contain", "NaN"); //should lowercase "Tom"
cy.get(`[data-test="tgCell_howMany"]:first`).dblclick();
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(0);
cy.focused().type("11{enter}");
cy.get(`[data-test="tgCell_howMany"]:first`).should("contain", "12"); //should have 12 post format
cy.get(
Expand Down Expand Up @@ -166,10 +160,10 @@ describe("EditableCellTable.spec", () => {
// cy.get(
// `.rt-td.isSelectedCell.isPrimarySelected [data-test="tgCell_name"]`
// ).should("not.exist");
// cy.get(`[data-test="tgCell_name"]`).eq(3).click({ force: true });
// cy.get(`[data-test="tgCell_name"]`).eq(3).click();
// cy.get(`.rt-td.isSelectedCell.isPrimarySelected [data-test="tgCell_name"]`);
// cy.focused().type(`{enter}`)
// cy.focused().type(`haha{enter}`)
// cy.focused().type(`{enter}`);
// cy.focused().type(`haha{enter}`);
// cy.get(
// `.rt-td.isSelectedCell.isPrimarySelected [data-test="tgCell_name"]`
// ).should("not.exist");
Expand Down Expand Up @@ -231,9 +225,7 @@ describe("EditableCellTable.spec", () => {
cy.get(
`[data-index="1"] .rt-td.isSelectedCell.isPrimarySelected [data-test="tgCell_type"]`
);
cy.get(`[data-index="49"] [data-test="tgCell_isProtein"]`).click({
force: true
});
cy.get(`[data-index="49"] [data-test="tgCell_isProtein"]`).click();
cy.get(
`[data-index="49"] .rt-td.isSelectedCell.isPrimarySelected [data-test="tgCell_isProtein"]`
);
Expand All @@ -253,12 +245,8 @@ describe("EditableCellTable.spec", () => {
const redoCmd = IS_LINUX ? `{alt}{shift}z` : "{meta}{shift}z";
cy.visit("#/DataTable%20-%20EditableCellTable");
cy.get(`.rt-td:contains(tom88)`).dblclick();
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(0);
cy.focused().type("{selectall}tasty55{enter}");
cy.get(`.rt-td:contains(tasty55)`).dblclick();
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(0);
cy.focused().type("{selectall}delishhh{enter}");
cy.get(`.rt-td:contains(delishhh)`);
cy.focused().type(undoCmd);
Expand Down
70 changes: 19 additions & 51 deletions packages/ui/cypress/e2e/UploadCsvWizard.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,17 +147,6 @@ describe("UploadCsvWizard.spec", () => {
});
it(`messed up headers should trigger the wizard. editing the added file should work`, () => {
cy.visit("#/UploadCsvWizard");
// cy.contains("Build CSV File").click();
// cy.get(`.rt-td [data-test="tgCell_description"]`)
// .eq(1)
// .click({ force: true });
// cy.focused().type("description{enter}");

// cy.get(
// `.hasCellError[data-tip="Please enter a value here"] [data-test="tgCell_name"]:first`
// ).dblclick({ force: true });
// cy.focused().type("a{enter}");
// cy.contains(`.bp3-dialog button`, "Cancel").click();
cy.uploadFile(
".tg-dropzone",
"testUploadWizard_messedUpHeaders.csv",
Expand All @@ -177,27 +166,29 @@ describe("UploadCsvWizard.spec", () => {
);

cy.get(`.tg-test-is-regex`).click();
cy.contains(".tg-select-option", "typo").click({ force: true });
cy.contains(".tg-select-option", "typo").click();
cy.contains(".bp3-dialog", `zonk`).should("exist"); //the data from the file should be previewed

cy.contains("Review and Edit Data").click();

cy.get(
`.hasCellError[data-tip="Please enter a value here"] [data-test="tgCell_name"]:first`
).dblclick({ force: true });
cy.focused().type("a{enter}");
)
.parent()
.type("a{enter}");
cy.get(
`.hasCellError[data-tip="Please enter a value here"] [data-test="tgCell_sequence"]:first`
).dblclick({ force: true });
cy.focused().type("g{enter}");
)
.parent()
.type("g{enter}");
cy.dragBetween(`.cellDragHandle`, `.rt-tr-last-row`);
cy.contains("Add File").click();
cy.contains(`testUploadWizard_messedUpHeaders.csv`);
cy.contains(`Added Fixed Up File`);
cy.get(`.tg-upload-file-list-item-edit`).click();
cy.contains(`Edit your data here.`);
cy.get(
`[data-index="4"] [data-test="tgCell_sequence"]:contains(g)`
`[data-index="4"] [data-test="tgCell_sequence"]:contains(g):last`
).click();
cy.focused().type(`{backspace}`);
cy.get(`.bp3-disabled:contains(Edit Data)`);
Expand Down Expand Up @@ -646,13 +637,7 @@ a,,desc,,false,dna,misc_feature
cy.contains(".bp3-dialog", `DEscription`); //the matched headers should show up
cy.contains(".bp3-dialog", `Description`); //the expected headers should show up
cy.contains("Review and Edit Data").click();
cy.get(`[data-tip="Please enter a value here"]`);
cy.get(`.hasCellError:last [data-test="tgCell_name"]`);
cy.get(`button:contains(Next File).bp3-disabled`);
cy.get(`.hasCellError:last [data-test="tgCell_name"]`).click({
force: true
});
cy.focused().type("haha{enter}");
cy.get(`.hasCellError`).type("haha{enter}");
// cy.get(`.hasCellError:last [data-test="tgCell_name"]`).type("haha{enter}", {force: true});
cy.get(`button:contains(Next File):first`).click();
cy.get(
Expand All @@ -676,9 +661,7 @@ a,,desc,,false,dna,misc_feature
cy.get(
`.tg-upload-file-list-item:contains(testUploadWizard_invalidDataNonUnique.csv) .tg-upload-file-list-item-edit`
).click();
cy.get(`[data-index="0"] [data-test="tgCell_sequence"]`).click({
force: true
});
cy.get(`[data-index="0"] [data-test="tgCell_sequence"]:last`).click();
cy.focused().type(`tom{enter}`);
cy.get(`.bp3-button:contains(Edit Data)`).click();
cy.contains(`File Updated`);
Expand All @@ -687,9 +670,7 @@ a,,desc,,false,dna,misc_feature
cy.get(
`.tg-upload-file-list-item:contains(testUploadWizard_invalidData.csv) .tg-upload-file-list-item-edit`
).click();
cy.get(`[data-index="0"] [data-test="tgCell_sequence"]`).click({
force: true
});
cy.get(`[data-index="0"] [data-test="tgCell_sequence"]`).click();
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(200);
cy.focused().type(`robbin{enter}`, { delay: 100 });
Expand Down Expand Up @@ -1065,14 +1046,14 @@ thomas,,g,false,dna,misc_feature`,
cy.visit("#/UploadCsvWizard");
cy.tgToggle("allowMultipleFiles");
cy.contains("Build CSV File").click();
cy.get(`[data-test="tgCell_name"]:first`).click({ force: true });
cy.get(`.rt-tbody [role="gridcell"]:first`).click();
cy.focused().paste(`Thomas Wee agagag False dna misc_feature`);
cy.contains(".bp3-button", "Add File").click();
cy.contains("manual_data_entry.csv");
// eslint-disable-next-line cypress/no-unnecessary-waiting
cy.wait(200);
cy.contains("Build CSV File").click();
cy.get(`[data-test="tgCell_name"]:first`).click({ force: true });
cy.get(`.rt-tbody [role="gridcell"]:first`).click();
cy.focused().paste(`Thomas Wee agagag False dna misc_feature`);
cy.contains(".bp3-button", "Add File").click();
cy.contains("manual_data_entry(1).csv");
Expand All @@ -1081,13 +1062,11 @@ thomas,,g,false,dna,misc_feature`,
).click();
cy.contains(`Edit your data here.`);
cy.contains(`Add 10 Rows`).click();
cy.get(`[data-index="4"] [data-test="tgCell_sequence"]`).click({
force: true
});
cy.get(`[data-index="4"] [role="gridcell"]`).eq(2).click();
cy.focused().type(`{backspace}`);
cy.get(`.bp3-disabled:contains(Edit Data)`).should("not.exist");
cy.focused().type(`tom{enter}`);
cy.get(`[data-index="4"] [data-test="tgCell_name"]`).click({ force: true });
cy.get(`[data-index="4"] [role="gridcell"]:first`).click();
cy.focused().type(`taoh{enter}`);
cy.get(`.bp3-button:contains(Edit Data)`).click();
cy.contains(`File Updated`);
Expand All @@ -1096,9 +1075,7 @@ thomas,,g,false,dna,misc_feature`,
cy.get(
`.tg-upload-file-list-item:contains(manual_data_entry(1).csv) .tg-upload-file-list-item-edit`
).click();
cy.get(`[data-index="0"] [data-test="tgCell_sequence"]`).click({
force: true
});
cy.get(`[data-index="0"] [role="gridcell"]`).eq(2).click();
cy.focused().type(`tom{enter}`);
cy.get(`.bp3-button:contains(Edit Data)`).click();
cy.contains(`File Updated`);
Expand Down Expand Up @@ -1213,23 +1190,14 @@ thomas,,g,false,dna,misc_feature`,
cy.contains(
`Input your data here. Hover table headers for additional instructions`
);
cy.get(`.rt-td [data-test="tgCell_description"]`)
.eq(1)
.click({ force: true });
cy.focused().type("description{enter}");
cy.get(".rt-td").eq(1).type("description{enter}");

//there should be a checkbox in the isRegex boolean column
cy.get(`[data-test="Is Regex"] .bp3-checkbox`);

//should be able to edit and then drag to continue that edit further down
cy.get(
`.hasCellError[data-tip="Please enter a value here"] [data-test="tgCell_name"]:first`
).dblclick({ force: true });
cy.focused().type("a{enter}");
cy.get(
`.hasCellError[data-tip="Please enter a value here"] [data-test="tgCell_sequence"]:first`
).dblclick({ force: true });
cy.focused().type("g{enter}");
cy.get(".rt-td").eq(0).type("a{enter}");
cy.get(".rt-td").eq(2).type("g{enter}");

cy.contains(".bp3-button", "Add File").click();
cy.contains("File Added");
Expand Down
5 changes: 2 additions & 3 deletions packages/ui/cypress/e2e/dataTable.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ describe("dataTable.spec", () => {
cy.tgToggle("getRowClassName");
cy.get(".rt-tr-group.custom-getRowClassName").should("exist");
});
//TODO THIS IS BREAKING!
it.skip(`it can select entities across pages`, () => {
it(`it can select entities across pages`, () => {
cy.visit("#/DataTable");
cy.contains("0 Selected");
//select first entity
Expand Down Expand Up @@ -162,7 +161,7 @@ describe("dataTable.spec", () => {
checkIndices("greaterThan");
});

it.skip("page size will persist on reload", () => {
it("page size will persist on reload", () => {
cy.visit("#/DataTable");
cy.get(".data-table-container .paging-page-size").should("have.value", "5");
cy.get(".data-table-container .paging-page-size").select("50");
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/cypress/e2e/upload.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ describe("upload", () => {
true
);

cy.contains("type must be .json");
cy.contains("type must be .zip, .json");
cy.uploadBlobFiles(
".fileUploadLimitAndType.tg-dropzone",
[
Expand Down
4 changes: 1 addition & 3 deletions packages/ui/cypress/support/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ Cypress.Commands.add("dragBetween", (dragSelector, dropSelector) => {
getOrWrap(dragSelector)
.trigger("mousedown")
.trigger("mousemove", 10, 10, { force: true });
getOrWrap(dropSelector)
.trigger("mousemove", { force: true })
.trigger("mouseup", { force: true });
getOrWrap(dropSelector).trigger("mousemove").trigger("mouseup");
});

Cypress.Commands.add(
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/demo/src/examples/UploadCsvWizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { FileUploadField } from "../../../src";
import DemoWrapper from "../DemoWrapper";
import { reduxForm } from "redux-form";
import { useToggle } from "../useToggle";
import getIdOrCodeOrIndex from "../../../src/DataTable/utils/getIdOrCodeOrIndex";
import { getIdOrCodeOrIndex } from "../../../src/DataTable/utils";

const simpleValidateAgainst = {
fields: [{ path: "name" }, { path: "description" }, { path: "sequence" }]
Expand Down
4 changes: 0 additions & 4 deletions packages/ui/demo/src/examples/UploaderDemo.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ export default function UploaderDemo() {
const [autoUnzip, autoUnzipToggleComp] = useToggle({
type: "autoUnzip"
});
// const [advancedAccept, advancedAcceptToggleComp] = useToggle({
// type: "accept",
// label: "Toggle Advance Accept"
// });
return (
<div>
<OptionsSection>
Expand Down
5 changes: 3 additions & 2 deletions packages/ui/demo/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ import ScrollToTopDemo from "./examples/ScrollToTop";
import showAppSpinnerDemo from "./examples/showAppSpinnerDemo";
import EditableCellTable from "./examples/EditableCellTable";
import React from "react";
import { render } from "react-dom";
import { Provider } from "react-redux";
import store from "./store";
import { FocusStyleManager } from "@blueprintjs/core";
import AdvancedOptionsDemo from "./examples/AdvancedOptionsDemo";
import FormComponents from "./examples/FormComponents";
import UploadCsvWizard from "./examples/UploadCsvWizard";
import TagSelectDemo from "./examples/TagSelectDemo";
import { createRoot } from "react-dom/client";

FocusStyleManager.onlyShowFocusOnTabs();

Expand Down Expand Up @@ -261,4 +261,5 @@ const Demo = () => {
);
};

render(<Demo />, document.querySelector("#demo"));
const root = createRoot(document.querySelector("#demo"));
root.render(<Demo />);
Loading

0 comments on commit 5af38fa

Please sign in to comment.