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.
39 lines
1.1 KiB
39 lines
1.1 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
/* eslint-disable no-useless-escape */
|
|
|
|
import { FormControl, Validators } from '@angular/forms';
|
|
import { Form, hasNoValue$, ExtendedFormGroup, ValidatorsEx } from '@app/framework';
|
|
import { ClientDto, CreateClientDto, UpdateClientDto } from './../services/clients.service';
|
|
|
|
export class RenameClientForm extends Form<ExtendedFormGroup, UpdateClientDto, ClientDto> {
|
|
constructor() {
|
|
super(new ExtendedFormGroup({
|
|
name: new FormControl('',
|
|
Validators.required,
|
|
),
|
|
}));
|
|
}
|
|
}
|
|
|
|
export class AddClientForm extends Form<ExtendedFormGroup, CreateClientDto> {
|
|
public get id() {
|
|
return this.form.controls['id'];
|
|
}
|
|
|
|
public hasNoId = hasNoValue$(this.id);
|
|
|
|
constructor() {
|
|
super(new ExtendedFormGroup({
|
|
id: new FormControl('', [
|
|
Validators.maxLength(40),
|
|
ValidatorsEx.pattern('[a-z0-9]+(\-[a-z0-9]+)*', 'i18n:clients.clientIdValidationMessage'),
|
|
]),
|
|
}));
|
|
}
|
|
}
|
|
|