Welcome to mirror list, hosted at ThFree Co, Russian Federation.

actions.js « store « static_site_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c57ef86f6efb6e0022ae4a45b1dc5ecf78a6f0ab (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
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);
      createFlash(error.message);
    });
};

export default () => {};