From e0607dfbf6cd91440b35335ab369919e5b6c8b9c Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Fri, 21 Mar 2025 11:15:29 -0700 Subject: [PATCH 1/4] add support for video reaction --- src/index.tsx | 23 +++++++++++++++++++++++ src/schema.gql | 17 +++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 1e55234..375d86e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2240,6 +2240,7 @@ export type Mutation = { getProfileImageUploadLink: GetProfileUploadLinkReturn; getUploadLink: GetUploadLinkReturn; retireTags: Scalars["Boolean"]["output"]; + reactToVideo: Scalars["Boolean"]["output"]; setLoggerLevel: Scalars["Boolean"]["output"]; setSegmentDuration: Scalars["Boolean"]["output"]; unfollowUser: UserGql; @@ -2311,6 +2312,11 @@ export type MutationGetUploadLinkArgs = { export type MutationRetireTagsArgs = { tagIds: Array; +} + +export type MutationReactToVideoArgs = { + reaction?: InputMaybe; + videoId: Scalars["Int"]["input"]; }; export type MutationSetLoggerLevelArgs = { @@ -2565,6 +2571,22 @@ export type QueryWaitForArgs = { duration: Scalars["Float"]["input"]; }; +export enum ReactionEnum { + Bullseye = "BULLSEYE", + Heart = "HEART", + Hundred = "HUNDRED", + Like = "LIKE", +} + +export type ReactionGql = { + __typename?: "ReactionGQL"; + createdAt?: Maybe; + reaction: ReactionEnum; + updatedAt?: Maybe; + user: UserGql; + videoId: Scalars["Int"]["output"]; +}; + export type RequestedMedalsGql = { __typename?: "RequestedMedalsGQL"; dailyMakes50?: Maybe; @@ -3000,6 +3022,7 @@ export type VideoGql = { owner?: Maybe; playlist?: Maybe; private: Scalars["Boolean"]["output"]; + reactions: Array; screenshotUri?: Maybe; shots: Array; startTime?: Maybe; diff --git a/src/schema.gql b/src/schema.gql index 7628db6..58f45b6 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -479,6 +479,7 @@ type VideoGQL { currentHomography: HomographyInfoGQL homographyHistory: [HomographyInfoGQL!]! currentProcessing: VideoProcessingGQL + reactions: [ReactionGQL!]! } type UploadStreamGQL { @@ -612,6 +613,21 @@ type VideoProcessingStatusGQL { updatedAt: DateTime } +type ReactionGQL { + videoId: Int! + user: UserGQL! + reaction: ReactionEnum! + createdAt: DateTime + updatedAt: DateTime +} + +enum ReactionEnum { + LIKE + HEART + BULLSEYE + HUNDRED +} + type RunFeaturesGQL { runId: Int! indexInRun: Int! @@ -801,6 +817,7 @@ type Mutation { editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean! deleteVideo(videoId: Int!): Boolean! deleteTags(videoId: Int!, tagsToDelete: [VideoTagInput!]!): Boolean! + reactToVideo(videoId: Int!, reaction: ReactionEnum): Boolean! } input CreateBucketSetInput { -- 2.47.2 From dd214b550223846461865043d586be15d25e9b54 Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 25 Mar 2025 12:56:03 -0700 Subject: [PATCH 2/4] 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) +} -- 2.47.2 From 7693de8689c8b63c5d89562b718697428c9f721a Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 25 Mar 2025 12:59:18 -0700 Subject: [PATCH 3/4] add username field to feed video fragment --- src/index.tsx | 7 ++++--- src/operations/feed.gql | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index db71f81..94128c0 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3214,7 +3214,7 @@ export type GetFeedQuery = { __typename?: "ReactionGQL"; videoId: number; reaction: ReactionEnum; - user: { __typename?: "UserGQL"; id: number }; + user: { __typename?: "UserGQL"; id: number; username: string }; }>; }>; pageInfo: { @@ -3273,7 +3273,7 @@ export type VideoCardFieldsFragment = { __typename?: "ReactionGQL"; videoId: number; reaction: ReactionEnum; - user: { __typename?: "UserGQL"; id: number }; + user: { __typename?: "UserGQL"; id: number; username: string }; }>; }; @@ -3341,7 +3341,7 @@ export type GetVideoFeedQuery = { __typename?: "ReactionGQL"; videoId: number; reaction: ReactionEnum; - user: { __typename?: "UserGQL"; id: number }; + user: { __typename?: "UserGQL"; id: number; username: string }; }>; }>; pageInfo: { @@ -5028,6 +5028,7 @@ export const VideoCardFieldsFragmentDoc = gql` videoId user { id + username } reaction } diff --git a/src/operations/feed.gql b/src/operations/feed.gql index 96664a8..a077bc9 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -62,6 +62,7 @@ fragment VideoCardFields on VideoGQL { videoId user { id + username } reaction } -- 2.47.2 From dc9cb6cdaf3116f5b9bc88f3dec266f178919b26 Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 25 Mar 2025 16:20:41 -0700 Subject: [PATCH 4/4] resolve merge conflicts --- src/index.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 94128c0..af56d2a 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2239,8 +2239,8 @@ export type Mutation = { getHlsInitUploadLink: GetUploadLinkReturn; getProfileImageUploadLink: GetProfileUploadLinkReturn; getUploadLink: GetUploadLinkReturn; - retireTags: Scalars["Boolean"]["output"]; reactToVideo: Scalars["Boolean"]["output"]; + retireTags: Scalars["Boolean"]["output"]; setLoggerLevel: Scalars["Boolean"]["output"]; setSegmentDuration: Scalars["Boolean"]["output"]; unfollowUser: UserGql; @@ -2310,15 +2310,15 @@ export type MutationGetUploadLinkArgs = { videoId: Scalars["Int"]["input"]; }; -export type MutationRetireTagsArgs = { - tagIds: Array; -} - export type MutationReactToVideoArgs = { reaction?: InputMaybe; videoId: Scalars["Int"]["input"]; }; +export type MutationRetireTagsArgs = { + tagIds: Array; +}; + export type MutationSetLoggerLevelArgs = { level: Scalars["String"]["input"]; path: Scalars["String"]["input"]; -- 2.47.2