-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookMethods.js
More file actions
124 lines (110 loc) · 3.23 KB
/
bookMethods.js
File metadata and controls
124 lines (110 loc) · 3.23 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
const axios = require('axios');
const BASE_URL = 'http://localhost:5000/api';
// 1. Get all books – Using async callback function
const getAllBooksCallback = (callback) => {
const fetchBooks = async () => {
try {
const response = await axios.get(`${BASE_URL}/books`);
callback(null, response.data);
} catch (error) {
callback(error, null);
}
};
fetchBooks();
};
// 2. Search by ISBN – Using Promises
const searchByISBN = (isbn) => {
return new Promise((resolve, reject) => {
axios.get(`${BASE_URL}/books/isbn/${isbn}`)
.then(response => {
resolve(response.data);
})
.catch(error => {
reject(error);
});
});
};
// 3. Search by Author – Using async/await
const searchByAuthor = async (author) => {
try {
const response = await axios.get(`${BASE_URL}/books/author/${encodeURIComponent(author)}`);
return response.data;
} catch (error) {
throw error;
}
};
// 4. Search by Title – Using async/await
const searchByTitle = async (title) => {
try {
const response = await axios.get(`${BASE_URL}/books/title/${encodeURIComponent(title)}`);
return response.data;
} catch (error) {
throw error;
}
};
// Example usage functions
const demonstrateMethods = () => {
console.log('=== Demonstrating Book Search Methods ===\n');
// 1. Testing callback method
console.log('1. Getting all books using callback:');
getAllBooksCallback((error, books) => {
if (error) {
console.error('Error:', error.message);
} else {
console.log(`Found ${books.length} books`);
console.log('First book:', books[0]?.title || 'No books found');
}
console.log('');
});
// 2. Testing Promise method
console.log('2. Searching by ISBN using Promises:');
searchByISBN('978-0-13-444432-1')
.then(book => {
console.log('Found book:', book.title);
console.log('Author:', book.author);
})
.catch(error => {
console.error('Error:', error.message);
})
.finally(() => {
console.log('');
});
// 3. Testing async/await for author search
const testAuthorSearch = async () => {
console.log('3. Searching by Author using async/await:');
try {
const books = await searchByAuthor('Robert C. Martin');
console.log(`Found ${books.length} books by Robert C. Martin`);
books.forEach(book => console.log(`- ${book.title}`));
} catch (error) {
console.error('Error:', error.message);
}
console.log('');
};
// 4. Testing async/await for title search
const testTitleSearch = async () => {
console.log('4. Searching by Title using async/await:');
try {
const books = await searchByTitle('Clean');
console.log(`Found ${books.length} books with "Clean" in title`);
books.forEach(book => console.log(`- ${book.title}`));
} catch (error) {
console.error('Error:', error.message);
}
console.log('');
};
// Execute async functions
setTimeout(testAuthorSearch, 1000);
setTimeout(testTitleSearch, 2000);
};
module.exports = {
getAllBooksCallback,
searchByISBN,
searchByAuthor,
searchByTitle,
demonstrateMethods
};
// Run demonstration if this file is executed directly
if (require.main === module) {
demonstrateMethods();
}