Spaces:
Sleeping
Sleeping
File size: 10,730 Bytes
ca2c89c |
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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
// Main JavaScript for NLP Ultimate Tutorial
// Theme management
function toggleTheme() {
const currentTheme = document.documentElement.getAttribute('data-theme');
const newTheme = currentTheme === 'dark' ? 'light' : 'dark';
document.documentElement.setAttribute('data-theme', newTheme);
localStorage.setItem('theme', newTheme);
// Update theme icon
const themeIcon = document.getElementById('theme-icon');
if (themeIcon) {
themeIcon.className = newTheme === 'dark' ? 'fas fa-sun' : 'fas fa-moon';
}
}
// Initialize theme on page load
function initializeTheme() {
const savedTheme = localStorage.getItem('theme') || 'light';
document.documentElement.setAttribute('data-theme', savedTheme);
const themeIcon = document.getElementById('theme-icon');
if (themeIcon) {
themeIcon.className = savedTheme === 'dark' ? 'fas fa-sun' : 'fas fa-moon';
}
}
// Loading state management
function showLoading(elementId) {
const element = document.getElementById(elementId);
if (element) {
element.innerHTML = `
<div class="text-center py-4">
<div class="spinner-border text-primary" role="status">
<span class="visually-hidden">Loading...</span>
</div>
<p class="mt-2">Processing your request...</p>
</div>
`;
}
}
function hideLoading(elementId) {
const element = document.getElementById(elementId);
if (element && element.innerHTML.includes('spinner-border')) {
element.innerHTML = '';
}
}
// Error handling
function showError(message, elementId = 'resultsContainer') {
const element = document.getElementById(elementId);
if (element) {
element.innerHTML = `
<div class="alert alert-danger fade-in">
<i class="fas fa-exclamation-triangle"></i>
<strong>Error:</strong> ${message}
</div>
`;
}
}
// Success message
function showSuccess(message, elementId = 'resultsContainer') {
const element = document.getElementById(elementId);
if (element) {
element.innerHTML = `
<div class="alert alert-success fade-in">
<i class="fas fa-check-circle"></i>
<strong>Success:</strong> ${message}
</div>
`;
}
}
// API request helper
async function makeApiRequest(url, data, method = 'POST') {
try {
const response = await fetch(url, {
method: method,
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data)
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return await response.json();
} catch (error) {
console.error('API request failed:', error);
throw error;
}
}
// Text processing functions
function processText(endpoint, text, additionalData = {}) {
const data = { text: text, ...additionalData };
showLoading('resultsContainer');
makeApiRequest(endpoint, data)
.then(response => {
if (response.success) {
displayResults(response.result);
} else {
showError(response.error || 'An error occurred while processing the text');
}
})
.catch(error => {
showError('Failed to process text: ' + error.message);
})
.finally(() => {
hideLoading('resultsContainer');
});
}
// Display results
function displayResults(result) {
const container = document.getElementById('resultsContainer');
if (container) {
container.innerHTML = result;
container.classList.add('fade-in');
}
}
// Copy to clipboard
function copyToClipboard(text) {
navigator.clipboard.writeText(text).then(() => {
// Show temporary success message
const toast = document.createElement('div');
toast.className = 'alert alert-success position-fixed';
toast.style.cssText = 'top: 20px; right: 20px; z-index: 9999; min-width: 200px;';
toast.innerHTML = '<i class="fas fa-check"></i> Copied to clipboard!';
document.body.appendChild(toast);
setTimeout(() => {
toast.remove();
}, 2000);
}).catch(err => {
console.error('Failed to copy text: ', err);
});
}
// Download text as file
function downloadText(text, filename = 'nlp_result.txt') {
const blob = new Blob([text], { type: 'text/plain' });
const url = window.URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
window.URL.revokeObjectURL(url);
}
// Format JSON for display
function formatJSON(obj) {
return JSON.stringify(obj, null, 2);
}
// Create data table
function createDataTable(data, headers) {
let table = '<div class="table-responsive"><table class="table table-striped table-hover">';
// Header
if (headers) {
table += '<thead><tr>';
headers.forEach(header => {
table += `<th>${header}</th>`;
});
table += '</tr></thead>';
}
// Body
table += '<tbody>';
data.forEach(row => {
table += '<tr>';
if (Array.isArray(row)) {
row.forEach(cell => {
table += `<td>${cell}</td>`;
});
} else {
Object.values(row).forEach(value => {
table += `<td>${value}</td>`;
});
}
table += '</tr>';
});
table += '</tbody></table></div>';
return table;
}
// Create chart
function createChart(canvasId, type, data, options = {}) {
const ctx = document.getElementById(canvasId);
if (!ctx) return null;
const defaultOptions = {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'top',
}
}
};
const chartOptions = { ...defaultOptions, ...options };
return new Chart(ctx, {
type: type,
data: data,
options: chartOptions
});
}
// Smooth scroll to element
function scrollToElement(elementId) {
const element = document.getElementById(elementId);
if (element) {
element.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
}
// Debounce function for input handling
function debounce(func, wait) {
let timeout;
return function executedFunction(...args) {
const later = () => {
clearTimeout(timeout);
func(...args);
};
clearTimeout(timeout);
timeout = setTimeout(later, wait);
};
}
// Throttle function for scroll handling
function throttle(func, limit) {
let inThrottle;
return function() {
const args = arguments;
const context = this;
if (!inThrottle) {
func.apply(context, args);
inThrottle = true;
setTimeout(() => inThrottle = false, limit);
}
};
}
// Local storage helpers
function saveToStorage(key, value) {
try {
localStorage.setItem(key, JSON.stringify(value));
} catch (error) {
console.error('Failed to save to localStorage:', error);
}
}
function loadFromStorage(key, defaultValue = null) {
try {
const item = localStorage.getItem(key);
return item ? JSON.parse(item) : defaultValue;
} catch (error) {
console.error('Failed to load from localStorage:', error);
return defaultValue;
}
}
// Session storage helpers
function saveToSession(key, value) {
try {
sessionStorage.setItem(key, JSON.stringify(value));
} catch (error) {
console.error('Failed to save to sessionStorage:', error);
}
}
function loadFromSession(key, defaultValue = null) {
try {
const item = sessionStorage.getItem(key);
return item ? JSON.parse(item) : defaultValue;
} catch (error) {
console.error('Failed to load from sessionStorage:', error);
return defaultValue;
}
}
// Initialize page
document.addEventListener('DOMContentLoaded', function() {
// Initialize theme
initializeTheme();
// Add fade-in animation to cards
const cards = document.querySelectorAll('.card');
cards.forEach((card, index) => {
card.style.animationDelay = `${index * 0.1}s`;
card.classList.add('fade-in');
});
// Add click handlers for copy buttons
document.addEventListener('click', function(e) {
if (e.target.classList.contains('copy-btn')) {
const text = e.target.getAttribute('data-copy');
if (text) {
copyToClipboard(text);
}
}
});
// Add click handlers for download buttons
document.addEventListener('click', function(e) {
if (e.target.classList.contains('download-btn')) {
const text = e.target.getAttribute('data-download');
const filename = e.target.getAttribute('data-filename') || 'nlp_result.txt';
if (text) {
downloadText(text, filename);
}
}
});
// Handle form submissions
const forms = document.querySelectorAll('form');
forms.forEach(form => {
form.addEventListener('submit', function(e) {
e.preventDefault();
// Handle form submission here
});
});
// Add tooltips
const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl);
});
});
// Export functions for global use
window.NLPUtils = {
toggleTheme,
showLoading,
hideLoading,
showError,
showSuccess,
makeApiRequest,
processText,
displayResults,
copyToClipboard,
downloadText,
formatJSON,
createDataTable,
createChart,
scrollToElement,
debounce,
throttle,
saveToStorage,
loadFromStorage,
saveToSession,
loadFromSession
};
|