doesitarm/src/components/listing-parts/last-updated.astro
2022-07-02 14:34:07 -05:00

37 lines
1 KiB
Text

---
import { ensureListingDetails } from '~/helpers/listing-page.js'
import { makeLastUpdatedFriendly } from '~/helpers/parse-date.js'
const {
listing
} = Astro.props
const details = ensureListingDetails( listing )
const lastUpdatedFriendly = makeLastUpdatedFriendly( listing.lastUpdated )
const gameReportUrl = 'https://forms.gle/29GWt85i1G1L7Ttj8'
const defaultReportUrl = `https://github.com/ThatGuySam/doesitarm/issues?q=is%3Aissue+${ listing.name }`
const reportUrl = details.isGame ? gameReportUrl : defaultReportUrl
---
<div class="report-update text-xs text-center w-full shadow-none py-24">
{ lastUpdatedFriendly !== null &&
<div>
<time
datetime={ listing.lastUpdated.raw }
>
🕐 Last Updated { lastUpdatedFriendly }
</time>
</div>
}
<!-- https://eric.blog/2016/01/08/prefilling-github-issues/ -->
<a
href={ reportUrl }
target="_blank"
class="underline"
rel="noopener"
>Report Update</a>
</div>