Skip to content
Snippets Groups Projects
Unverified Commit 70ca8746 authored by Dalton's avatar Dalton Committed by GitHub
Browse files

refetch card on qb/RELOAD_CARD action (#16571)

* refetch card on RELOAD_CARD action

* fetch via question entity to update cache

* unskip & fix cy test
parent efa657a4
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,6 @@ import {
getCard,
getQuestion,
getOriginalQuestion,
getOriginalCard,
getIsEditing,
getTransformedSeries,
getRawSeries,
......@@ -64,6 +63,7 @@ import { getCardAfterVisualizationClick } from "metabase/visualizations/lib/util
import { getPersistableDefaultSettingsForSeries } from "metabase/visualizations/lib/settings/visualization";
import Databases from "metabase/entities/databases";
import Questions from "metabase/entities/questions";
import Snippets from "metabase/entities/snippets";
import { getMetadata } from "metabase/selectors/metadata";
......@@ -721,19 +721,25 @@ export const setParameterValue = createAction(
},
);
// reloadCard
export const RELOAD_CARD = "metabase/qb/RELOAD_CARD";
export const reloadCard = createThunkAction(RELOAD_CARD, () => {
return async (dispatch, getState) => {
// clone
const card = Utils.copy(getOriginalCard(getState()));
const outdatedCard = getState().qb.card;
const action = await dispatch(
Questions.actions.fetch({ id: outdatedCard.id }, { reload: true }),
);
const card = Questions.HACK_getObjectFromAction(action);
dispatch(loadMetadataForCard(card));
// we do this to force the indication of the fact that the card should not be considered dirty when the url is updated
dispatch(
runQuestionQuery({ overrideWithCard: card, shouldUpdateUrl: false }),
runQuestionQuery({
overrideWithCard: card,
shouldUpdateUrl: false,
}),
);
// if the name of the card changed this will update the url slug
dispatch(updateUrl(card, { dirty: false }));
return card;
......
......@@ -297,7 +297,7 @@ describe("scenarios > question > native", () => {
});
});
it.skip("should correctly display a revision state after a restore (metabase#12581)", () => {
it("should correctly display a revision state after a restore (metabase#12581)", () => {
const ORIGINAL_QUERY = "SELECT * FROM ORDERS WHERE {{filter}} LIMIT 2";
// Start with the original version of the question made with API
......@@ -342,7 +342,7 @@ describe("scenarios > question > native", () => {
cy.findByText(/Open Editor/i).click();
cy.log("Reported failing on v0.35.3");
cy.findByText(ORIGINAL_QUERY);
cy.get(".ace_content").contains(ORIGINAL_QUERY);
// Filter dropdown field
cy.get("fieldset").contains("Filter");
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment