mirror of
https://github.com/dergigi/boris.git
synced 2026-02-17 21:15:02 +01:00
- Fix empty catch blocks by adding explanatory comments - Remove unused variables or prefix with underscore - Remove orphaned object literals from removed console.log statements - Fix unnecessary dependency array entries - Ensure all empty code blocks have comments to satisfy eslint no-empty rule
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import { Highlight } from '../types/highlights'
|
|
|
|
export function normalizeUrl(url: string): string {
|
|
try {
|
|
const urlObj = new URL(url.startsWith('http') ? url : `https://${url}`)
|
|
return `${urlObj.hostname.replace(/^www\./, '')}${urlObj.pathname}`.replace(/\/$/, '').toLowerCase()
|
|
} catch {
|
|
return url.replace(/^https?:\/\//, '').replace(/^www\./, '').replace(/\/$/, '').toLowerCase()
|
|
}
|
|
}
|
|
|
|
export function filterHighlightsByUrl(highlights: Highlight[], selectedUrl: string | undefined): Highlight[] {
|
|
if (!selectedUrl || highlights.length === 0) {
|
|
return []
|
|
}
|
|
|
|
|
|
// For Nostr articles, we already fetched highlights specifically for this article
|
|
// So we don't need to filter them - they're all relevant
|
|
if (selectedUrl.startsWith('nostr:')) {
|
|
return highlights
|
|
}
|
|
|
|
// For web URLs, filter by URL matching
|
|
const normalizedSelected = normalizeUrl(selectedUrl)
|
|
|
|
const filtered = highlights.filter(h => {
|
|
if (!h.urlReference) {
|
|
return false
|
|
}
|
|
const normalizedRef = normalizeUrl(h.urlReference)
|
|
const matches = normalizedSelected === normalizedRef ||
|
|
normalizedSelected.includes(normalizedRef) ||
|
|
normalizedRef.includes(normalizedSelected)
|
|
|
|
if (matches) {
|
|
// URLs match
|
|
} else {
|
|
// URLs do not match
|
|
}
|
|
|
|
return matches
|
|
})
|
|
|
|
return filtered
|
|
}
|