Run prettier

This commit is contained in:
dangered wolf 2024-04-23 20:06:35 -04:00
parent d780fa5055
commit cdbcd65914
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -5,32 +5,35 @@ import { Experiment, experimentCheck } from '../../experiments';
import { isGraphQLTwitterStatus } from '../../helpers/graphql'; import { isGraphQLTwitterStatus } from '../../helpers/graphql';
import { Context } from 'hono'; import { Context } from 'hono';
const writeDataPoint = (c: Context, language: string | undefined, nsfw: boolean | null, returnCode: string, flags?: InputFlags) => { const writeDataPoint = (
c: Context,
language: string | undefined,
nsfw: boolean | null,
returnCode: string,
flags?: InputFlags
) => {
console.log('Writing data point...'); console.log('Writing data point...');
if (typeof c.env?.AnalyticsEngine !== 'undefined') { if (typeof c.env?.AnalyticsEngine !== 'undefined') {
const flagString = Object.keys(flags || {}) const flagString =
// @ts-expect-error - TypeScript doesn't like iterating over the keys, but that's OK Object.keys(flags || {})
.filter(flag => flags?.[flag])[0] || 'standard'; // @ts-expect-error - TypeScript doesn't like iterating over the keys, but that's OK
.filter(flag => flags?.[flag])[0] || 'standard';
console.log(flagString) console.log(flagString);
c.env?.AnalyticsEngine.writeDataPoint({ c.env?.AnalyticsEngine.writeDataPoint({
blobs: [ blobs: [
c.req.raw.cf?.colo as string, /* Datacenter location */ c.req.raw.cf?.colo as string /* Datacenter location */,
c.req.raw.cf?.country as string, /* Country code */ c.req.raw.cf?.country as string /* Country code */,
c.req.header('user-agent') ?? '', /* User agent (for aggregating bots calling) */ c.req.header('user-agent') ?? '' /* User agent (for aggregating bots calling) */,
returnCode, /* Return code */ returnCode /* Return code */,
flagString, /* Type of request */ flagString /* Type of request */,
language ?? '', /* For translate feature */ language ?? '' /* For translate feature */
], ],
doubles: [ doubles: [nsfw ? 1 : 0 /* NSFW media = 1, No NSFW Media = 0 */]
nsfw ? 1 : 0 /* NSFW media = 1, No NSFW Media = 0 */
]
}); });
} }
} };
export const fetchTweetDetail = async ( export const fetchTweetDetail = async (
c: Context, c: Context,