Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

173
Visualizações
How to use nested property decorators in Typescript without one overriding the other?

I am creating my own Typescript decorators for validation, but they are not working together, only the first decorator is activated, the second is ignored. The property errors should have a value, because the length passed is less than 3 characters, but is returning undefined.

function IsMoreThan(length: number) {
  return (target: any, propertyKey: string) => {
    let val = target[propertyKey];

    const getter = () => val;
    const setter = (value: string) => {
      if (value.length <= length) {
        Object.defineProperty(target, 'errors', {
          value: `${propertyKey} must be more than ${length} characters`,
          configurable: true,
        });
      } else {
        val = value;
      }
    };

    Object.defineProperty(target, propertyKey, {
      get: getter,
      set: setter,
      configurable: true,
    });
  };
}

function IsString() {
  return (target: any, propertyKey: string) => {
    let val = target[propertyKey];

    const getter = () => val;
    const setter = (value: string) => {
      const varType = typeof value;
      if (varType !== 'string') {
        Object.defineProperty(target, 'errors', {
          value: `${propertyKey} must be a string, received ${varType}`,
          configurable: true,
        });
      } else {
        val = value;
      }
    };

    Object.defineProperty(target, propertyKey, {
      get: getter,
      set: setter,
      configurable: true,
    });
  };
}

class CreateUserSerializer {
  @IsString()
  @IsMoreThan(3)
  public username: string;

  constructor(username: string) {
    this.username = username;
  }
}

const user = new CreateUserSerializer('aa');
console.log(user.errors);

Here is a playground with the code for easier testing: TS Playground

about 4 years ago · Juan Pablo Isaza
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda