mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-06 11:15:42 +00:00

* docs, frameworks view * project select, integrate app page * fix search project autocomplete * framework autocomplete * framwork select component, integrate, mapping to oidc config * param * fix route handler * setname projectid context * app-create page without context * show description of app type, info section * redirects section * updatevalue observable * fix redirect uris section * i18n * setup config * backbutton behavior, cleanup * cleanup * lint * allow other framework jump off * dev mode warning * navigate to project * rm import * i18n, guide link * edit name dialog * show warning for duplicate name
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { Component } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import frameworkDefinition from '../../../../../docs/frameworks.json';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { listFrameworks, hasFramework, getFramework } from '@netlify/framework-info';
|
|
import { FrameworkName } from '@netlify/framework-info/lib/generated/frameworkNames';
|
|
import { OIDC_CONFIGURATIONS } from 'src/app/utils/framework';
|
|
|
|
export type FrameworkDefinition = {
|
|
id?: FrameworkName | string;
|
|
title: string;
|
|
description?: string;
|
|
imgSrcDark: string;
|
|
imgSrcLight?: string;
|
|
docsLink: string;
|
|
external?: boolean;
|
|
};
|
|
|
|
export type Framework = FrameworkDefinition & {
|
|
fragment: string;
|
|
};
|
|
|
|
@Component({
|
|
standalone: true,
|
|
selector: 'cnsl-quickstart',
|
|
templateUrl: './quickstart.component.html',
|
|
styleUrls: ['./quickstart.component.scss'],
|
|
imports: [TranslateModule, RouterModule, CommonModule, MatButtonModule],
|
|
})
|
|
export class QuickstartComponent {
|
|
public frameworks: FrameworkDefinition[] = frameworkDefinition
|
|
.filter((f) => f.id && OIDC_CONFIGURATIONS[f.id])
|
|
.map((f) => {
|
|
return {
|
|
...f,
|
|
imgSrcDark: `assets${f.imgSrcDark}`,
|
|
imgSrcLight: `assets${f.imgSrcLight ? f.imgSrcLight : f.imgSrcDark}`,
|
|
};
|
|
});
|
|
}
|