From: Ivo Barros Date: Wed, 21 Jun 2023 19:45:58 +0000 (+0100) Subject: Merge branch 'main' into main X-Git-Url: http://these/git/?a=commitdiff_plain;h=0e052602ad32e1f0d951845327446ccc2c091322;hp=-c;p=lemmy-ui.git Merge branch 'main' into main --- 0e052602ad32e1f0d951845327446ccc2c091322 diff --combined src/shared/utils.ts index d6946cc,33658d1..d42243d --- a/src/shared/utils.ts +++ b/src/shared/utils.ts @@@ -65,10 -65,10 +65,10 @@@ export const favIconPngUrl = "/static/a export const repoUrl = "https://github.com/LemmyNet"; export const joinLemmyUrl = "https://join-lemmy.org"; export const donateLemmyUrl = `${joinLemmyUrl}/donate`; - export const docsUrl = `${joinLemmyUrl}/docs/en/index.html`; - export const helpGuideUrl = `${joinLemmyUrl}/docs/en/users/01-getting-started.html`; // TODO find a way to redirect to the non-en folder - export const markdownHelpUrl = `${joinLemmyUrl}/docs/en/users/02-media.html`; - export const sortingHelpUrl = `${joinLemmyUrl}/docs/en/users/03-votes-and-ranking.html`; + export const docsUrl = `${joinLemmyUrl}/docs/index.html`; + export const helpGuideUrl = `${joinLemmyUrl}/docs/users/01-getting-started.html`; // TODO find a way to redirect to the non-en folder + export const markdownHelpUrl = `${joinLemmyUrl}/docs/users/02-media.html`; + export const sortingHelpUrl = `${joinLemmyUrl}/docs/users/03-votes-and-ranking.html`; export const archiveTodayUrl = "https://archive.today"; export const ghostArchiveUrl = "https://ghostarchive.org"; export const webArchiveUrl = "https://web.archive.org"; @@@ -853,28 -853,21 +853,28 @@@ export function commentsToFlatNodes(com } export function convertCommentSortType(sort: SortType): CommentSortType { - if ( - sort == "TopAll" || - sort == "TopDay" || - sort == "TopWeek" || - sort == "TopMonth" || - sort == "TopYear" - ) { - return "Top"; - } else if (sort == "New") { - return "New"; - } else if (sort == "Hot" || sort == "Active") { - return "Hot"; - } else { - return "Hot"; - } + switch(sort) { + case "TopAll": + case "TopHour": + case "TopSixHour": + case "TopTwelveHour": + case "TopDay": + case "TopWeek": + case "TopMonth": + case "TopYear": { + return "Top"; + } + case "New": { + return "New"; + } + case "Hot": + case "Active": { + return "Hot"; + } + default: { + return "Hot"; + } + } } export function buildCommentsTree(