0403 sync
This commit is contained in:
parent
800d518611
commit
05bb9afa19
|
@ -1,2 +1,10 @@
|
|||
웹소켓 disconnect 감지
|
||||
retry
|
||||
innerprotocol ping subscription 연결 감지
|
||||
socket request timer
|
||||
pending request 일정 시간동안 응답 없을 경우
|
||||
TimeError throw
|
||||
socket close 이벤트에 대한 effect 추가
|
||||
|
||||
화상알리미 프로필 이미지 변경 x
|
||||
|
||||
|
6
documents/업무/4월/1째주/0403.txt
Normal file
6
documents/업무/4월/1째주/0403.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
프로필 이미지 변경 동기화 버그 수정
|
||||
네트워크 타임아웃 처리
|
||||
맥 사이즈 변경 드래그 문제 강희경 책임님께 문의
|
||||
|
||||
Cannot connect to the LFTalk server. Please check your internet connection.
|
||||
Retrying. Please wait.
|
Binary file not shown.
12
documents/업무/4월/1째주/overay-spinner.service.spec.ts
Normal file
12
documents/업무/4월/1째주/overay-spinner.service.spec.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { TestBed } from '@angular/core/testing';
|
||||
|
||||
import { OveraySpinnerService } from './overay-spinner.service';
|
||||
|
||||
describe('OveraySpinnerService', () => {
|
||||
beforeEach(() => TestBed.configureTestingModule({}));
|
||||
|
||||
it('should be created', () => {
|
||||
const service: OveraySpinnerService = TestBed.get(OveraySpinnerService);
|
||||
expect(service).toBeTruthy();
|
||||
});
|
||||
});
|
55
documents/업무/4월/1째주/overay-spinner.service.ts
Normal file
55
documents/업무/4월/1째주/overay-spinner.service.ts
Normal file
|
@ -0,0 +1,55 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
|
||||
import { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
||||
import { ComponentPortal } from '@angular/cdk/portal';
|
||||
import { MatSpinner } from '@angular/material/progress-spinner';
|
||||
|
||||
import { Observable, Subject } from 'rxjs';
|
||||
import { mapTo, scan, map, mergeMap } from 'rxjs/operators';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class OveraySpinnerService {
|
||||
private spinnerTopRef = this.cdkSpinnerCreate();
|
||||
|
||||
spin$: Subject<boolean> = new Subject();
|
||||
|
||||
constructor(private overlay: Overlay) {
|
||||
this.spin$
|
||||
.asObservable()
|
||||
.pipe(
|
||||
map(val => (val ? 1 : -1)),
|
||||
scan((acc, one) => (acc + one >= 0 ? acc + one : 0), 0)
|
||||
)
|
||||
.subscribe(res => {
|
||||
if (res === 1) {
|
||||
this.showSpinner();
|
||||
} else if (res === 0) {
|
||||
this.spinnerTopRef.hasAttached() ? this.stopSpinner() : null;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private cdkSpinnerCreate() {
|
||||
return this.overlay.create({
|
||||
hasBackdrop: true,
|
||||
backdropClass: 'dark-backdrop',
|
||||
positionStrategy: this.overlay
|
||||
.position()
|
||||
.global()
|
||||
.centerHorizontally()
|
||||
.centerVertically()
|
||||
});
|
||||
}
|
||||
|
||||
private showSpinner() {
|
||||
console.log('attach');
|
||||
this.spinnerTopRef.attach(new ComponentPortal(MatSpinner));
|
||||
}
|
||||
|
||||
private stopSpinner() {
|
||||
console.log('dispose');
|
||||
this.spinnerTopRef.detach();
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
BIN
weekly-report/4월/주간보고_박병은_2020.0403.pptx
Normal file
BIN
weekly-report/4월/주간보고_박병은_2020.0403.pptx
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user