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

Remove route.resolve feature #4607

Merged
merged 3 commits into from
Mar 10, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 2 additions & 17 deletions client/app/components/ApplicationArea/Router.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isFunction, map, fromPairs, extend, startsWith, trimStart, trimEnd } from "lodash";
import { isFunction, startsWith, trimStart, trimEnd } from "lodash";
import React, { useState, useEffect, useRef } from "react";
import PropTypes from "prop-types";
import UniversalRouter from "universal-router";
Expand Down Expand Up @@ -30,18 +30,6 @@ export function stripBase(href) {
return false;
}

function resolveRouteDependencies(route) {
return Promise.all(
map(route.resolve, (value, key) => {
value = isFunction(value) ? value(route.routeParams, route, location) : value;
return Promise.resolve(value).then(result => [key, result]);
})
).then(results => {
route.routeParams = extend(route.routeParams, fromPairs(results));
return route;
});
}

export default function Router({ routes, onRouteChange }) {
const [currentRoute, setCurrentRoute] = useState(null);

Expand Down Expand Up @@ -86,10 +74,7 @@ export default function Router({ routes, onRouteChange }) {
router
.resolve({ pathname })
.then(route => {
return isAbandoned || currentPathRef.current !== pathname ? null : resolveRouteDependencies(route);
})
.then(route => {
if (route) {
if (!isAbandoned && currentPathRef.current === pathname) {
setCurrentRoute({ ...route, key: generateRouteKey() });
}
})
Expand Down
14 changes: 5 additions & 9 deletions client/app/pages/queries/QuerySource.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import QueryControlDropdown from "@/components/EditVisualizationButton/QueryCont
import QueryEditor from "@/components/queries/QueryEditor";
import TimeAgo from "@/components/TimeAgo";
import { durationHumanize, prettySize } from "@/lib/utils";
import { Query } from "@/services/query";
import recordEvent from "@/services/recordEvent";

import QueryPageHeader from "./components/QueryPageHeader";
Expand All @@ -21,6 +20,7 @@ import QueryVisualizationTabs from "./components/QueryVisualizationTabs";
import QueryExecutionStatus from "./components/QueryExecutionStatus";
import SchemaBrowser from "./components/SchemaBrowser";
import QuerySourceAlerts from "./components/QuerySourceAlerts";
import wrapQueryPage from "./components/wrapQueryPage";

import useQuery from "./hooks/useQuery";
import useVisualizationTabHandler from "./hooks/useVisualizationTabHandler";
Expand Down Expand Up @@ -443,21 +443,17 @@ QuerySource.propTypes = {
query: PropTypes.object.isRequired, // eslint-disable-line react/forbid-prop-types
};

const QuerySourcePage = wrapQueryPage(QuerySource);

export default [
routeWithUserSession({
path: "/queries/new",
render: pageProps => <QuerySource {...pageProps} />,
resolve: {
query: () => Query.newQuery(),
},
render: pageProps => <QuerySourcePage {...pageProps} />,
bodyClass: "fixed-layout",
}),
routeWithUserSession({
path: "/queries/:queryId([0-9]+)/source",
render: pageProps => <QuerySource {...pageProps} />,
resolve: {
query: ({ queryId }) => Query.get({ id: queryId }),
},
render: pageProps => <QuerySourcePage {...pageProps} />,
bodyClass: "fixed-layout",
}),
];
9 changes: 4 additions & 5 deletions client/app/pages/queries/QueryView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import TimeAgo from "@/components/TimeAgo";
import QueryControlDropdown from "@/components/EditVisualizationButton/QueryControlDropdown";
import EditVisualizationButton from "@/components/EditVisualizationButton";

import { Query } from "@/services/query";
import DataSource from "@/services/data-source";
import { pluralize, durationHumanize } from "@/lib/utils";

Expand All @@ -18,6 +17,7 @@ import QueryVisualizationTabs from "./components/QueryVisualizationTabs";
import QueryExecutionStatus from "./components/QueryExecutionStatus";
import QueryMetadata from "./components/QueryMetadata";
import QueryViewExecuteButton from "./components/QueryViewExecuteButton";
import wrapQueryPage from "./components/wrapQueryPage";

import useVisualizationTabHandler from "./hooks/useVisualizationTabHandler";
import useQueryExecute from "./hooks/useQueryExecute";
Expand Down Expand Up @@ -184,10 +184,9 @@ function QueryView(props) {

QueryView.propTypes = { query: PropTypes.object.isRequired }; // eslint-disable-line react/forbid-prop-types

const QueryViewPage = wrapQueryPage(QueryView);

export default routeWithUserSession({
path: "/queries/:queryId([0-9]+)",
render: pageProps => <QueryView {...pageProps} />,
resolve: {
query: ({ queryId }) => Query.get({ id: queryId }),
},
render: pageProps => <QueryViewPage {...pageProps} />,
});
44 changes: 44 additions & 0 deletions client/app/pages/queries/components/wrapQueryPage.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import React, { useState, useEffect, useRef } from "react";
import PropTypes from "prop-types";
import LoadingState from "@/components/items-list/components/LoadingState";
import { Query } from "@/services/query";

export default function wrapQueryPage(WrappedComponent) {
function QueryPageWrapper({ queryId, onError, ...props }) {
const [query, setQuery] = useState(null);
const onErrorRef = useRef();
onErrorRef.current = onError;
Copy link
Member

Choose a reason for hiding this comment

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

Why do we need to persist the onError callback?


useEffect(() => {
let isCancelled = false;
const promise = queryId ? Query.get({ id: queryId }) : Promise.resolve(Query.newQuery());
promise
.then(result => {
if (!isCancelled) {
setQuery(result);
}
})
.catch(error => onErrorRef.current(error));

return () => {
isCancelled = true;
};
}, [queryId]);

if (!query) {
return <LoadingState className="flex-fill" />;
}

return <WrappedComponent query={query} onError={onError} {...props} />;
}

QueryPageWrapper.propTypes = {
queryId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
};

QueryPageWrapper.defaultProps = {
queryId: null,
};

return QueryPageWrapper;
}