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

NegociacoesView.js:22 Uncaught ReferenceError: model is not defined

boa tarde! está sendo apresentado esse erro quando tento renderizar o templete, imagino que esqueci alguma coisa e não consigo encontrar o erro:

negociacaoView.js

class NegociacoesView{

    constructor(elemento){
        this._elemento = elemento;
    }

    _template(){

        return `
        <table class="table table-hover table-bordered">
            <thead>
                <tr>
                    <th>DATA</th>
                    <th>QUANTIDADE</th>
                    <th>VALOR</th>
                    <th>VOLUME</th>
                </tr>
            </thead>
            <tbody>
                ${model.negociacoes.map(n => {
                        return `
                        <tr>
                            <td>
                                ${DateHelper.dataParaTexto(n.data)}
                            </td>
                            <td>
                                ${n.quantidade}
                            </td>
                            <td>
                                ${n.valor}
                            </td>
                            <td>
                                ${n.volume}
                            </td>
                        </tr>
                        `
                    }).join('')}
            </tbody>
            <tfoot>
            </tfoot>
        </table>
        `;
    }

    update(model){

        this._elemento.innerHTML = this._template(model);
    }

}

negociacaoController.js

class NegociacaoController{

    constructor(){
        let $ = document.querySelector.bind(document);
        this._inputData = $("#data");
        this._inputQuantidade = $("#quantidade");
        this._inputValor = $("#valor");
        this._listaNegociacoes = new ListaNegociacoes();
        this._negociacoesView = new NegociacoesView($("#negociacoesView"));
        this._negociacoesView.update(this._listaNegociacoes);
    }

    adiciona(event){
        event.preventDefault();
        this._listaNegociacoes.adiciona(this._criaNegociacao());
        this._negociacoesView.update(this._listaNegociacoes);
        this._limpaformulario();

        console.log(this._listaNegociacoes);
    }
    _criaNegociacao(){

        return new Negociacao(
            DateHelper.textoParaData(this._inputData.value),
            this._inputQuantidade.value,
            this._inputValor.value
        );
    }

    _limpaformulario(){
        this._inputData.value ='';
        this._inputQuantidade.value = 1;
        this._inputValor.value = 0.0;
        this._inputData.focus();
    }
}

index.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>
    <div id="negociacoesView">
    </div>
    <script src="js/App/models/Negociacao.js"></script>
    <script src="js/App/controlers/NegociacaoController.js"></script>
    <script src="js/App/helpers/DateHelper.js"></script>
    <script src="js/App/models/ListaNegociacoes.js"></script>
    <script src="js/App/views/NegociacoesView.js"></script>
    <script>
        let negociacaoController = new NegociacaoController();

    </script>
</body>
</html>
2 respostas
solução!

Oi, Marcos, tudo bem?

Eu testei o seu código com o projeto do curso e não obtive o erro que você teve. O console avisou foi que model não estava definido, então, em _template(model), defini; mas não na linha 22, segue o print do meu teste: https://imgur.com/a/RE7Mhul

Obrigado pela ajuda Laís. Observei aqui e de fato faltava isso

_template(model);

e assim na linha 22 ele dava esse erro pois eu estava tentando usar essa variável model que não havia sido definida.