123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /*
- * <<
- * Davinci
- * ==
- * Copyright (C) 2016 - 2017 EDP
- * ==
- * Licensed 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 { ActionTypes } from './constants'
- import { returnType } from 'utils/redux'
- import { IServerConfigurations } from 'app/containers/App/types'
- export const AppActions = {
- getExternalAuthProviders() {
- return {
- type: ActionTypes.GET_EXTERNAL_AUTH_PROVIDERS
- }
- },
-
- gotExternalAuthProviders(externalAuthProviders) {
- return {
- type: ActionTypes.GET_EXTERNAL_AUTH_PROVIDERS_SUCESS,
- payload: {
- externalAuthProviders
- }
- }
- },
- login(username, password, shareToken, resolve, reject?) {
- return {
- type: ActionTypes.LOGIN,
- payload: {
- username,
- password,
- shareToken,
- resolve,
- reject
- }
- }
- },
- logout() {
- return {
- type: ActionTypes.LOGOUT
- }
- },
- logged(user) {
- return {
- type: ActionTypes.LOGGED,
- payload: {
- user
- }
- }
- },
- loginFail(error) {
- return {
- type: ActionTypes.LOGON_FAILURE,
- payload: {
- error
- }
- }
- },
- interceptor(token: string) {
- return {
- type: ActionTypes.INTERCEPTOR_PREFLIGHT,
- payload: {
- token
- }
- }
- },
- interceptored(shareType, vizType) {
- return {
- type: ActionTypes.INTERCEPTOR_PREFLIGHT_SUCCESS,
- payload: {
- shareType,
- vizType
- }
- }
- },
- interceptorFail() {
- return {
- type: ActionTypes.INTERCEPTOR_PREFLIGHT_FAIL
- }
- },
- getPermissions(
- token: string,
- password?: string,
- resolve?: () => void,
- reject?: () => void
- ) {
- return {
- type: ActionTypes.GET_PERMISSIONS,
- payload: {
- token,
- password,
- resolve,
- reject
- }
- }
- },
- getPermissionsSuccess(download) {
- return {
- type: ActionTypes.GET_PERMISSIONS_SUCCESS,
- payload: {
- download
- }
- }
- },
- getPermissionsFail() {
- return {
- type: ActionTypes.GET_PERMISSIONS_FAIL
- }
- },
- getServerConfigurations() {
- return {
- type: ActionTypes.GET_SERVER_CONFIGURATIONS
- }
- },
- serverConfigurationsGetted(configurations: IServerConfigurations) {
- return {
- type: ActionTypes.GET_SERVER_CONFIGURATIONS_SUCCESS,
- payload: {
- configurations
- }
- }
- },
- getServerConfigurationsFail(error) {
- return {
- type: ActionTypes.GET_SERVER_CONFIGURATIONS_FAIL,
- payload: {
- error
- }
- }
- }
- }
- const mockAction = returnType(AppActions)
- export type AppActionType = typeof mockAction
- export default AppActions
|