~cytrogen/masto-fe

ref: 20a89f1c8eefa0f766a4650be4d2e5f1fa92ee71 masto-fe/app/javascript/flavours/glitch/actions/reports.js -rw-r--r-- 1.1 KiB
20a89f1c — Cytrogen [feature] Bookmark folders UI 8 days ago
                                                                                
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
38
39
40
41
42
43
44
45
46
import api from "../api";

import { openModal } from "./modal";

export const REPORT_SUBMIT_REQUEST = "REPORT_SUBMIT_REQUEST";
export const REPORT_SUBMIT_SUCCESS = "REPORT_SUBMIT_SUCCESS";
export const REPORT_SUBMIT_FAIL    = "REPORT_SUBMIT_FAIL";

export const initReport = (account, status) => dispatch =>
  dispatch(openModal({
    modalType: "REPORT",
    modalProps: {
      accountId: account.get("id"),
      statusId: status?.get("id"),
    },
  }));

export const submitReport = (params, onSuccess, onFail) => (dispatch, getState) => {
  dispatch(submitReportRequest());

  api(getState).post("/api/v1/reports", params).then(response => {
    dispatch(submitReportSuccess(response.data));
    if (onSuccess) {
      onSuccess();
    }
  }).catch(error => {
    dispatch(submitReportFail(error));
    if (onFail) {
      onFail();
    }
  });
};

export const submitReportRequest = () => ({
  type: REPORT_SUBMIT_REQUEST,
});

export const submitReportSuccess = report => ({
  type: REPORT_SUBMIT_SUCCESS,
  report,
});

export const submitReportFail = error => ({
  type: REPORT_SUBMIT_FAIL,
  error,
});