15.307.0 • Published 3 years ago

@angular-ru/ng-excel-builder v15.307.0

Weekly downloads
42
License
MIT
Repository
github
Last release
3 years ago

Excel Builder

Small library for generate xls files via web worker

import { NgModule } from '@angular/core';
import { TranslateModule } from '@ngx-translate/core';
import { ExcelBuilderModule } from '@angular-ru/ng-excel-builder';

@NgModule({
    imports: [TranslateModule.forRoot(), ExcelBuilderModule.forRoot()]
})
export class AppModule {}

About

Install

$ npm install @angular-ru/ng-excel-builder --save

Example with NGX Translate

import { HttpClient, HttpClientModule } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { MatListModule } from '@angular/material/list';
import { MatSidenavModule } from '@angular/material/sidenav';
import { MatToolbarModule } from '@angular/material/toolbar';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { RouterModule } from '@angular/router';
import { EXCEL_BUILDER_NGX_TRANSLATE_FALLBACK_PROVIDER, ExcelBuilderModule } from '@angular-ru/ng-excel-builder';
import { TranslateLoader, TranslateModule } from '@ngx-translate/core';
import { TranslateHttpLoader } from '@ngx-translate/http-loader';

import { AppComponent } from './app.component';

// ts-prune-ignore-next
export function createTranslateLoader(http: HttpClient): TranslateHttpLoader {
    return new TranslateHttpLoader(http, './assets/i18n/', `.json`);
}

@NgModule({
    bootstrap: [AppComponent],
    declarations: [AppComponent],
    imports: [
        BrowserModule,
        MatListModule,
        HttpClientModule,
        MatToolbarModule,
        MatSidenavModule,
        MatButtonModule,
        BrowserAnimationsModule,
        TranslateModule.forRoot({
            loader: {
                deps: [HttpClient],
                provide: TranslateLoader,
                useFactory: createTranslateLoader
            }
        }),
        RouterModule.forRoot([]),
        ExcelBuilderModule.forRoot()
    ],
    providers: [EXCEL_BUILDER_NGX_TRANSLATE_FALLBACK_PROVIDER]
})
export class AppModule {}

when we have ru.json

{
    "APP_KEYS": {
        "TITLE": "Название файла",
        "WORKSHEET_NAME": "Лист 1",
        "MODELS": {
            "id": "id",
            "name": "Имя",
            "description": "Описание"
        }
    }
}
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css'],
    encapsulation: ViewEncapsulation.None
})
export class AppComponent {
    public data: Any[] = [
        {
            id: 'id',
            name: 'Maria',
            description: 'Fugiat tempor sunt nostrud ad fugiat. Laboris velit duis incididunt culpa'
        }
    ];

    constructor(protected excel: ExcelService, private readonly translate: TranslateService) {
        this.translate.setDefaultLang('ru');
    }

    public exportExcel(): void {
        this.excel.exportExcel({
            filename: 'My excel file',
            worksheets: [
                {
                    table: this.data,
                    prefixKeyForTranslate: 'PATH_TO_KEYS',
                    worksheetName: 'worksheet name'
                }
            ],
            translatedKeys: {
                PATH_TO_KEYS: {
                    id: 'ID',
                    name: 'Name',
                    description: 'Description'
                }
            }
        });
    }

    public exportExcelWithI18n(): void {
        this.excel.exportExcel({
            filename: 'APP_KEYS.TITLE',
            worksheets: [
                {
                    table: this.data,
                    prefixKeyForTranslate: 'APP_KEYS.MODELS',
                    worksheetName: 'APP_KEYS.WORKSHEET_NAME'
                }
            ]
        });
    }
}
  • filename - the generated file will be named like this.
  • worksheets - array of objects with your data.

    • prefixKeyForTranslate will be used in translate function.
    • worksheetName - name of the sheet.
    • entries is an array of objects, which contains data for a sheet.
  • translatedKeys - it's a dictionary for you column headers, you can leave it empty and then the column keys will be generated as is.

Custom translate service

import { Injectable } from '@angular/core';

@Injectable()
class MyCustomTranslateService implements ExcelBuilderTextColumnInterceptor {
    // ...
}

@NgModule({
    // ...
    providers: [
        {
            provide: EXCEL_BUILDER_INTERCEPTOR_TOKEN,
            useClass: MyCustomTranslateService
        }
    ]
})
export class AppModule {}
15.307.0

3 years ago

15.306.0

3 years ago

15.303.0

3 years ago

15.302.2

3 years ago

15.302.1

3 years ago

15.301.3

3 years ago

15.301.0

3 years ago

15.276.2

3 years ago

15.276.3

3 years ago

15.274.0

3 years ago

15.276.0

3 years ago

15.269.0

3 years ago

15.268.0

3 years ago

15.260.0

3 years ago

15.253.0

3 years ago

15.247.0

3 years ago

15.237.0

3 years ago

15.239.0

3 years ago

15.224.0

3 years ago

15.205.0

3 years ago

15.193.0

3 years ago

15.157.0

3 years ago

15.138.0

3 years ago

15.138.1

3 years ago

15.129.0

3 years ago

15.81.0

3 years ago

15.48.0

3 years ago

15.50.0

3 years ago

15.6.2

3 years ago

15.3.0

3 years ago

15.2.0

3 years ago

15.0.1

3 years ago

15.0.0

3 years ago

14.64.2

4 years ago

14.47.0

4 years ago

14.23.0

4 years ago

14.17.3

4 years ago

14.8.16

4 years ago

14.8.17

4 years ago

14.20.0

4 years ago

14.8.10

4 years ago

14.8.4

4 years ago

14.8.9

4 years ago

14.8.1

4 years ago

14.7.0

4 years ago

14.8.0

4 years ago

14.6.0

4 years ago

14.5.14

4 years ago

14.5.13

4 years ago

14.4.0

4 years ago

14.4.1

4 years ago

13.57.0

4 years ago

13.57.1

4 years ago

14.0.1

4 years ago

13.26.1

4 years ago

13.22.2

4 years ago

13.8.0

4 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago