mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* custom tslint rules adf project name files * filename and class prefix rule * filename process service mock * fix spec filename * fix demo shell * rename mock * alias deprecated name class * core rename services * fix pacakge.json adf-rules * add exclude in whitelist
114 lines
3.9 KiB
TypeScript
114 lines
3.9 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { Injectable } from '@angular/core';
|
|
import { Http, Response } from '@angular/http';
|
|
import { TranslateLoader } from '@ngx-translate/core';
|
|
import { Observable } from 'rxjs/Rx';
|
|
import { ComponentTranslationModel } from '../models/component.model';
|
|
import { LogService } from './log.service';
|
|
|
|
@Injectable()
|
|
export class AlfrescoTranslateLoader implements TranslateLoader {
|
|
|
|
private prefix: string = 'i18n';
|
|
private suffix: string = '.json';
|
|
private _componentList: ComponentTranslationModel[] = [];
|
|
private queue: string [][] = [];
|
|
|
|
constructor(private http: Http,
|
|
private logService: LogService) {
|
|
}
|
|
|
|
addComponentList(nameInput: string, pathInput: string) {
|
|
this._componentList.push(new ComponentTranslationModel({name: nameInput, path: pathInput}));
|
|
}
|
|
|
|
existComponent(name: string): boolean {
|
|
return this._componentList.find(x => x.name === name) ? true : false;
|
|
}
|
|
|
|
getComponentToFetch(lang: string) {
|
|
let observableBatch = [];
|
|
if (!this.queue[lang]) {
|
|
this.queue[lang] = [];
|
|
}
|
|
this._componentList.forEach((component) => {
|
|
if (!this.isComponentInQueue(lang, component.name)) {
|
|
this.queue[lang].push(component.name);
|
|
observableBatch.push(this.http.get(`${component.path}/${this.prefix}/${lang}${this.suffix}`)
|
|
.map((res: Response) => {
|
|
component.json[lang] = res.json();
|
|
})
|
|
.catch(() => {
|
|
// Empty Observable just to go ahead
|
|
return Observable.of('');
|
|
}));
|
|
}
|
|
});
|
|
return observableBatch;
|
|
}
|
|
|
|
init(lang: string) {
|
|
if (this.queue[lang] === undefined) {
|
|
this.queue[lang] = [];
|
|
}
|
|
}
|
|
|
|
isComponentInQueue(lang: string, name: string) {
|
|
return (this.queue[lang] || []).find(x => x === name) ? true : false;
|
|
}
|
|
|
|
getFullTranslationJSON(lang: string) {
|
|
let fullTranslation: string = '';
|
|
let cloneList = this._componentList.slice(0);
|
|
cloneList.reverse().forEach((component) => {
|
|
if (component.json && component.json[lang]) {
|
|
fullTranslation += JSON.stringify(component.json[lang]);
|
|
}
|
|
});
|
|
if (fullTranslation !== '') {
|
|
return JSON.parse(fullTranslation.replace(/}{/g, ','));
|
|
}
|
|
}
|
|
|
|
getTranslation(lang: string): Observable<any> {
|
|
let observableBatch = this.getComponentToFetch(lang);
|
|
|
|
return Observable.create(observer => {
|
|
if (observableBatch.length > 0) {
|
|
Observable.forkJoin(observableBatch).subscribe(
|
|
() => {
|
|
let fullTranslation = this.getFullTranslationJSON(lang);
|
|
if (fullTranslation) {
|
|
observer.next(fullTranslation);
|
|
}
|
|
observer.complete();
|
|
},
|
|
(err: any) => {
|
|
this.logService.error(err);
|
|
});
|
|
} else {
|
|
let fullTranslation = this.getFullTranslationJSON(lang);
|
|
if (fullTranslation) {
|
|
observer.next(fullTranslation);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|