[build] upgrade eslint to 9.37.0 (#88)

Co-authored-by: tobi <tobi.smethurst@protonmail.com>
Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88
Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org>
Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
This commit is contained in:
Zoë Bijl
2025-10-12 13:42:02 +02:00
committed by tobi
parent 75d7a62693
commit 1ff70886a1
975 changed files with 22196 additions and 21964 deletions
@@ -1,4 +1,4 @@
import { Map as ImmutableMap } from 'immutable';
import { Map as ImmutableMap } from "immutable";
import {
ACCOUNT_NOTE_INIT_EDIT,
@@ -7,7 +7,7 @@ import {
ACCOUNT_NOTE_SUBMIT_REQUEST,
ACCOUNT_NOTE_SUBMIT_FAIL,
ACCOUNT_NOTE_SUBMIT_SUCCESS,
} from '../actions/account_notes';
} from "../actions/account_notes";
const initialState = ImmutableMap({
edit: ImmutableMap({
@@ -19,26 +19,26 @@ const initialState = ImmutableMap({
export default function account_notes(state = initialState, action) {
switch (action.type) {
case ACCOUNT_NOTE_INIT_EDIT:
return state.withMutations((state) => {
state.setIn(['edit', 'isSubmitting'], false);
state.setIn(['edit', 'account_id'], action.account.get('id'));
state.setIn(['edit', 'comment'], action.comment);
});
case ACCOUNT_NOTE_CHANGE_COMMENT:
return state.setIn(['edit', 'comment'], action.comment);
case ACCOUNT_NOTE_SUBMIT_REQUEST:
return state.setIn(['edit', 'isSubmitting'], true);
case ACCOUNT_NOTE_SUBMIT_FAIL:
return state.setIn(['edit', 'isSubmitting'], false);
case ACCOUNT_NOTE_SUBMIT_SUCCESS:
case ACCOUNT_NOTE_CANCEL:
return state.withMutations((state) => {
state.setIn(['edit', 'isSubmitting'], false);
state.setIn(['edit', 'account_id'], null);
state.setIn(['edit', 'comment'], null);
});
default:
return state;
case ACCOUNT_NOTE_INIT_EDIT:
return state.withMutations((state) => {
state.setIn(["edit", "isSubmitting"], false);
state.setIn(["edit", "account_id"], action.account.get("id"));
state.setIn(["edit", "comment"], action.comment);
});
case ACCOUNT_NOTE_CHANGE_COMMENT:
return state.setIn(["edit", "comment"], action.comment);
case ACCOUNT_NOTE_SUBMIT_REQUEST:
return state.setIn(["edit", "isSubmitting"], true);
case ACCOUNT_NOTE_SUBMIT_FAIL:
return state.setIn(["edit", "isSubmitting"], false);
case ACCOUNT_NOTE_SUBMIT_SUCCESS:
case ACCOUNT_NOTE_CANCEL:
return state.withMutations((state) => {
state.setIn(["edit", "isSubmitting"], false);
state.setIn(["edit", "account_id"], null);
state.setIn(["edit", "comment"], null);
});
default:
return state;
}
}