Hello, Ya Oliveira!
The code I will post will be very basic, it serves as an example.
1 - Let’s start by creating a page html
<!DOCTYPE html>
<html lang="pt" dir="ltr">
<head>
<meta charset="utf-8">
<title>Teste</title>
</head>
<body>
<<button type="button" id="id_do_seu_botao"></button>
</body>
</html>
2 - Access the Firebase website, create and configure your account, following these steps:
2.1 - Go to the console
2.2 - Add Project
2.3 - Add a new app (click the tag icon)
2.3 - Copy the javascript code shown
3 - Now paste the copied code into the item 2.3 stage 2 in the archive html
stage 1
<!DOCTYPE html>
<html lang="pt" dir="ltr">
<head>
<meta charset="utf-8">
<title>Teste</title>
</head>
<body>
<<button type="button" name="button"></button>
</body>
</html>
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "valor_ilustrativo",
authDomain: "valor_ilustrativo",
databaseURL: "valor_ilustrativo",
projectId: "valor_ilustrativo",
storageBucket: "valor_ilustrativo",
messagingSenderId: "valor_ilustrativo"
};
firebase.initializeApp(config);
</script>
4 - It is also necessary to add the jQuery
to the project and implement the logic of counting
<!DOCTYPE html>
<html lang="pt" dir="ltr">
<head>
<meta charset="utf-8">
<title>Teste</title>
</head>
<body>
<<button type="button" name="button"></button>
</body>
</html>
<script src="https://code.jquery.com/jquery-3.3.1.min.js">
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "valor_ilustrativo",
authDomain: "valor_ilustrativo",
databaseURL: "valor_ilustrativo",
projectId: "valor_ilustrativo",
storageBucket: "valor_ilustrativo",
messagingSenderId: "valor_ilustrativo"
};
firebase.initializeApp(config);
var database = firebase.database();
// Adicionando o evento de click no botão
$( "#id_do_seu_botao" ).on( "click", function( event ) {
database.ref("like/amount").on('value', function(snapshot) {
like(snapshot.val());
});
});
function like(amount) {
database.ref('like').set({ amount + 1});
}
</script>
Basically, you need to recover the current amount in the database and add up one more drive. This all occurs at the moment of click. It is clear that this logic can be improved, such as processing the recovery of the saved quantity via Cloud Functions
and increment it by leaving to the page the function only to trigger the button/call to the Database, but this does not fit here. This code is for exemplification purposes only.
Use it for study, and in addition, study the documentation of the technologies you want to use. See:
https://jquery.com/
https://firebase.google.com/docs/database/web/read-and-write?hl=pt-br
You will indeed make one
<button>
that will send the action to the database, which in turn will add+1
to the value that already exists there. I never studied aboutfirebase
, then you would owe at this point.– Wees Smith