-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00ef2f8
commit 1d5de89
Showing
3 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
class Pedido { | ||
constructor() { | ||
//inicializa com os valores armazenados no storage (se houver) ao carregar a aplicação | ||
const data = this.recuperaPedidoStorage(); | ||
if (data !== null) { | ||
this.pedido = data; | ||
} else { | ||
//pedido vazio se não houver dados anteriores | ||
this.pedido = { | ||
numero: 0, | ||
comanda: null, | ||
datahora: null, | ||
status: null | ||
}; | ||
} | ||
} | ||
|
||
realizarPedido(){ | ||
// TODO implementar método para realizar pedido | ||
} | ||
|
||
|
||
// Função para adicionar uma comanda ao pedido | ||
adicionarComanda(comanda) { | ||
// TODO implementar adicionar comanda ao pedido | ||
} | ||
|
||
// Função para atualizar o storage com os dados do pedido | ||
atualizaStorage(pedido) { | ||
localStorage.setItem('pedido', JSON.stringify(comanda)); | ||
} | ||
|
||
// Função para recuperar os dados do pedido do storage | ||
recuperaPedidoStorage() { | ||
return JSON.parse(localStorage.getItem('pedido')); | ||
} | ||
|
||
// Função para setar o número do pedido | ||
setNumero(numero) { | ||
this.pedido.numero = numero; | ||
this.atualizaStorage(this.pedido); | ||
} | ||
|
||
// Função para obter o número do pedido | ||
getNumero() { | ||
return this.pedido.numero; | ||
} | ||
|
||
printPedido() { | ||
console.log(this.recuperaPedidoStorage()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters