Angular 가상 ForOf 지시문 개요

    Ignite UI for Angular 대량의 데이터 템플릿을 위한 ngForOf의 대안입니다. DOM 렌더링 및 메모리 소비를 최적화하기 위해 뒤에서 가상화를 사용합니다.

    Angular Virtual For Directive Example

    Getting Started with Ignite UI for Angular Virtual ForOf Directive

    Ignite UI for Angular igxFor 지시문을 시작하려면 먼저 Ignite UI for Angular 설치해야 합니다. 기존 Angular 애플리케이션에서 다음 명령을 입력합니다.

    ng add igniteui-angular
    

    Ignite UI for Angular에 대한 전체 소개를 보려면 시작하기 항목을 읽어보세요.

    다음 단계는 IgxForOfModule 당신의 app.module.ts 파일.

    // app.module.ts
    
    import { IgxForOfModule } from 'igniteui-angular';
    // import { IgxForOfModule } from '@infragistics/igniteui-angular'; for licensed package
    
    @NgModule({
        imports: [
            ...
            IgxForOfModule,
            ...
        ]
    })
    export class AppModule {}
    

    또는 16.0.0부터 IgxForOfDirective 독립형 종속성으로 가져올 수 있습니다.

    // home.component.ts
    
    import { IgxForOfDirective } from 'igniteui-angular';
    // import { IgxForOfDirective } from '@infragistics/igniteui-angular'; for licensed package
    
    @Component({
        selector: 'app-home',
        template: `
        <span #container>
            <ng-template *igxFor="data"></ng-template>
        </span>
        `,
        styleUrls: ['home.component.scss'],
        standalone: true,
        imports: [IgxForOfDirective]
    })
    export class HomeComponent {
        public data: Employee [];
    }
    

    이제 Ignite UI for Angular 가져왔으므로 igxFor 지시문 사용을 시작할 수 있습니다.

    Using the Angular Virtual ForOf

    이제 모듈이나 지시문을 가져왔으므로 로컬 데이터에 바인딩하는 igxFor의 기본 구성을 시작하겠습니다.

    <span #container>
        <ng-template *igxFor="data"></ng-template>
    </span>
    

    data 속성은 가상화된 DOM을 구성하는 데 사용되는 데이터 개체를 제공하는 배열입니다.

    Examples

    igxFor 지시문을 사용하면 수직, 수평 또는 양방향으로 데이터를 가상화할 수 있습니다.

    가상화는 사용자가 데이터를 수평/수직으로 스크롤하는 동안 컨테이너 뷰포트에서 교체되는 더 작은 척으로 데이터를 분할하는 방식으로 페이징과 유사하게 작동합니다. 페이징과의 차이점은 가상화가 스크롤 막대의 자연스러운 동작을 모방한다는 것입니다. igxFor 지시문은 스크롤 가능한 컨테이너를 생성하고 작은 데이터 청크를 렌더링합니다. 이는 igxGrid 내부에서 사용되며 가상 igx-list 구축하는 데 사용할 수 있습니다.

    Vertical virtualization

    <igx-list>
        <div [style.height]="'500px'" [style.overflow]="'hidden'" [style.position]="'relative'">
            <igx-list-item [style.width]="'calc(100% - 18px)'"
                *igxFor="let item of data | igxFilter: fo;
                         scrollOrientation : 'vertical';
                         containerSize: '500px'; 
                         itemSize: '50px'">
                <div class="contact">
                    <span class="name">{{item.name}}</span>
                </div>
            </igx-list-item>
        </div>
    </igx-list>
    

    참고:​ ​igxForOf 템플릿의 상위 컨테이너에는 세로 heightwidth, overflow: hiddenposition: relative CSS 규칙이 적용되는 것이 좋습니다. 이는 페이지의 다른 부분이 계속 표시되는 경우 시각적으로 영향을 미칠 수 있는 콘텐츠 오프셋을 통해 부드러운 스크롤 동작이 달성되기 때문입니다.

    Horizontal virtualization

    <igx-list>
        <div [style.width]="'880px'" [style.overflow]="'hidden'" [style.position]="'relative'">
            <igx-list-item [style.width]="'220px'"
                *igxFor="let item of data | igxFilter: fo;
                         scrollOrientation : 'horizontal'; 
                         containerSize: '880px'; 
                         itemSize: '220px'">
                <div class="contact">
                    <span class="name">{{item.name}}</span>
                </div>
            </igx-list-item>
        </div>
    </igx-list>
    

    Horizontal and vertical virtualization

    <table #container [style.width]='width' 
        [style.height]='height'
        [style.overflow]='"hidden"'
        [style.position]='"relative"'>
        <ng-template #scrollContainer igxFor let-rowData
            [igxForOf]="data"
            [igxForScrollOrientation]="'vertical'"
            [igxForContainerSize]='height'
            [igxForItemSize]='"50px"'>
            <tr [style.display]="'flex'" [style.height]="'50px'">
                <ng-template #childContainer igxFor let-col
                    [igxForOf]="cols"
                    [igxForScrollOrientation]="'horizontal'"
                    [igxForScrollContainer]="parentVirtDir"
                    [igxForContainerSize]='width'>
                        <td [style.min-width]='col.width + "px"'>
                            {{rowData[col.field]}}
                        </td>
                </ng-template>
            </tr>
        </ng-template>
    </table>
    

    igxFor 지시문은 igxGrid 내부의 수직 및 수평 방향 모두에서 데이터를 가상화하는 데 사용됩니다.

    자세한 정보와 데모를 보려면 그리드 가상화 주제를 따르십시오.

    igxFor bound to remote service

    igxForOf 지시문은 Observable 속성(remoteData을 사용하여 원격 서비스에 바인딩될 수 있습니다(다음 경우). 데이터 요청을 트리거하는 데에도 chunkLoading 이벤트를 활용해야 합니다.

    <div style='height: 500px; overflow: hidden; position: relative;'>
        <ng-template igxFor let-item [igxForOf]="remoteData | async"
            (chunkPreload)="chunkLoading($event)"
            [igxForScrollOrientation]="'vertical'"
            [igxForContainerSize]='"500px"'
            [igxForItemSize]='"50px"'
            [igxForRemote]='true'
            let-rowIndex="index" #virtDirRemote>
            <div style='height:50px;'>{{item.ProductID}} : {{item.ProductName}}</div>
        </ng-template>
    </div>
    

    참고:​ ​igxForOf 인스턴스에서 totalItemCount 속성을 설정해야 한다는 요구 사항이 있습니다.

    this.virtDirRemote.totalItemCount = data['@odata.count'];
    

    구성 요소에서 지시문 인스턴스에 액세스하려면 ViewChild로 표시되어야 합니다.

    @ViewChild('virtDirRemote', { read: IgxForOfDirective })
    public virtDirRemote: IgxForOfDirective<any>;
    

    첫 번째 청크 로드 요청 후 totalItemCount 설정할 수 있습니다.

    public ngAfterViewInit() {
        this.remoteService.getData(this.virtDirRemote.state, (data) => {
            this.virtDirRemote.totalItemCount = data['@odata.count'];
        });
    }
    

    데이터를 요청할 때 startIndexchunkSize 속성을 제공하는 IgxForOfState 인터페이스를 활용할 수 있습니다. 초기에는 ChunkSize가 0이므로 첫 번째 로드된 청크의 크기를 지정해야 합니다(가장 좋은 값은 초기 igxForContainerSize​ ​igxForItemSize로 나눈 값입니다).

    public getData(data?: IForOfState, cb?: (any) => void): any {
        var dataState = data;
        return this.http
            .get(this.buildUrl(dataState))
            .map((response) => response.json())
            .map((response) => {
                return response;
            })
            .subscribe((data) => {
                this._remoteData.next(data.value);
                if (cb) {
                    cb(data);
                }
            });
    }
    
    private buildUrl(dataState: any): string {
        let qS: string = '?', requiredChunkSize: number;
        if (dataState) {
            const skip = dataState.startIndex;
                requiredChunkSize =  dataState.chunkSize === 0 ?
                // Set initial chunk size, the best value is igxForContainerSize
                // initially divided by igxForItemSize
                10 : dataState.chunkSize;
            const top = requiredChunkSize;
            qS += `$skip=${skip}&$top=${top}&$count=true`;
        }
        return `${this.url}${qS}`;
    }
    

    chunkPreload 이벤트가 발생할 때마다 새로운 데이터 청크가 요청되어야 합니다.

    chunkLoading(evt) {
        if(this.prevRequest){
            this.prevRequest.unsubscribe();
         }
         this.prevRequest = this.remoteService.getData(evt, ()=> {
            this.virtDirRemote.cdr.detectChanges();
        });
    }
    

    Local Variables

    igxFor 지시문은 해당 컨텍스트에 even, odd, firstlast 도우미 속성을 포함합니다. 컬렉션에서 현재 요소 위치를 식별하는 데 사용됩니다. 다음 코드 조각은 ng-template에서 even 속성을 사용하는 방법을 보여줍니다. even 클래스는 모든 짝수 div 요소에 할당됩니다.

    <ng-template igxFor let-item let-isEven="even"
                 [igxForOf]="data" 
                 [igxForScrollOrientation]="'vertical'" >
        <div [ngClass]="{even: isEven}"></div>
    </ng-template>
    

    Known Limitations

    한정 설명
    scrollTo초기화 후 렌더링된 템플릿의 콘텐츠 크기가 변경되면 메서드가 올바르게 작동하지 않습니다. 템플릿 내부 요소의 크기가 초기화 후 런타임을 변경하는 경우(예: 콘텐츠 프로젝션, 원격 요청 해결 등의 결과로)scrollTo 메소드는 올바른 인덱스로 스크롤할 수 없습니다. 메서드는 런타임 크기가 변경되기 전에 인덱스 위치로 스크롤하므로 나중에 크기가 변경된 후에는 위치가 정확하지 않습니다. 가능한 해결 방법은 콘텐츠가 나중에 로드되는 경우 콘텐츠에 따라 크기가 변경되지 않는 템플릿을 사용하는 것입니다.

    API References

    Additional Resources

    Our community is active and always welcoming to new ideas. * [Ignite UI for Angular **Forums**](https://ko.infragistics.com/community/forums/f/ignite-ui-for-angular) * [Ignite UI for Angular **GitHub**](https://github.com/IgniteUI/igniteui-angular)