37 lines
1,018 B
JavaScript
37 lines
1,018 B
JavaScript
import * as types from '../mutation_types';
|
|
|
|
export default {
|
|
[types.SET_CURRENT_BRANCH](state, currentBranchId) {
|
|
Object.assign(state, {
|
|
currentBranchId,
|
|
});
|
|
},
|
|
[types.SET_BRANCH](state, { projectPath, branchName, branch }) {
|
|
Object.assign(state.projects[projectPath], {
|
|
branches: {
|
|
[branchName]: {
|
|
...branch,
|
|
treeId: `${projectPath}/${branchName}`,
|
|
active: true,
|
|
workingReference: '',
|
|
},
|
|
},
|
|
});
|
|
},
|
|
[types.SET_BRANCH_WORKING_REFERENCE](state, { projectId, branchId, reference }) {
|
|
if (!state.projects[projectId].branches[branchId]) {
|
|
Object.assign(state.projects[projectId].branches, {
|
|
[branchId]: {},
|
|
});
|
|
}
|
|
|
|
Object.assign(state.projects[projectId].branches[branchId], {
|
|
workingReference: reference,
|
|
});
|
|
},
|
|
[types.SET_BRANCH_COMMIT](state, { projectId, branchId, commit }) {
|
|
Object.assign(state.projects[projectId].branches[branchId], {
|
|
commit,
|
|
});
|
|
},
|
|
};
|