diff --git a/frontend/src/metabase/containers/SaveQuestionModal.jsx b/frontend/src/metabase/containers/SaveQuestionModal.jsx index b5dbc97b728d1f54ba056d57a4847fcb6bfa4037..0d1eefceb143b97ed477ed2dcc59d6a5c9c1ab13 100644 --- a/frontend/src/metabase/containers/SaveQuestionModal.jsx +++ b/frontend/src/metabase/containers/SaveQuestionModal.jsx @@ -79,6 +79,7 @@ export default class SaveQuestionModal extends Component { this.props; const isStructured = Q_DEPRECATED.isStructured(card.dataset_query); + const isReadonly = originalCard != null && !originalCard.can_write; const initialValues = { name: @@ -87,7 +88,7 @@ export default class SaveQuestionModal extends Component { : "", description: card.description || "", collection_id: - card.collection_id === undefined + card.collection_id === undefined || isReadonly ? initialCollectionId : card.collection_id, saveType: diff --git a/frontend/src/metabase/entities/groups.js b/frontend/src/metabase/entities/groups.js index 0b73937f51ea345f40e6fbb480c678613e56b77a..dfbd576c0a0099ecc27dd2e24a971ac6a6d28333 100644 --- a/frontend/src/metabase/entities/groups.js +++ b/frontend/src/metabase/entities/groups.js @@ -13,8 +13,8 @@ const Groups = createEntity({ fields: [{ name: "name" }], }, - reducer: (state = {}, { type, payload }) => { - if (type === CREATE_MEMBERSHIP) { + reducer: (state = {}, { type, payload, error }) => { + if (type === CREATE_MEMBERSHIP && !error) { const { membership, group_id } = payload; const members = state[group_id]?.members; if (members) { @@ -25,7 +25,7 @@ const Groups = createEntity({ } } - if (type === DELETE_MEMBERSHIP) { + if (type === DELETE_MEMBERSHIP && !error) { const { membershipId, groupId } = payload; const members = state[groupId]?.members; if (members) { diff --git a/frontend/src/metabase/entities/persisted-models.js b/frontend/src/metabase/entities/persisted-models.js index 462aa5dc2caa8e96c88c0bd4fa1a6208b44d20b3..f2267f339c9786ac63b1a9acea3352a9bbcb938a 100644 --- a/frontend/src/metabase/entities/persisted-models.js +++ b/frontend/src/metabase/entities/persisted-models.js @@ -36,8 +36,8 @@ const PersistedModels = createEntity({ getByModelId: getPersistedModelInfoByModelId, }, - reducer: (state = {}, { type, payload }) => { - if (type === REFRESH_CACHE) { + reducer: (state = {}, { type, payload, error }) => { + if (type === REFRESH_CACHE && !error) { return { ...state, [payload.id]: { diff --git a/frontend/src/metabase/entities/schemas.js b/frontend/src/metabase/entities/schemas.js index 50fde6e7e06e43706afa19b6ec4e929758da223f..26319561196ee9d9a1924a7c16394557ac951ea5 100644 --- a/frontend/src/metabase/entities/schemas.js +++ b/frontend/src/metabase/entities/schemas.js @@ -50,8 +50,8 @@ export default createEntity({ }, }, - reducer: (state = {}, { type, payload }) => { - if (type === Questions.actionTypes.CREATE) { + reducer: (state = {}, { type, payload, error }) => { + if (type === Questions.actionTypes.CREATE && !error) { const { question, status, data } = payload; if (question) { const schema = getCollectionVirtualSchemaId(question.collection); @@ -71,7 +71,7 @@ export default createEntity({ } } - if (type === Questions.actionTypes.UPDATE) { + if (type === Questions.actionTypes.UPDATE && !error) { const { question } = payload; const schemaId = getCollectionVirtualSchemaId(question.collection); diff --git a/frontend/src/metabase/entities/tables.js b/frontend/src/metabase/entities/tables.js index 3bed285adc34ad265f8625566513d68281dbc3c6..faf04c129864c70bf4e58bc93e6cc50545b7bf9b 100644 --- a/frontend/src/metabase/entities/tables.js +++ b/frontend/src/metabase/entities/tables.js @@ -144,7 +144,7 @@ const Tables = createEntity({ }, reducer: (state = {}, { type, payload, error }) => { - if (type === Questions.actionTypes.CREATE) { + if (type === Questions.actionTypes.CREATE && !error) { const card = payload.question; const virtualQuestionTable = convertSavedQuestionToVirtualTable(card); @@ -158,7 +158,7 @@ const Tables = createEntity({ }; } - if (type === Questions.actionTypes.UPDATE) { + if (type === Questions.actionTypes.UPDATE && !error) { const card = payload.question; const virtualQuestionId = getQuestionVirtualTableId(card); @@ -202,7 +202,7 @@ const Tables = createEntity({ } } - if (type === Metrics.actionTypes.CREATE) { + if (type === Metrics.actionTypes.CREATE && !error) { const { table_id: tableId, id: metricId } = payload.metric; const table = state[tableId]; if (table) { @@ -213,7 +213,7 @@ const Tables = createEntity({ } } - if (type === Segments.actionTypes.UPDATE) { + if (type === Segments.actionTypes.UPDATE && !error) { const { table_id: tableId, archived, id: segmentId } = payload.segment; const table = state[tableId]; if (archived && table && table.segments) { diff --git a/frontend/src/metabase/entities/timelines.js b/frontend/src/metabase/entities/timelines.js index 6235e457eeffad2e804820b5a8a1183761efad4a..12c824722010308849ce95420617c386ff8c1c48 100644 --- a/frontend/src/metabase/entities/timelines.js +++ b/frontend/src/metabase/entities/timelines.js @@ -57,7 +57,7 @@ const Timelines = createEntity({ }, reducer: (state = {}, action) => { - if (action.type === TimelineEvents.actionTypes.CREATE) { + if (action.type === TimelineEvents.actionTypes.CREATE && !action.error) { const event = TimelineEvents.HACK_getObjectFromAction(action); return updateIn(state, [event.timeline_id, "events"], (eventIds = []) => { @@ -65,7 +65,7 @@ const Timelines = createEntity({ }); } - if (action.type === TimelineEvents.actionTypes.UPDATE) { + if (action.type === TimelineEvents.actionTypes.UPDATE && !action.error) { const event = TimelineEvents.HACK_getObjectFromAction(action); return _.mapObject(state, timeline => { @@ -84,7 +84,7 @@ const Timelines = createEntity({ }); } - if (action.type === TimelineEvents.actionTypes.DELETE) { + if (action.type === TimelineEvents.actionTypes.DELETE && !action.error) { const eventId = action.payload.result; return _.mapObject(state, timeline => { diff --git a/frontend/test/metabase/scenarios/permissions/reproductions/22727-readonly-collection-offered-on-save.cy.spec.js b/frontend/test/metabase/scenarios/permissions/reproductions/22727-readonly-collection-offered-on-save.cy.spec.js index 0b99cb5401aafd199661197f4161d872c7ced87b..9b08f905eaac72691f75c376696cd5507a186c73 100644 --- a/frontend/test/metabase/scenarios/permissions/reproductions/22727-readonly-collection-offered-on-save.cy.spec.js +++ b/frontend/test/metabase/scenarios/permissions/reproductions/22727-readonly-collection-offered-on-save.cy.spec.js @@ -3,7 +3,7 @@ import { USER_GROUPS } from "__support__/e2e/cypress_data"; const { ALL_USERS_GROUP } = USER_GROUPS; -describe.skip("issue 22727", () => { +describe("issue 22727", () => { beforeEach(() => { cy.intercept("POST", "/api/dataset").as("dataset");