make notifications timing-aware and clearer (#3)
* feat: enrich notification timing context * fix: improve broadcast time handling
This commit is contained in:
@@ -4,6 +4,7 @@ import "mal/internal/jikan"
|
|||||||
import "mal/internal/database"
|
import "mal/internal/database"
|
||||||
import "mal/internal/shared/ui"
|
import "mal/internal/shared/ui"
|
||||||
import "fmt"
|
import "fmt"
|
||||||
|
import "strings"
|
||||||
|
|
||||||
type WatchingAnimeWithDetails struct {
|
type WatchingAnimeWithDetails struct {
|
||||||
Entry database.GetWatchingAnimeRow
|
Entry database.GetWatchingAnimeRow
|
||||||
@@ -102,6 +103,14 @@ templ UpcomingSeasonCard(item database.GetUpcomingSeasonsRow) {
|
|||||||
<div class="notification-title">
|
<div class="notification-title">
|
||||||
{ displaySeasonTitle(item) }
|
{ displaySeasonTitle(item) }
|
||||||
</div>
|
</div>
|
||||||
|
<div class="notification-meta">
|
||||||
|
if item.Status.Valid {
|
||||||
|
<span class="notification-muted">{ seasonStatusLabel(item.Status.String) }</span>
|
||||||
|
}
|
||||||
|
if strings.TrimSpace(item.PrequelTitle) != "" {
|
||||||
|
<span class="notification-muted">{ fmt.Sprintf("Sequel to %s", item.PrequelTitle) }</span>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -124,7 +133,8 @@ templ NotificationCard(item WatchingAnimeWithDetails) {
|
|||||||
</div>
|
</div>
|
||||||
<div class="notification-meta">
|
<div class="notification-meta">
|
||||||
if item.Anime.Broadcast.String != "" {
|
if item.Anime.Broadcast.String != "" {
|
||||||
<span class="notification-broadcast" data-jst-text={ item.Anime.Broadcast.String }>{ item.Anime.Broadcast.String }</span>
|
<span class="notification-broadcast" data-jst-text={ item.Anime.Broadcast.String } data-broadcast-day={ item.Anime.Broadcast.Day } data-broadcast-time={ item.Anime.Broadcast.Time } data-broadcast-timezone={ item.Anime.Broadcast.Timezone }>{ item.Anime.Broadcast.String }</span>
|
||||||
|
<span class="notification-next-airing" data-next-airing="pending">Calculating next episode time...</span>
|
||||||
}
|
}
|
||||||
if item.Anime.Episodes > 0 {
|
if item.Anime.Episodes > 0 {
|
||||||
<span class="notification-progress">
|
<span class="notification-progress">
|
||||||
@@ -147,3 +157,20 @@ templ NotificationCard(item WatchingAnimeWithDetails) {
|
|||||||
func displayTitle(entry database.GetWatchingAnimeRow) string {
|
func displayTitle(entry database.GetWatchingAnimeRow) string {
|
||||||
return database.DisplayTitle(entry.TitleEnglish, entry.TitleJapanese, entry.TitleOriginal)
|
return database.DisplayTitle(entry.TitleEnglish, entry.TitleJapanese, entry.TitleOriginal)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func seasonStatusLabel(status string) string {
|
||||||
|
statusText := strings.TrimSpace(status)
|
||||||
|
if statusText == "" {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
if statusText == "Currently Airing" {
|
||||||
|
return "Airing now"
|
||||||
|
}
|
||||||
|
|
||||||
|
if statusText == "Not yet aired" {
|
||||||
|
return "Upcoming"
|
||||||
|
}
|
||||||
|
|
||||||
|
return statusText
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,7 +1,56 @@
|
|||||||
;(function () {
|
;(function () {
|
||||||
const jstOffsetMinutes = 9 * 60
|
const jstOffsetMinutes = 9 * 60
|
||||||
|
|
||||||
|
const parseBroadcastTime = (value) => {
|
||||||
|
if (!value || typeof value !== 'string') {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
const match = value.trim().match(/^(\d{1,2}):(\d{2})$/)
|
||||||
|
if (!match) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
const hour = Number.parseInt(match[1], 10)
|
||||||
|
const minute = Number.parseInt(match[2], 10)
|
||||||
|
if (Number.isNaN(hour) || Number.isNaN(minute) || hour < 0 || hour > 23 || minute < 0 || minute > 59) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return { hour, minute }
|
||||||
|
}
|
||||||
|
|
||||||
|
const isJstTimezone = (timezone) => {
|
||||||
|
if (!timezone) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
const normalized = timezone.trim().toLowerCase()
|
||||||
|
return normalized === 'asia/tokyo' || normalized === 'jst'
|
||||||
|
}
|
||||||
|
|
||||||
|
const parseFromStructuredAttrs = (node) => {
|
||||||
|
const day = node.getAttribute('data-broadcast-day')
|
||||||
|
const time = node.getAttribute('data-broadcast-time')
|
||||||
|
const timezone = node.getAttribute('data-broadcast-timezone')
|
||||||
|
|
||||||
|
if (!day || !time || !isJstTimezone(timezone)) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
const parsedTime = parseBroadcastTime(time)
|
||||||
|
if (!parsedTime) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return { day: day.trim(), hour: parsedTime.hour, minute: parsedTime.minute }
|
||||||
|
}
|
||||||
|
|
||||||
const parseBroadcast = (text) => {
|
const parseBroadcast = (text) => {
|
||||||
|
if (!text || typeof text !== 'string') {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
const match = text.match(/^(.*) at (\d{1,2}):(\d{2}) \(JST\)$/i)
|
const match = text.match(/^(.*) at (\d{1,2}):(\d{2}) \(JST\)$/i)
|
||||||
if (!match) {
|
if (!match) {
|
||||||
return null
|
return null
|
||||||
@@ -15,6 +64,10 @@
|
|||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hour < 0 || hour > 23 || minute < 0 || minute > 59) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
return { day, hour, minute }
|
return { day, hour, minute }
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -69,43 +122,117 @@
|
|||||||
return `${localDay} at ${time} (Local)`
|
return `${localDay} at ${time} (Local)`
|
||||||
}
|
}
|
||||||
|
|
||||||
const updateNode = (node, localOffsetMinutes) => {
|
const nextAiringUTC = (parsed) => {
|
||||||
const source = node.getAttribute('data-jst-text')
|
const targetDay = normalizeDay(parsed.day)
|
||||||
if (!source) {
|
if (targetDay === null) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
const now = new Date()
|
||||||
|
const jstNow = new Date(now.getTime() + jstOffsetMinutes * 60 * 1000)
|
||||||
|
|
||||||
|
const currentDay = jstNow.getUTCDay()
|
||||||
|
const currentMinuteOfDay = jstNow.getUTCHours() * 60 + jstNow.getUTCMinutes()
|
||||||
|
const targetMinuteOfDay = parsed.hour * 60 + parsed.minute
|
||||||
|
|
||||||
|
let dayDelta = (targetDay - currentDay + 7) % 7
|
||||||
|
if (dayDelta === 0 && targetMinuteOfDay <= currentMinuteOfDay) {
|
||||||
|
dayDelta = 7
|
||||||
|
}
|
||||||
|
|
||||||
|
const minuteDelta = dayDelta * 1440 + (targetMinuteOfDay - currentMinuteOfDay)
|
||||||
|
return new Date(now.getTime() + minuteDelta * 60 * 1000)
|
||||||
|
}
|
||||||
|
|
||||||
|
const relativeText = (target) => {
|
||||||
|
const diffMs = target.getTime() - Date.now()
|
||||||
|
if (diffMs <= 0) {
|
||||||
|
return 'soon'
|
||||||
|
}
|
||||||
|
|
||||||
|
const minutes = Math.ceil(diffMs / 60000)
|
||||||
|
if (minutes < 60) {
|
||||||
|
return formatRelative(minutes, 'minute')
|
||||||
|
}
|
||||||
|
|
||||||
|
const hours = Math.ceil(minutes / 60)
|
||||||
|
if (hours < 36) {
|
||||||
|
return formatRelative(hours, 'hour')
|
||||||
|
}
|
||||||
|
|
||||||
|
const days = Math.ceil(hours / 24)
|
||||||
|
return formatRelative(days, 'day')
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatRelative = (value, unit) => {
|
||||||
|
if (typeof Intl !== 'undefined' && typeof Intl.RelativeTimeFormat === 'function') {
|
||||||
|
const formatter = new Intl.RelativeTimeFormat(undefined, { numeric: 'auto' })
|
||||||
|
return formatter.format(value, unit)
|
||||||
|
}
|
||||||
|
|
||||||
|
const suffix = value === 1 ? unit : `${unit}s`
|
||||||
|
return `in ${value} ${suffix}`
|
||||||
|
}
|
||||||
|
|
||||||
|
const localDateTimeText = (date) => {
|
||||||
|
const formatter = new Intl.DateTimeFormat(undefined, {
|
||||||
|
weekday: 'short',
|
||||||
|
hour: '2-digit',
|
||||||
|
minute: '2-digit',
|
||||||
|
})
|
||||||
|
return formatter.format(date)
|
||||||
|
}
|
||||||
|
|
||||||
|
const updateNextAiring = (node, parsed) => {
|
||||||
|
const card = node.closest('.notification-content')
|
||||||
|
if (!card) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const parsed = parseBroadcast(source)
|
const nextNode = card.querySelector('[data-next-airing]')
|
||||||
|
if (!(nextNode instanceof HTMLElement)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const nextDate = nextAiringUTC(parsed)
|
||||||
|
if (!nextDate) {
|
||||||
|
nextNode.remove()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
nextNode.textContent = `Next episode ${relativeText(nextDate)} (${localDateTimeText(nextDate)})`
|
||||||
|
}
|
||||||
|
|
||||||
|
const updateNode = (node, localOffsetMinutes) => {
|
||||||
|
const card = node.closest('.notification-content')
|
||||||
|
const nextNode = card ? card.querySelector('[data-next-airing]') : null
|
||||||
|
|
||||||
|
const structured = parseFromStructuredAttrs(node)
|
||||||
|
const source = node.getAttribute('data-jst-text')
|
||||||
|
const parsed = structured || parseBroadcast(source)
|
||||||
if (!parsed) {
|
if (!parsed) {
|
||||||
|
if (nextNode instanceof HTMLElement) {
|
||||||
|
nextNode.remove()
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const converted = convertToLocal(parsed, localOffsetMinutes)
|
const converted = convertToLocal(parsed, localOffsetMinutes)
|
||||||
if (!converted) {
|
if (!converted) {
|
||||||
|
if (nextNode instanceof HTMLElement) {
|
||||||
|
nextNode.remove()
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
node.textContent = converted
|
node.textContent = converted
|
||||||
}
|
updateNextAiring(node, parsed)
|
||||||
|
|
||||||
const hideJstSuffix = () => {
|
|
||||||
document.querySelectorAll('.notification-broadcast, [data-jst-text]').forEach((node) => {
|
|
||||||
if (!(node instanceof HTMLElement)) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
const text = node.textContent || ''
|
|
||||||
if (text.includes('(JST)')) {
|
|
||||||
node.textContent = text.replace(/\s*\(JST\)/gi, ' (Local)')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const updateAll = () => {
|
const updateAll = () => {
|
||||||
const localOffsetMinutes = -new Date().getTimezoneOffset()
|
const localOffsetMinutes = -new Date().getTimezoneOffset()
|
||||||
const nodes = document.querySelectorAll('[data-jst-text]')
|
const nodes = document.querySelectorAll('[data-jst-text]')
|
||||||
nodes.forEach((node) => updateNode(node, localOffsetMinutes))
|
nodes.forEach((node) => updateNode(node, localOffsetMinutes))
|
||||||
hideJstSuffix()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', updateAll)
|
document.addEventListener('DOMContentLoaded', updateAll)
|
||||||
|
|||||||
Reference in New Issue
Block a user