* Add account validation dialog/form * clean up * close registration dialog on token request * remove dupe code * add subtitle styling Co-authored-by: Jeremy Letto <jeremy.letto@datasite.com>
117 lines
2.6 KiB
TypeScript
117 lines
2.6 KiB
TypeScript
import { Type } from 'protobufjs';
|
|
import { WebSocketConnectOptions } from 'types';
|
|
|
|
import { Types } from './server.types';
|
|
|
|
export const Actions = {
|
|
clearStore: () => ({
|
|
type: Types.CLEAR_STORE
|
|
}),
|
|
loginSuccessful: (options: WebSocketConnectOptions) => ({
|
|
type: Types.LOGIN_SUCCESSFUL,
|
|
options
|
|
}),
|
|
connectionClosed: reason => ({
|
|
type: Types.CONNECTION_CLOSED,
|
|
reason
|
|
}),
|
|
serverMessage: message => ({
|
|
type: Types.SERVER_MESSAGE,
|
|
message
|
|
}),
|
|
updateBuddyList: buddyList => ({
|
|
type: Types.UPDATE_BUDDY_LIST,
|
|
buddyList
|
|
}),
|
|
addToBuddyList: user => ({
|
|
type: Types.ADD_TO_BUDDY_LIST,
|
|
user
|
|
}),
|
|
removeFromBuddyList: userName => ({
|
|
type: Types.REMOVE_FROM_BUDDY_LIST,
|
|
userName
|
|
}),
|
|
updateIgnoreList: ignoreList => ({
|
|
type: Types.UPDATE_IGNORE_LIST,
|
|
ignoreList
|
|
}),
|
|
addToIgnoreList: user => ({
|
|
type: Types.ADD_TO_IGNORE_LIST,
|
|
user
|
|
}),
|
|
removeFromIgnoreList: userName => ({
|
|
type: Types.REMOVE_FROM_IGNORE_LIST,
|
|
userName
|
|
}),
|
|
updateInfo: info => ({
|
|
type: Types.UPDATE_INFO,
|
|
info
|
|
}),
|
|
updateStatus: status => ({
|
|
type: Types.UPDATE_STATUS,
|
|
status
|
|
}),
|
|
updateUser: user => ({
|
|
type: Types.UPDATE_USER,
|
|
user
|
|
}),
|
|
updateUsers: users => ({
|
|
type: Types.UPDATE_USERS,
|
|
users
|
|
}),
|
|
userJoined: user => ({
|
|
type: Types.USER_JOINED,
|
|
user
|
|
}),
|
|
userLeft: name => ({
|
|
type: Types.USER_LEFT,
|
|
name
|
|
}),
|
|
viewLogs: logs => ({
|
|
type: Types.VIEW_LOGS,
|
|
logs
|
|
}),
|
|
clearLogs: () => ({
|
|
type: Types.CLEAR_LOGS,
|
|
}),
|
|
registrationRequiresEmail: () => ({
|
|
type: Types.REGISTRATION_REQUIRES_EMAIL,
|
|
}),
|
|
registrationFailed: (error) => ({
|
|
type: Types.REGISTRATION_FAILED,
|
|
error
|
|
}),
|
|
registrationEmailError: (error) => ({
|
|
type: Types.REGISTRATION_EMAIL_ERROR,
|
|
error
|
|
}),
|
|
registrationPasswordError: (error) => ({
|
|
type: Types.REGISTRATION_PASSWORD_ERROR,
|
|
error
|
|
}),
|
|
registrationUserNameError: (error) => ({
|
|
type: Types.REGISTRATION_USERNAME_ERROR,
|
|
error
|
|
}),
|
|
accountAwaitingActivation: () => ({
|
|
type: Types.ACCOUNT_AWAITING_ACTIVATION,
|
|
}),
|
|
accountActivationSuccess: () => ({
|
|
type: Types.ACCOUNT_ACTIVATION_SUCCESS,
|
|
}),
|
|
accountActivationFailed: () => ({
|
|
type: Types.ACCOUNT_ACTIVATION_FAILED,
|
|
}),
|
|
resetPassword: () => ({
|
|
type: Types.RESET_PASSWORD_REQUESTED,
|
|
}),
|
|
resetPasswordFailed: () => ({
|
|
type: Types.RESET_PASSWORD_FAILED,
|
|
}),
|
|
resetPasswordChallenge: () => ({
|
|
type: Types.RESET_PASSWORD_CHALLENGE,
|
|
}),
|
|
resetPasswordSuccess: () => ({
|
|
type: Types.RESET_PASSWORD_SUCCESS,
|
|
})
|
|
}
|