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

Refactor getCommentContext #10512

Merged
merged 5 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion dotcom-rendering/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
"typescript": "5.3.3",
"typescript-json-schema": "0.58.1",
"unified": "10.1.2",
"valibot": "0.26.0",
"valibot": "0.28.1",
"web-vitals": "3.5.1",
"webpack": "5.89.0",
"webpack-assets-manifest": "5.1.0",
Expand Down
21 changes: 14 additions & 7 deletions dotcom-rendering/src/components/Discussion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import { palette, space } from '@guardian/source-foundations';
import { Button, SvgPlus } from '@guardian/source-react-components';
import { useEffect, useReducer } from 'react';
import { assertUnreachable } from '../lib/assert-unreachable';
import { getDiscussion, type reportAbuse } from '../lib/discussionApi';
import {
getCommentContext,
initFiltersFromLocalStorage,
} from '../lib/getCommentContext';
getDiscussion,
type reportAbuse,
} from '../lib/discussionApi';
import { initFiltersFromLocalStorage } from '../lib/discussionFilters';
import { palette as themePalette } from '../palette';
import type {
CommentForm,
Expand Down Expand Up @@ -480,10 +481,16 @@ export const Discussion = ({
remapToValidFilters(filters, hashCommentId),
)
.then((context) => {
dispatch({
type: 'updateCommentPage',
commentPage: context.page,
});
if (context.kind === 'ok') {
dispatch({
type: 'updateCommentPage',
commentPage: context.value.page,
});
} else {
console.error(
`getCommentContext - error: ${context.error}`,
);
}
})
.catch((e) =>
console.error(`getCommentContext - error: ${String(e)}`),
Expand Down
41 changes: 41 additions & 0 deletions dotcom-rendering/src/lib/discussionApi.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ import type {
} from '../types/discussion';
import {
discussionApiResponseSchema,
getCommentContextResponseSchema,
parseAbuseResponse,
parseCommentRepliesResponse,
parseCommentResponse,
pickResponseSchema,
postUsernameResponseSchema,
} from '../types/discussion';
import type { CommentContextType } from './discussionFilters';
import type { SignedInWithCookies, SignedInWithOkta } from './identity';
import { getOptionsHeadersWithOkta } from './identity';
import { fetchJSON } from './json';
Expand Down Expand Up @@ -436,3 +438,42 @@ export const getMoreResponses = async (

return parseCommentRepliesResponse(jsonResult.value);
};

const buildParams = (filters: FilterOptions): URLSearchParams => {
return new URLSearchParams({
// Frontend uses the 'recommendations' key to store this options but the api expects
// 'mostRecommended' so we have to map here to support both
orderBy:
filters.orderBy === 'recommendations'
? 'mostRecommended'
: filters.orderBy,
pageSize: String(filters.pageSize),
displayThreaded: String(
filters.threads === 'collapsed' || filters.threads === 'expanded',
),
});
};

export const getCommentContext = async (
ajaxUrl: string,
commentId: number,
filters: FilterOptions,
): Promise<Result<GetDiscussionError, CommentContextType>> => {
const url = joinUrl(ajaxUrl, 'comment', commentId.toString(), 'context');
const params = buildParams(filters);

const jsonResult = await fetchJSON(url + '?' + params.toString());

if (jsonResult.kind === 'error') return jsonResult;

const result = safeParse(getCommentContextResponseSchema, jsonResult.value);

if (!result.success) {
return error('ParsingError');
}
if (result.output.status !== 'ok') {
return error('ApiError');
}
DanielCliftonGuardian marked this conversation as resolved.
Show resolved Hide resolved

return ok(result.output);
};
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isOneOf, isString, joinUrl, storage } from '@guardian/libs';
import { isOneOf, isString, storage } from '@guardian/libs';

const orderByTypes = ['newest', 'oldest', 'recommendations'] as const;
const threadTypes = ['collapsed', 'expanded', 'unthreaded'] as const;
Expand All @@ -11,8 +11,8 @@ type PageSizeType = (typeof pageSizeTypes)[number];
/**
* @see http://discussion.guardianapis.com/discussion-api/comment/3519111/context
*/
type CommentContextType = {
status: 'ok' | 'error';
export type CommentContextType = {
status: 'ok';
commentId: number;
commentAncestorId: number;
discussionKey: string;
Expand Down Expand Up @@ -54,46 +54,3 @@ export const initFiltersFromLocalStorage = (): FilterOptions => {
pageSize,
};
};

const buildParams = (filters: FilterOptions) => {
return new URLSearchParams({
// Frontend uses the 'recommendations' key to store this options but the api expects
// 'mostRecommended' so we have to map here to support both
orderBy:
filters.orderBy === 'recommendations'
? 'mostRecommended'
: filters.orderBy,
pageSize: String(filters.pageSize),
displayThreaded: String(
filters.threads === 'collapsed' || filters.threads === 'expanded',
),
});
};

export const getCommentContext = async (
ajaxUrl: string,
commentId: number,
filters: FilterOptions,
): Promise<CommentContextType> => {
const url = joinUrl(ajaxUrl, 'comment', commentId.toString(), 'context');

const params = buildParams(filters);

return fetch(url + '?' + params.toString())
.then((response) => {
if (!response.ok) {
throw Error(
response.statusText ||
`getCommentContext | An api call returned HTTP status ${response.status}`,
);
}
return response;
})
.then((response) => response.json())
.catch((error) => {
window.guardian.modules.sentry.reportError(
error,
'get-comment-page',
);
});
};
12 changes: 12 additions & 0 deletions dotcom-rendering/src/types/discussion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,3 +389,15 @@ export type CommentForm = {
previewBody: string;
body: string;
};

export const getCommentContextResponseSchema = object({
status: literal('ok'),
commentId: number(),
commentAncestorId: number(),
discussionKey: string(),
discussionWebUrl: string(),
discussionApiUrl: string(),
orderBy: picklist(orderBy),
pageSize: picklist(pageSize),
page: number(),
});
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

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

Loading