1
0
Fork 0
forked from Mirrors/gomuks

web/timeline: add ands to power level and pinned event diffs

This commit is contained in:
Tulir Asokan 2024-10-28 01:47:31 +02:00
parent 4bfa665937
commit 4fa6c83415
3 changed files with 35 additions and 4 deletions

View file

@ -15,17 +15,18 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import { PinnedEventsContent } from "@/api/types"
import { listDiff } from "@/util/diff.ts"
import { oxfordHumanJoin } from "@/util/join.ts"
import EventContentProps from "./props.ts"
function renderPinChanges(content: PinnedEventsContent, prevContent?: PinnedEventsContent): string {
const { added, removed } = listDiff(content.pinned ?? [], prevContent?.pinned ?? [])
if (added.length) {
if (removed.length) {
return `pinned ${added.join(", ")} and unpinned ${removed.join(", ")}`
return `pinned ${oxfordHumanJoin(added)} and unpinned ${oxfordHumanJoin(removed)}`
}
return `pinned ${added.join(", ")}`
return `pinned ${oxfordHumanJoin(added)}`
} else if (removed.length) {
return `unpinned ${removed.join(", ")}`
return `unpinned ${oxfordHumanJoin(removed)}`
} else {
return "sent a no-op pin event"
}

View file

@ -15,6 +15,7 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import { PowerLevelEventContent } from "@/api/types"
import { objectDiff } from "@/util/diff.ts"
import { humanJoin } from "@/util/join.ts"
import EventContentProps from "./props.ts"
function intDiff(messageParts: TemplateStringsArray, oldVal: number, newVal: number): string | null {
@ -67,7 +68,7 @@ const PowerLevelBody = ({ event, sender }: EventContentProps) => {
const content = event.content as PowerLevelEventContent
const prevContent = event.unsigned.prev_content as PowerLevelEventContent | undefined
return <div className="power-level-body">
{sender?.content.displayname ?? event.sender} {renderPowerLevels(content, prevContent).join(", ")}
{sender?.content.displayname ?? event.sender} {humanJoin(renderPowerLevels(content, prevContent))}
</div>
}

29
web/src/util/join.ts Normal file
View file

@ -0,0 +1,29 @@
// gomuks - A Matrix client written in Go.
// Copyright (C) 2024 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
export function humanJoin(arr: string[], sep: string = ", ", lastSep: string = " and "): string {
if (arr.length === 0) {
return ""
}
if (arr.length === 1) {
return arr[0]
}
if (arr.length === 2) {
return arr.join(lastSep)
}
return arr.slice(0, -1).join(sep) + lastSep + arr[arr.length - 1]
}
export const oxfordHumanJoin = (arr: string[]) => humanJoin(arr, ", ", ", and ")