forked from TRON-Developer-Hub/decentralized-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.js
77 lines (57 loc) · 1.94 KB
/
utils.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//import LibraryABI from './libraryABI'
let account = null
let libraryContract
let libraryContractAddress = 'TD7g2t959bRjm5DFsAHYTwFrhrNLXU3gJ9' // Paste Contract address here
let bookRentContract = null
export const accountAddress = () => {
return account
}
export function getTronWeb(){
// Obtain the tronweb object injected by tronLink
var obj = setInterval(async ()=>{
if (window.tronWeb && window.tronWeb.defaultAddress.base58) {
clearInterval(obj)
console.log("tronWeb successfully detected!")
}
}, 10)
}
export async function setLibraryContract() {
// TODO: abtain contract Object
bookRentContract = await window.tronWeb.contract().at(libraryContractAddress);
}
export async function postBookInfo(name, description, price) {
// TODO: call addBook func of library contract
const result = await bookRentContract.addBook(name,description,price).send({
feeLimit:100_000_000,
callValue:0,
shouldPollResponse:true
});
alert('Book Posted Successfully')
}
export async function borrowBook(spaceId, checkInDate, checkOutDate, totalPrice) {
// TODO: call borrowBook func of library contract
const result = await bookRentContract.borrowBook(spaceId,checkInDate,checkOutDate).send({
feeLimit:100_000_000,
callValue:totalPrice,
shouldPollResponse:true
});
alert('Property Booked Successfully')
}
export async function fetchAllBooks() {
// TODO: call bookId func of library contract to abtain total books number
// iterate till book Id
// push each object to books array
const books = [];
const bookId = await bookRentContract.bookId().call();
//iterate from 0 till bookId
for (let i = 0; i < bookId; i++){
const book = await bookRentContract.books(i).call()
if(book.name!="") // filter the deleted books
{
books.push(
{id: i,name: book.name,description: book.description,price: window.tronWeb.fromSun(book.price)}
)
}
}
return books
}