blob: fcd07c7067d3744fec7b4c388ef26bc590a5a70a [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import {createSelector} from "@ngrx/store";
import {statementsStateSelector} from "./statements.selectors";
export const newStatementStateSelector = createSelector(
statementsStateSelector,
(state) => state?.new
);
export const newStatementFormSelector = createSelector(
newStatementStateSelector,
(state) => ({...state?.form})
);
export const newStatementLoadingSelector = createSelector(
newStatementStateSelector,
(state) => state?.isLoading
);
export const newStatementErrorSelector = createSelector(
newStatementStateSelector,
(state) => state?.error
);