mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 04:25:08 +00:00
Mail-Ngrx app throws errors for certain rxjs operators
+ Various other small code fixes
This commit is contained in:
parent
ba49621e79
commit
18b2bdf5ab
|
@ -25,21 +25,13 @@ import { fuseAnimations } from '../../../../core/animations';
|
||||||
export class FuseCalendarComponent implements OnInit
|
export class FuseCalendarComponent implements OnInit
|
||||||
{
|
{
|
||||||
view: string;
|
view: string;
|
||||||
|
|
||||||
viewDate: Date;
|
viewDate: Date;
|
||||||
|
|
||||||
events: CalendarEvent[];
|
events: CalendarEvent[];
|
||||||
|
|
||||||
public actions: CalendarEventAction[];
|
public actions: CalendarEventAction[];
|
||||||
|
|
||||||
activeDayIsOpen: boolean;
|
activeDayIsOpen: boolean;
|
||||||
|
|
||||||
refresh: Subject<any> = new Subject();
|
refresh: Subject<any> = new Subject();
|
||||||
|
|
||||||
dialogRef: any;
|
dialogRef: any;
|
||||||
|
|
||||||
confirmDialogRef: MatDialogRef<FuseConfirmDialogComponent>;
|
confirmDialogRef: MatDialogRef<FuseConfirmDialogComponent>;
|
||||||
|
|
||||||
selectedDay: any;
|
selectedDay: any;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
|
|
@ -7,6 +7,8 @@ import { locale as english } from './i18n/en';
|
||||||
import { locale as turkish } from './i18n/tr';
|
import { locale as turkish } from './i18n/tr';
|
||||||
import { Store } from '@ngrx/store';
|
import { Store } from '@ngrx/store';
|
||||||
import { Observable } from 'rxjs/Observable';
|
import { Observable } from 'rxjs/Observable';
|
||||||
|
import 'rxjs/add/operator/debounceTime';
|
||||||
|
import 'rxjs/add/operator/distinctUntilChanged';
|
||||||
import * as fromStore from './store';
|
import * as fromStore from './store';
|
||||||
import { FuseConfigService } from '../../../../core/services/config.service';
|
import { FuseConfigService } from '../../../../core/services/config.service';
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ import { Actions, Effect } from '@ngrx/effects';
|
||||||
import { Observable } from 'rxjs/Observable';
|
import { Observable } from 'rxjs/Observable';
|
||||||
import { of } from 'rxjs/observable/of';
|
import { of } from 'rxjs/observable/of';
|
||||||
import { map, mergeMap, exhaustMap, withLatestFrom } from 'rxjs/operators';
|
import { map, mergeMap, exhaustMap, withLatestFrom } from 'rxjs/operators';
|
||||||
|
import 'rxjs/add/operator/debounceTime';
|
||||||
import { getRouterState, State } from '../../../../../../store/reducers';
|
import { getRouterState, State } from '../../../../../../store/reducers';
|
||||||
import { getMailsState } from '../selectors';
|
import { getMailsState } from '../selectors';
|
||||||
import * as MailsActions from '../actions/mails.actions';
|
import * as MailsActions from '../actions/mails.actions';
|
||||||
|
|
|
@ -10,13 +10,6 @@
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
|
|
||||||
&.todo-item-placeholder {
|
|
||||||
background: rgba(0, 0, 0, 0.12);
|
|
||||||
* {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.handle {
|
.handle {
|
||||||
height: 48px;
|
height: 48px;
|
||||||
line-height: 48px;
|
line-height: 48px;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user