mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { HttpClient } from '@angular/common/http';
|
|
import { Injectable } from '@angular/core';
|
|
import { Observable, of } from 'rxjs';
|
|
import { catchError, map } from 'rxjs/operators';
|
|
|
|
@Injectable()
|
|
export class HelpService {
|
|
constructor(
|
|
private readonly http: HttpClient
|
|
) {
|
|
}
|
|
|
|
public getHelp(helpPage: string): Observable<string[]> {
|
|
const url = `https://api.gitbook.com/book/squidex/squidex/contents/${helpPage}.json`;
|
|
|
|
return this.http.get(url).pipe(
|
|
map((response: any) => {
|
|
const result: string[] = [];
|
|
|
|
for (let section of response.sections) {
|
|
const content = section.content.replace(/href="\.\.\/GLOSSARY\.html/g, 'target="_blank" rel="noopener" href="https://docs.squidex.io/GLOSSARY.html');
|
|
|
|
result.push(content);
|
|
}
|
|
|
|
return result;
|
|
}),
|
|
catchError(error => of([])));
|
|
}
|
|
}
|