blob: 0d6c03c5665db790c6541dd39fcd75642a910a6d [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {combineReducers} from '@ngrx/store';
import {appSettings} from '@app/services/storage/app-settings.service';
import {appState} from '@app/services/storage/app-state.service';
import {auditLogs} from '@app/services/storage/audit-logs.service';
import {clusters} from '@app/services/storage/clusters.service';
import {components} from '@app/services/storage/components.service';
import {graphs} from '@app/services/storage/graphs.service';
import {hosts} from '@app/services/storage/hosts.service';
import {serviceLogs} from '@app/services/storage/service-logs.service';
import {serviceLogsHistogramData} from '@app/services/storage/service-logs-histogram-data.service';
import {serviceLogsTruncated} from '@app/services/storage/service-logs-truncated.service';
import {serviceLogsFields} from '@app/services/storage/service-logs-fields.service';
import {auditLogsFields} from '@app/services/storage/audit-logs-fields.service';
import {auditLogsGraphData} from '@app/services/storage/audit-logs-graph-data.service';
import {userConfigs} from '@app/services/storage/user-configs.service';
import {tabs} from '@app/services/storage/tabs.service';
import {clusterSelections} from '@app/services/storage/cluster-selection.service';
import {logsState} from '@app/services/storage/logs-state.service';
import {dataAvailabilityStates} from '@app/modules/app-load/stores/data-availability-state.store';
import * as auth from '@app/store/reducers/auth.reducers';
import * as filterHistory from '@app/store/reducers/filter-history.reducers';
import * as auditLogRepos from '@app/store/reducers/audit-log-repos.reducers';
import * as userSettings from '@app/store/reducers/user-settings.reducers';
import * as apiFeatures from '@app/store/reducers/api-features.reducers';
export const reducers = {
appSettings,
appState,
auditLogs,
auditLogsGraphData,
serviceLogs,
serviceLogsHistogramData,
serviceLogsTruncated,
graphs,
hosts,
userConfigs,
clusters,
components,
serviceLogsFields,
auditLogsFields,
tabs,
clusterSelections,
logsState,
dataAvailabilityStates,
auth: auth.reducer,
filterHistory: filterHistory.reducer,
auditLogRepos: auditLogRepos.reducer,
userSettings: userSettings.reducer,
apiFeatures: apiFeatures.reducer
};
export function reducer(state: any, action: any) {
return (combineReducers(reducers))(state, action);
}