summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/static_site_editor/store/actions.js
blob: 141148de1e05f7fcb1ea55edde350d835e076d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import createFlash from '~/flash';
import { __ } from '~/locale';

import * as mutationTypes from './mutation_types';
import loadSourceContent from '~/static_site_editor/services/load_source_content';

export const loadContent = ({ commit, state: { sourcePath, projectId } }) => {
  commit(mutationTypes.LOAD_CONTENT);

  return loadSourceContent({ sourcePath, projectId })
    .then(data => commit(mutationTypes.RECEIVE_CONTENT_SUCCESS, data))
    .catch(() => {
      commit(mutationTypes.RECEIVE_CONTENT_ERROR);
      createFlash(__('An error ocurred while loading your content. Please try again.'));
    });
};

export const setContent = ({ commit }, content) => {
  commit(mutationTypes.SET_CONTENT, content);
};

export default () => {};