summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/static_site_editor/store/actions.js
blob: 9f5e9e8c5891ea839a09dbcf0c62a59bb16b7917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import createFlash from '~/flash';
import { __ } from '~/locale';

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

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 const submitChanges = ({ state: { projectId, content, sourcePath, username }, commit }) => {
  commit(mutationTypes.SUBMIT_CHANGES);

  return submitContentChanges({ content, projectId, sourcePath, username })
    .then(data => commit(mutationTypes.SUBMIT_CHANGES_SUCCESS, data))
    .catch(error => {
      commit(mutationTypes.SUBMIT_CHANGES_ERROR, error.message);
    });
};

export const dismissSubmitChangesError = ({ commit }) => {
  commit(mutationTypes.DISMISS_SUBMIT_CHANGES_ERROR);
};

export default () => {};