From dd214b550223846461865043d586be15d25e9b54 Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 25 Mar 2025 12:56:03 -0700 Subject: [PATCH] reactions operation --- src/index.tsx | 84 ++++++++++++++++++++++++++++++++++++ src/operations/feed.gql | 7 +++ src/operations/reactions.gql | 3 ++ 3 files changed, 94 insertions(+) create mode 100644 src/operations/reactions.gql diff --git a/src/index.tsx b/src/index.tsx index 375d86e..db71f81 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3210,6 +3210,12 @@ export type GetFeedQuery = { status: ProcessingStatusEnum; }>; } | null; + reactions: Array<{ + __typename?: "ReactionGQL"; + videoId: number; + reaction: ReactionEnum; + user: { __typename?: "UserGQL"; id: number }; + }>; }>; pageInfo: { __typename?: "PageInfoGQL"; @@ -3263,6 +3269,12 @@ export type VideoCardFieldsFragment = { status: ProcessingStatusEnum; }>; } | null; + reactions: Array<{ + __typename?: "ReactionGQL"; + videoId: number; + reaction: ReactionEnum; + user: { __typename?: "UserGQL"; id: number }; + }>; }; export type GetVideoFeedQueryVariables = Exact<{ @@ -3325,6 +3337,12 @@ export type GetVideoFeedQuery = { status: ProcessingStatusEnum; }>; } | null; + reactions: Array<{ + __typename?: "ReactionGQL"; + videoId: number; + reaction: ReactionEnum; + user: { __typename?: "UserGQL"; id: number }; + }>; }>; pageInfo: { __typename?: "PageInfoGQL"; @@ -3528,6 +3546,16 @@ export type GetMedalsQuery = { }; }; +export type ReactToVideoMutationVariables = Exact<{ + videoId: Scalars["Int"]["input"]; + reaction?: InputMaybe; +}>; + +export type ReactToVideoMutation = { + __typename?: "Mutation"; + reactToVideo: boolean; +}; + export type GetRunsForHighlightsQueryVariables = Exact<{ filterInput: RunFilterInput; runIds?: InputMaybe | Scalars["Int"]["input"]>; @@ -4996,6 +5024,13 @@ export const VideoCardFieldsFragmentDoc = gql` status } } + reactions { + videoId + user { + id + } + reaction + } } `; export const MedalFieldsFragmentDoc = gql` @@ -5921,6 +5956,55 @@ export type GetMedalsQueryResult = Apollo.QueryResult< GetMedalsQuery, GetMedalsQueryVariables >; +export const ReactToVideoDocument = gql` + mutation ReactToVideo($videoId: Int!, $reaction: ReactionEnum) { + reactToVideo(videoId: $videoId, reaction: $reaction) + } +`; +export type ReactToVideoMutationFn = Apollo.MutationFunction< + ReactToVideoMutation, + ReactToVideoMutationVariables +>; + +/** + * __useReactToVideoMutation__ + * + * To run a mutation, you first call `useReactToVideoMutation` within a React component and pass it any options that fit your needs. + * When your component renders, `useReactToVideoMutation` returns a tuple that includes: + * - A mutate function that you can call at any time to execute the mutation + * - An object with fields that represent the current status of the mutation's execution + * + * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; + * + * @example + * const [reactToVideoMutation, { data, loading, error }] = useReactToVideoMutation({ + * variables: { + * videoId: // value for 'videoId' + * reaction: // value for 'reaction' + * }, + * }); + */ +export function useReactToVideoMutation( + baseOptions?: Apollo.MutationHookOptions< + ReactToVideoMutation, + ReactToVideoMutationVariables + >, +) { + const options = { ...defaultOptions, ...baseOptions }; + return Apollo.useMutation< + ReactToVideoMutation, + ReactToVideoMutationVariables + >(ReactToVideoDocument, options); +} +export type ReactToVideoMutationHookResult = ReturnType< + typeof useReactToVideoMutation +>; +export type ReactToVideoMutationResult = + Apollo.MutationResult; +export type ReactToVideoMutationOptions = Apollo.BaseMutationOptions< + ReactToVideoMutation, + ReactToVideoMutationVariables +>; export const GetRunsForHighlightsDocument = gql` query GetRunsForHighlights( $filterInput: RunFilterInput! diff --git a/src/operations/feed.gql b/src/operations/feed.gql index 0e5b7bd..96664a8 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -58,6 +58,13 @@ fragment VideoCardFields on VideoGQL { status } } + reactions { + videoId + user { + id + } + reaction + } } query GetVideoFeed( diff --git a/src/operations/reactions.gql b/src/operations/reactions.gql new file mode 100644 index 0000000..d64d39c --- /dev/null +++ b/src/operations/reactions.gql @@ -0,0 +1,3 @@ +mutation ReactToVideo($videoId: Int!, $reaction: ReactionEnum) { + reactToVideo(videoId: $videoId, reaction: $reaction) +}