summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/editor/actions.js
blob: cc23a655235850db38d3466fd837ee733bd5be76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as types from './mutation_types';

/**
 * Action to update the current file editor info at the given `path` with the given `data`
 *
 * @param {} vuex
 * @param {{ path: String, data: any }} payload
 */
export const updateFileEditor = ({ commit }, payload) => {
  commit(types.UPDATE_FILE_EDITOR, payload);
};

export const removeFileEditor = ({ commit }, path) => {
  commit(types.REMOVE_FILE_EDITOR, path);
};

export const renameFileEditor = ({ commit }, payload) => {
  commit(types.RENAME_FILE_EDITOR, payload);
};