Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

TypeError

Olá! Estou tendo um problema com a data no meu código. Mesmo depois das conversões indicadas, recebo o erro Uncaught TypeError: data.getTime is not a function na linha 3 do Negociação.js. Códigos:

HTML:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Negociações</title>
    <link rel="stylesheet" href="css/bootstrap.css">
    <link rel="stylesheet" href="css/bootstrap-theme.css">

</head>
<body class="container">

    <h1 class="text-center">Negociações</h1>

    <form class="form" onsubmit="negociacaoController.adiciona(event)">

        <div class="form-group">
            <label for="data">Data</label>
            <input type="date" id="data" class="form-control" required autofocus/>
        </div>

        <div class="form-group">
            <label for="quantidade">Quantidade</label>
            <input type="number" min="1" step="1" id="quantidade" class="form-control" value="1" required/>
        </div>

        <div class="form-group">
            <label for="valor">Valor</label>
            <input id="valor" type="number" class="form-control"  min="0.01" step="0.01" value="0.0" required />
        </div>

        <button class="btn btn-primary" type="submit">Incluir</button>
    </form>

    <div class="text-center">
        <button class="btn btn-primary text-center" type="button">
            Importar Negociações
        </button>
        <button class="btn btn-primary text-center" type="button">
            Apagar
        </button>
    </div>
    <br>
    <br>

    <table class="table table-hover table-bordered">
        <thead>
            <tr>
                <th>DATA</th>
                <th>QUANTIDADE</th>
                <th>VALOR</th>
                <th>VOLUME</th>
            </tr>
        </thead>

        <tbody>
        </tbody>

        <tfoot>
        </tfoot>
    </table>
    <script src="js\app\models\Negociacao.js"></script>
    <script src="js\app\controllers\NegociacaoController.js"></script>
    <script>
      let negociacaoController = new NegociacaoController();
    </script>
</body>
</html>

Negociação.js:

class Negociacao {
  constructor(data, quantidade, valor) {
    this._data = new Date(data.getTime()); 
    this._quantidade = quantidade;
    this._valor = valor;
    Object.freeze(this);
  }
  get volume(){
    return this._quantidade * this._valor;
  }
  get data(){
    return new Date(this._data.getTime());
  }
  get quantidade(){
    return this._quantidade;
  }
  get valor(){
    return this._valor;
  }
}

NegociacaoController.js:

class NegociacaoController {

  constructor(){
    let $ = document.querySelector.bind(document);
    this._inputData = $("#data");
    this._inputQuantidade = $("#quantidade");
    this._inputValor = $("#valor");
  }
  adiciona(event) {
    event.preventDefault();
    let data = new Date(...this._inputData.value.split("-").map((item, indice) => item - indice % 2));
    let negociacao = new Negociacao(
      this._inputData.value,
      this._inputQuantidade.value,
      this._inputValor.value
    );

    console.log(negociacao);
  }
}

Alguém sabe como resolver? Obrigado!

2 respostas
solução!

Boa noite, olhando seu código de relance, ao criar a negociação você não utilizou o objeto Date que você guardou na variável data.

Troque:

let negociacao = new Negociacao(
      this._inputData.value,
      this._inputQuantidade.value,
      this._inputValor.value
    );

por:

let negociacao = new Negociacao(
      data,
      this._inputQuantidade.value,
      this._inputValor.value
    );

e veja se funciona.

Obrigado, Pedro, tudo se resolveu aqui!