This commit is contained in:
leejh 2019-10-29 10:10:16 +09:00
commit 7d6ebad5d5
17 changed files with 138 additions and 33 deletions

View File

@ -0,0 +1,26 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FlexLayoutModule } from '@angular/flex-layout';
import { MatIconModule } from '@angular/material/icon';
import { MatToolbarModule } from '@angular/material/toolbar';
import { UCapUiModule } from '@ucap-webmessenger/ui';
import { COMPONENTS } from './components';
import { DIALOGS } from './dialogs';
@NgModule({
imports: [
CommonModule,
FlexLayoutModule,
MatIconModule,
MatToolbarModule,
UCapUiModule
],
exports: [...COMPONENTS, ...DIALOGS],
declarations: [...COMPONENTS, ...DIALOGS],
entryComponents: [...DIALOGS]
})
export class AppCommonLayoutModule {}

View File

@ -0,0 +1 @@
export const COMPONENTS = [];

View File

@ -0,0 +1,27 @@
/* tslint:disable:no-unused-variable */
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { ImageViewerDialogComponent } from './image-viewer.dialog.component';
describe('ImageViewerDialogComponent', () => {
let component: ImageViewerDialogComponent;
let fixture: ComponentFixture<ImageViewerDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ImageViewerDialogComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ImageViewerDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,34 @@
import {
Component,
OnInit,
OnDestroy,
Inject,
EventEmitter
} from '@angular/core';
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
import { NGXLogger } from 'ngx-logger';
export interface ImageViewerDialogData {}
export interface ImageViewerDialogResult {}
@Component({
selector: 'app-layout-common-image-viewer',
templateUrl: './image-viewer.dialog.component.html',
styleUrls: ['./image-viewer.dialog.component.scss']
})
export class ImageViewerDialogComponent implements OnInit, OnDestroy {
constructor(
public dialogRef: MatDialogRef<
ImageViewerDialogData,
ImageViewerDialogResult
>,
@Inject(MAT_DIALOG_DATA) public data: ImageViewerDialogData,
private logger: NGXLogger
) {}
ngOnInit() {}
ngOnDestroy(): void {}
}

View File

@ -0,0 +1,3 @@
import { ImageViewerDialogComponent } from './image-viewer.dialog.component';
export const DIALOGS = [ImageViewerDialogComponent];

View File

@ -5,7 +5,7 @@
<mat-icon>chat</mat-icon> <mat-icon>chat</mat-icon>
</button> </button>
</div>--> </div>-->
<div class="logo">로고</div> <!-- <div class="logo">로고</div> -->
<mat-tab-group mat-stretch-tabs animationDuration="0ms" class="global-menu"> <mat-tab-group mat-stretch-tabs animationDuration="0ms" class="global-menu">
<mat-tab> <mat-tab>
<ng-template mat-tab-label> <ng-template mat-tab-label>

View File

@ -32,7 +32,7 @@
border-right: 1px solid #dddddd; border-right: 1px solid #dddddd;
.mat-tab-list { .mat-tab-list {
.mat-tab-labels { .mat-tab-labels {
padding-top: 30px; padding-top: 0px;
flex-flow: column; flex-flow: column;
height: 280px; height: 280px;
.mat-tab-label { .mat-tab-label {

View File

@ -1,5 +1,5 @@
<div class="app-layout-chat-left-sidenav-chat-header"> <div class="app-layout-chat-left-sidenav-chat-header">
<mat-form-field class="w-100-p"> <mat-form-field class="w-100-p" floatLabel="never">
<input <input
matInput matInput
#inputSearch #inputSearch

View File

@ -1,4 +1,3 @@
import { forward } from './../../../store/messenger/event/actions';
import { import {
Component, Component,
OnInit, OnInit,
@ -50,6 +49,11 @@ import {
CreateChatDialogData, CreateChatDialogData,
CreateChatDialogResult CreateChatDialogResult
} from '../dialogs/chat/create-chat.dialog.component'; } from '../dialogs/chat/create-chat.dialog.component';
import {
ImageViewerDialogComponent,
ImageViewerDialogData,
ImageViewerDialogResult
} from '@app/layouts/common/dialogs/image-viewer.dialog.component';
import { Maximum_Range } from '@ucap-webmessenger/core'; import { Maximum_Range } from '@ucap-webmessenger/core';
@Component({ @Component({
@ -231,8 +235,20 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewChecked {
); );
} }
onImageViewer(value: FileInfo) { async onImageViewer(value: FileInfo) {
this.logger.debug('imageViewer', value); this.logger.debug('imageViewer', value);
const result = await this.dialogService.open<
ImageViewerDialogComponent,
ImageViewerDialogData,
ImageViewerDialogResult
>(ImageViewerDialogComponent, {
position: {
top: '10px'
},
width: '100%',
height: '98%',
data: {}
});
} }
/** File Save, Save As */ /** File Save, Save As */

View File

@ -2,6 +2,7 @@ import { MatListModule } from '@angular/material/list';
import { MatChipsModule } from '@angular/material/chips'; import { MatChipsModule } from '@angular/material/chips';
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common'; import { CommonModule } from '@angular/common';
import { ReactiveFormsModule } from '@angular/forms';
import { FlexLayoutModule } from '@angular/flex-layout'; import { FlexLayoutModule } from '@angular/flex-layout';
@ -32,9 +33,10 @@ import { UCapUiProfileModule } from '@ucap-webmessenger/ui-profile';
import { UCapUiGroupModule } from '@ucap-webmessenger/ui-group'; import { UCapUiGroupModule } from '@ucap-webmessenger/ui-group';
import { UCapUiOrganizationModule } from '@ucap-webmessenger/ui-organization'; import { UCapUiOrganizationModule } from '@ucap-webmessenger/ui-organization';
import { AppCommonLayoutModule } from '@app/layouts/common/common.layout.module';
import { COMPONENTS } from './components'; import { COMPONENTS } from './components';
import { DIALOGS } from './dialogs'; import { DIALOGS } from './dialogs';
import { ReactiveFormsModule } from '@angular/forms';
@NgModule({ @NgModule({
imports: [ imports: [
@ -66,7 +68,9 @@ import { ReactiveFormsModule } from '@angular/forms';
UCapUiRoomModule, UCapUiRoomModule,
UCapUiProfileModule, UCapUiProfileModule,
UCapUiGroupModule, UCapUiGroupModule,
UCapUiOrganizationModule UCapUiOrganizationModule,
AppCommonLayoutModule
], ],
exports: [...COMPONENTS, ...DIALOGS], exports: [...COMPONENTS, ...DIALOGS],
declarations: [...COMPONENTS, ...DIALOGS], declarations: [...COMPONENTS, ...DIALOGS],

View File

@ -1,4 +1,7 @@
<mat-toolbar class="app-layout-native-title-bar"> <mat-toolbar class="app-layout-native-title-bar">
<div class="app-layout-native-title-bar-logo">
<img src="assets/images/logo/ico_64x64.png" />
</div>
<div class="app-layout-native-title-bar-title">UCAP M Messenger</div> <div class="app-layout-native-title-bar-title">UCAP M Messenger</div>
<div class="app-layout-native-title-bar-spacer"></div> <div class="app-layout-native-title-bar-spacer"></div>
<div class="app-layout-native-title-bar-actions"> <div class="app-layout-native-title-bar-actions">

View File

@ -7,12 +7,25 @@
right: 0; right: 0;
top: 0; top: 0;
display: flex; display: flex;
padding-left: 5px;
padding-right: 0px;
// align-items: center; // align-items: center;
// justify-content: center; // justify-content: center;
// flex-direction: row-reverse; // flex-direction: row-reverse;
cursor: pointer; cursor: pointer;
background: white; background: white;
height: 30px; height: 30px;
border-bottom: 1px solid #d5dadb;
.app-layout-native-title-bar-logo {
width: 16px;
height: 16px;
}
.app-layout-native-title-bar-title {
padding-left: 8px;
font-size: 12px;
}
.app-layout-native-title-bar-spacer { .app-layout-native-title-bar-spacer {
flex: 1 1 auto; flex: 1 1 auto;
@ -73,9 +86,5 @@
} }
} }
} }
.app-layout-native-title-bar-title {
font-size: 12px;
}
} }
} }

View File

@ -1,7 +1,8 @@
.container { .container {
height: 100%; height: 100%;
display:flex; display: flex;
flex-flow: row; flex-flow: row;
padding-top: 30px;
.left-side { .left-side {
width: 380px; width: 380px;
@ -9,8 +10,8 @@
flex: 0 0 auto; flex: 0 0 auto;
} }
.contents { .contents {
flex:1 1 auto; flex: 1 1 auto;
min-width:400px; min-width: 400px;
height: 100%; height: 100%;
.messages { .messages {

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -9,18 +9,6 @@
</span> </span>
<dl class="item-default"> <dl class="item-default">
<dt> <dt>
<!-- <img
class="thumbnail"
[src]="
profileImageRoot
| ucapUiImaage
: {
path: userInfo.profileImageFile,
default: 'assets/images/img_nophoto_50.png'
}
| async
"
/> -->
<img <img
class="thumbnail" class="thumbnail"
ucapUiImage ucapUiImage
@ -28,13 +16,6 @@
[path]="userInfo.profileImageFile" [path]="userInfo.profileImageFile"
[default]="'assets/images/img_nophoto_50.png'" [default]="'assets/images/img_nophoto_50.png'"
/> />
<!-- <ucap-ui-imaage
[imageClass]="'thumbnail'"
[base]="profileImageRoot"
[path]="userInfo.profileImageFile"
[default]="'assets/images/img_nophoto_50.png'"
></ucap-ui-imaage> -->
</dt> </dt>
<dd class="info"> <dd class="info">
<div class="detail"> <div class="detail">