Skip to content
Snippets Groups Projects
Unverified Commit 14e742b8 authored by Alexander Lesnenko's avatar Alexander Lesnenko Committed by GitHub
Browse files

fix tables are not clickable in recents (#17995)

parent 2bd3d707
No related branches found
No related tags found
No related merge requests found
......@@ -94,13 +94,17 @@ function prepareModel(item) {
}
export function modelToUrl(item) {
const modelData = prepareModel(item);
switch (item.model) {
case "card":
return question(prepareModel(item));
return question(modelData);
case "dashboard":
return dashboard(prepareModel(item));
return dashboard(modelData);
case "pulse":
return pulse(item.model_id);
return pulse(modelData.id);
case "table":
return tableRowsQuery(modelData.db_id, modelData.id);
default:
return null;
}
......
......@@ -21,13 +21,23 @@ describe(`search > recently viewed`, () => {
cy.findByPlaceholderText("Search…").click();
cy.get(".LoadingSpinner").should("not.exist");
assertRecentlyViewedItem(0, "Orders in a dashboard", "Dashboard");
assertRecentlyViewedItem(1, "Orders", "Question");
assertRecentlyViewedItem(2, "People", "Table");
assertRecentlyViewedItem(
0,
"Orders in a dashboard",
"Dashboard",
"/dashboard/1-orders-in-a-dashboard",
);
assertRecentlyViewedItem(1, "Orders", "Question", "/question/1-orders");
assertRecentlyViewedItem(2, "People", "Table", "/question#?db=1&table=3");
});
});
const assertRecentlyViewedItem = (index, title, type) => {
const assertRecentlyViewedItem = (index, title, type, link) => {
cy.findAllByTestId("recently-viewed-item")
.eq(index)
.parent()
.should("have.attr", "href", link);
cy.findAllByTestId("recently-viewed-item-title")
.eq(index)
.should("have.text", title);
......
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