* add @angular/cli to the project * increase nodejs version -> 8.2.1 * add lerna * merge web and shared module * move electron module into packages as uhk-agent Electron agent functionality is not working * delete symlinker * convert private properties to public of component if used in html * revert uhk-message.component * fix component path * fix the correct name of the uhk-message.component.scss * building web and electron module * delete uhk-renderer package * handle device connect disconnect state * add privilege detection * fix set privilege functionality * turn back download keymap functionality * add bootstrap, select2 js and fix null pointer exception * turn back upload data to keyboard * fix send keymap * fix test-serializer * add missing package.json * merging * fix appveyor build * fix linting * turn back electron storage service * commit the missing electron-datastorage-repository * update node to 8.3.0 in .nvmrc and log node version in appveyor build * set exact version number in appveyor build * vertical align privilege and missing device components * set back node version to 8 in appveyor * move node-usb dependency from usb dir to root maybe it is fix the appveyor build * revert usb to root * fix electron builder script * fix electron builder script * turn off electron devtools * remove CTRL+U functionality * fix CTRL+o * fix lint error * turnoff store freeze * start process when got `Error: EPERM: operation not permitted` error * move files from root usb dir -> packages/usb
107 lines
4.5 KiB
TypeScript
107 lines
4.5 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { go } from '@ngrx/router-store';
|
|
import { Actions, Effect, toPayload } from '@ngrx/effects';
|
|
import { Observable } from 'rxjs/Observable';
|
|
import { Action, Store } from '@ngrx/store';
|
|
|
|
import 'rxjs/add/operator/map';
|
|
import 'rxjs/add/operator/switchMap';
|
|
import 'rxjs/add/operator/startWith';
|
|
import 'rxjs/add/operator/withLatestFrom';
|
|
import 'rxjs/add/operator/mergeMap';
|
|
import 'rxjs/add/observable/of';
|
|
|
|
import { NotificationType } from 'uhk-common';
|
|
|
|
import {
|
|
ActionTypes,
|
|
LoadUserConfigAction,
|
|
LoadUserConfigSuccessAction,
|
|
SaveUserConfigSuccessAction
|
|
} from '../actions/user-config';
|
|
|
|
import { UserConfiguration } from '../../config-serializer/config-items/user-configuration';
|
|
import { DataStorageRepositoryService } from '../../services/datastorage-repository.service';
|
|
import { DefaultUserConfigurationService } from '../../services/default-user-configuration.service';
|
|
import { AppState, getPrevUserConfiguration, getUserConfiguration } from '../index';
|
|
import { KeymapActions } from '../actions/keymap';
|
|
import { MacroActions } from '../actions/macro';
|
|
import { UndoUserConfigData } from '../../models/undo-user-config-data';
|
|
import { ShowNotificationAction, DismissUndoNotificationAction } from '../actions/app';
|
|
|
|
@Injectable()
|
|
export class UserConfigEffects {
|
|
|
|
@Effect() loadUserConfig$: Observable<Action> = this.actions$
|
|
.ofType(ActionTypes.LOAD_USER_CONFIG)
|
|
.startWith(new LoadUserConfigAction())
|
|
.switchMap(() => Observable.of(new LoadUserConfigSuccessAction(this.getUserConfiguration())));
|
|
|
|
@Effect() saveUserConfig$: Observable<Action> = this.actions$
|
|
.ofType(
|
|
KeymapActions.ADD, KeymapActions.DUPLICATE, KeymapActions.EDIT_NAME, KeymapActions.EDIT_ABBR,
|
|
KeymapActions.SET_DEFAULT, KeymapActions.REMOVE, KeymapActions.SAVE_KEY,
|
|
MacroActions.ADD, MacroActions.DUPLICATE, MacroActions.EDIT_NAME, MacroActions.REMOVE, MacroActions.ADD_ACTION,
|
|
MacroActions.SAVE_ACTION, MacroActions.DELETE_ACTION, MacroActions.REORDER_ACTION)
|
|
.withLatestFrom(this.store.select(getUserConfiguration), this.store.select(getPrevUserConfiguration))
|
|
.mergeMap(([action, config, prevUserConfiguration]) => {
|
|
this.dataStorageRepository.saveConfig(config);
|
|
|
|
if (action.type === KeymapActions.REMOVE || action.type === MacroActions.REMOVE) {
|
|
const text = action.type === KeymapActions.REMOVE ? 'Keymap' : 'Macro';
|
|
const pathPrefix = action.type === KeymapActions.REMOVE ? 'keymap' : 'macro';
|
|
const payload: UndoUserConfigData = {
|
|
path: `/${pathPrefix}/${action.payload}`,
|
|
config: prevUserConfiguration.toJsonObject()
|
|
};
|
|
|
|
return [
|
|
new SaveUserConfigSuccessAction(config),
|
|
new ShowNotificationAction({
|
|
type: NotificationType.Undoable,
|
|
message: `${text} has been deleted`,
|
|
extra: {
|
|
payload,
|
|
type: KeymapActions.UNDO_LAST_ACTION
|
|
}
|
|
})
|
|
];
|
|
}
|
|
|
|
return [new SaveUserConfigSuccessAction(config), new DismissUndoNotificationAction()];
|
|
});
|
|
|
|
@Effect() undoUserConfig$: Observable<Action> = this.actions$
|
|
.ofType(KeymapActions.UNDO_LAST_ACTION)
|
|
.map(toPayload)
|
|
.mergeMap((payload: UndoUserConfigData) => {
|
|
const config = new UserConfiguration().fromJsonObject(payload.config);
|
|
this.dataStorageRepository.saveConfig(config);
|
|
return [new LoadUserConfigSuccessAction(config), go(payload.path)];
|
|
});
|
|
|
|
constructor(private actions$: Actions,
|
|
private dataStorageRepository: DataStorageRepositoryService,
|
|
private store: Store<AppState>,
|
|
private defaultUserConfigurationService: DefaultUserConfigurationService) {
|
|
}
|
|
|
|
private getUserConfiguration() {
|
|
const configJsonObject = this.dataStorageRepository.getConfig();
|
|
let config: UserConfiguration;
|
|
|
|
if (configJsonObject) {
|
|
if (configJsonObject.dataModelVersion === this.defaultUserConfigurationService.getDefault().dataModelVersion) {
|
|
config = new UserConfiguration().fromJsonObject(configJsonObject);
|
|
}
|
|
}
|
|
|
|
if (!config) {
|
|
config = this.defaultUserConfigurationService.getDefault();
|
|
}
|
|
|
|
return config;
|
|
|
|
}
|
|
}
|