Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(twas): refracto to use intl api #974

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion frontend/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"@std/front-matter": "jsr:@std/front-matter@1",
"@std/semver": "jsr:@std/semver@1",

"twas": "npm:twas@^2.1.3",
"$imagescript": "https://deno.land/x/[email protected]/mod.ts",

"@deno/gfm": "jsr:@deno/[email protected]",
Expand Down
9 changes: 2 additions & 7 deletions frontend/deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frontend/islands/admin/ScopeEdit.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2024 the JSR authors. All rights reserved. MIT license.
import type { FullScope } from "../../utils/api_types.ts";
import { useState } from "preact/hooks";
import twas from "twas";
import { timeAgo } from "../../utils/timeAgo.ts";
import { api, path } from "../../utils/api.ts";
import { TableData, TableRow } from "../../components/Table.tsx";

Expand Down Expand Up @@ -71,7 +71,7 @@ export default function AdminScopeEdit({ scope }: { scope: FullScope }) {
: publishAttemptsPerWeekLimit}
</TableData>
<TableData title={new Date(scope.createdAt).toISOString().slice(0, 10)}>
{twas(new Date(scope.createdAt).getTime())}
{timeAgo(new Date(scope.createdAt))}
</TableData>
<TableData align="right">
{edit
Expand Down
4 changes: 2 additions & 2 deletions frontend/islands/admin/UserEdit.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2024 the JSR authors. All rights reserved. MIT license.
import { useState } from "preact/hooks";
import twas from "twas";
import { timeAgo } from "../../utils/timeAgo.ts";
import { FullUser } from "../../utils/api_types.ts";
import { api, path } from "../../utils/api.ts";
import { TableData, TableRow } from "../../components/Table.tsx";
Expand Down Expand Up @@ -68,7 +68,7 @@ export default function UserEdit({ user }: { user: FullUser }) {
: String(isBlocked)}
</TableData>
<TableData title={new Date(user.createdAt).toISOString().slice(0, 10)}>
{twas(new Date(user.createdAt).getTime())}
{timeAgo(new Date(user.createdAt))}
</TableData>
<TableData class="relative whitespace-nowrap space-x-3 py-4 pl-3 pr-4 text-right text-sm font-semibold sm:pr-6">
{edit
Expand Down
4 changes: 2 additions & 2 deletions frontend/islands/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { Package, Scope } from "../utils/api_types.ts";
import { api, path } from "../utils/api.ts";
import { ComponentChildren } from "preact";
import twas from "twas";
import { timeAgo } from "../utils/timeAgo.ts";

interface IconColorProps {
done: Signal<unknown>;
Expand Down Expand Up @@ -419,7 +419,7 @@ export function CreatePackage({ scope, name, pkg, fromCli }: {
</p>
<p>{pkg.value.description || <i>No description</i>}</p>
<p class="text-jsr-gray-500">
Created {twas(new Date(pkg.value.createdAt).getTime())}.
Created {timeAgo(pkg.value.createdAt)}.
</p>
{fromCli && (
<p class="mt-2 text-jsr-gray-500">
Expand Down
4 changes: 2 additions & 2 deletions frontend/routes/account/(_components)/AccountLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2024 the JSR authors. All rights reserved. MIT license.
import { ComponentChildren } from "preact";
import twas from "twas";
import { timeAgo } from "../../../utils/timeAgo.ts";
import { AccountNav, AccountNavTab } from "./AccountNav.tsx";
import { FullUser, User } from "../../../utils/api_types.ts";
import { GitHubUserLink } from "../../../islands/GithubUserLink.tsx";
Expand All @@ -25,7 +25,7 @@ export function AccountLayout({ user, active, children }: AccountLayoutProps) {
{user.name}
</h1>
<p class="text-xs text-jsr-gray-600">
Created account {twas(new Date(user.createdAt).getTime())}
Created account {timeAgo(new Date(user.createdAt))}
</p>
<p class="text-base mt-2">
<GitHubUserLink user={user} />
Expand Down
14 changes: 7 additions & 7 deletions frontend/routes/account/tokens/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { define } from "../../../util.ts";
import { path } from "../../../utils/api.ts";
import { Token } from "../../../utils/api_types.ts";
import { AccountLayout } from "../(_components)/AccountLayout.tsx";
import twas from "twas";
import { timeAgo } from "../../../utils/timeAgo.ts";
import { RevokeToken } from "./(_islands)/RevokeToken.tsx";
import TbPlus from "@preact-icons/tb/TbPlus";

Expand Down Expand Up @@ -105,7 +105,7 @@ function PersonalTokenRow({ token }: { token: Token }) {
<b>Active</b> {expiresAt === null
? "forever"
: `– expires ${
twas(new Date().getTime(), expiresAt.getTime()).replace(
timeAgo(expiresAt).replace(
"ago",
"from now",
)
Expand All @@ -114,12 +114,12 @@ function PersonalTokenRow({ token }: { token: Token }) {
)
: (
<span class="text-red-600">
<b>Inactive</b> - expired {twas(expiresAt.getTime())}
<b>Inactive</b> - expired {timeAgo(expiresAt)}
</span>
)}
</p>
<p class="text-sm sm:text-right">
Created {twas(new Date(token.createdAt).getTime())}
Created {timeAgo(new Date(token.createdAt))}
</p>
</div>
<p class="text-sm text-jsr-gray-600">
Expand Down Expand Up @@ -160,7 +160,7 @@ function SessionRow({ token }: { token: Token }) {
<b>Active</b> {expiresAt === null
? "forever"
: `– expires ${
twas(new Date().getTime(), expiresAt.getTime()).replace(
timeAgo(expiresAt).replace(
"ago",
"from now",
)
Expand All @@ -169,7 +169,7 @@ function SessionRow({ token }: { token: Token }) {
)
: (
<span class="text-red-600">
<b>Inactive</b> - expired {twas(expiresAt.getTime())}
<b>Inactive</b> - expired {timeAgo(expiresAt)}
</span>
)}

Expand All @@ -178,7 +178,7 @@ function SessionRow({ token }: { token: Token }) {
</div>
<div>
<p class="text-sm sm:text-right">
Created {twas(new Date(token.createdAt).getTime())}
Created {timeAgo(new Date(token.createdAt))}
</p>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions frontend/routes/admin/publishingTasks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { AdminNav } from "./(_components)/AdminNav.tsx";
import { path } from "../../utils/api.ts";
import { List, PublishingTask } from "../../utils/api_types.ts";
import { URLQuerySearch } from "../../components/URLQuerySearch.tsx";
import twas from "twas";
import { timeAgo } from "../../utils/timeAgo.ts";
import PublishingTaskRequeue from "../../islands/PublishingTaskRequeue.tsx";

export default define.page<typeof handler>(function PublishingTasks({
Expand Down Expand Up @@ -77,15 +77,15 @@ export default define.page<typeof handler>(function PublishingTasks({
10,
)}
>
{twas(new Date(publishingTask.createdAt).getTime())}
{timeAgo(new Date(publishingTask.createdAt))}
</TableData>
<TableData
title={new Date(publishingTask.updatedAt).toISOString().slice(
0,
10,
)}
>
{twas(new Date(publishingTask.updatedAt).getTime())}
{timeAgo(new Date(publishingTask.updatedAt))}
</TableData>
<TableData>
<PublishingTaskRequeue publishingTask={publishingTask} />
Expand Down
4 changes: 2 additions & 2 deletions frontend/routes/package/(_components)/PackageHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
TbRosetteDiscountCheck,
} from "@preact-icons/tb";
import { Tooltip } from "../../../components/Tooltip.tsx";
import twas from "twas";
import { timeAgo } from "../../../utils/timeAgo.ts";
import { greaterThan, parse } from "@std/semver";

interface PackageHeaderProps {
Expand Down Expand Up @@ -207,7 +207,7 @@ export function PackageHeader({
)}
>
{`${
twas(new Date(selectedVersion.createdAt).getTime())
timeAgo(new Date(selectedVersion.createdAt))
} (${selectedVersion.version})`}
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions frontend/routes/package/og.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { HttpError, RouteConfig } from "fresh";
import { Image } from "$imagescript";
import twas from "twas";
import { timeAgo } from "../../utils/timeAgo.ts";

import { packageDataWithVersion } from "../../utils/data.ts";
import { define } from "../../util.ts";
Expand Down Expand Up @@ -263,7 +263,7 @@ export const handler = define.handlers({
const publishDateText = Image.renderText(
dmmonoFont,
25,
twas(new Date(selectedVersion.createdAt).getTime()),
timeAgo(new Date(selectedVersion.createdAt)),
COLOR_GRAY,
);
const result = new Image(
Expand Down
7 changes: 3 additions & 4 deletions frontend/routes/package/versions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type {
} from "../../utils/api_types.ts";
import { define } from "../../util.ts";
import { compare, equals, format, lessThan, parse, SemVer } from "@std/semver";
import twas from "twas";
import { timeAgo } from "../../utils/timeAgo.ts";
import { packageData } from "../../utils/data.ts";
import { PackageHeader } from "./(_components)/PackageHeader.tsx";
import { PackageNav, Params } from "./(_components)/PackageNav.tsx";
Expand Down Expand Up @@ -239,7 +239,7 @@ function Version({
{" "}
</>
)}
{twas(new Date(version.createdAt).getTime())}
{timeAgo(new Date(version.createdAt))}
</div>
)}
</div>
Expand Down Expand Up @@ -268,8 +268,7 @@ function Version({
: <TbClockHour3 class="size-4 stroke-blue-500 stroke-2" />}
<span>
{ordinalNumber(tasks.length - i)} publishing attempt{" "}
{statusVerb[task.status]}{" "}
{twas(new Date(task.updatedAt).getTime())}
{statusVerb[task.status]} {timeAgo(new Date(task.updatedAt))}
</span>
<a href={`/status/${task.id}`} class="link justify-self-end z-20">
Details
Expand Down
4 changes: 2 additions & 2 deletions frontend/routes/status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { path } from "../utils/api.ts";
import { packageData } from "../utils/data.ts";
import { PackageHeader } from "./package/(_components)/PackageHeader.tsx";
import { PackageNav } from "./package/(_components)/PackageNav.tsx";
import twas from "twas";
import { timeAgo } from "../utils/timeAgo.ts";
import PublishingTaskRequeue from "../islands/PublishingTaskRequeue.tsx";
import { TbAlertCircle, TbCheck, TbClockHour3 } from "@preact-icons/tb";
import { scopeIAM } from "../utils/iam.ts";
Expand Down Expand Up @@ -48,7 +48,7 @@ export default define.page<typeof handler>(function PackageListPage({
</p>
<p>
<span class="font-semibold">Created:</span>{" "}
{twas(new Date(data.publishingTask.createdAt).getTime())}
{timeAgo(new Date(data.publishingTask.createdAt))}
</p>
{data.publishingTask.userId && (
<p>
Expand Down
24 changes: 24 additions & 0 deletions frontend/utils/timeAgo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2024 the JSR authors. All rights reserved. MIT license.
export function timeAgo(date: Date | string): string {
const now = new Date();
const past = new Date(date);
const diff = Math.abs(now.getTime() - past.getTime());

const duration = {
years: Math.floor(diff / (1000 * 60 * 60 * 24 * 365)),
months: Math.floor(
(diff % (1000 * 60 * 60 * 24 * 365)) / (1000 * 60 * 60 * 24 * 30),
),
days: Math.floor(
(diff % (1000 * 60 * 60 * 24 * 30)) / (1000 * 60 * 60 * 24),
),
hours: Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)),
minutes: Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60)),
seconds: Math.floor((diff % (1000 * 60)) / 1000),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't think going into seconds is useful

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the previous implementation take care of seconds so I support it. But idk if needed

};

// Force english because JSR is an English-only project
// @ts-ignore - TS doesn't know about this API yet
const formatter = new Intl.DurationFormat("en", { style: "long" });
return formatter.format(duration) + " ago";
}