Compare commits
20 Commits
dean/neste
...
loewy/sess
| Author | SHA1 | Date | |
|---|---|---|---|
| 5cd2dabeaa | |||
| b034a2f1b8 | |||
| d7b0b21430 | |||
| f173466b2f | |||
|
|
df69d154a5 | ||
| 0bceb5d300 | |||
| f58048768c | |||
| 179e8ed4e1 | |||
| 3e6dabe12a | |||
| 9104a312b1 | |||
| 43e944e82f | |||
| d6cc81ef9f | |||
| 5d775eac70 | |||
| b810907f10 | |||
|
|
0eb627479a | ||
| 1914b2f5c0 | |||
|
|
722b2ca2b0 | ||
| 79f38fa45f | |||
| 2886d2f5b8 | |||
|
|
8441bb12e9 |
804
src/index.tsx
804
src/index.tsx
File diff suppressed because it is too large
Load Diff
25
src/operations/legacy_shotsim.gql
Normal file
25
src/operations/legacy_shotsim.gql
Normal file
@@ -0,0 +1,25 @@
|
||||
# Legacy shot-sim operations still used by mobile master's
|
||||
# LiveStreamPicker / RecordedShotPicker; remove when those are deleted.
|
||||
|
||||
query GetRecordedStreams($limit: Int! = 25) {
|
||||
getFeedVideos(
|
||||
limit: $limit
|
||||
filters: { isStreamCompleted: true, excludeVideosWithNoShots: true }
|
||||
includePrivate: MINE
|
||||
feedInput: { allUsers: true }
|
||||
) {
|
||||
videos {
|
||||
id
|
||||
name
|
||||
createdAt
|
||||
screenshotUri
|
||||
framesPerSecond
|
||||
totalShots
|
||||
owner {
|
||||
id
|
||||
username
|
||||
profileImageUri
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
34
src/operations/live_streams.gql
Normal file
34
src/operations/live_streams.gql
Normal file
@@ -0,0 +1,34 @@
|
||||
# Lightweight listing of live (in-progress) streams for pickers like the
|
||||
# Shot Lab "follow a live stream" flow. Selects only what a picker card
|
||||
# needs; intentionally avoids the heavy VideoCardFields fragment.
|
||||
query GetLiveStreams($limit: Int! = 25) {
|
||||
getFeedVideos(
|
||||
limit: $limit
|
||||
filters: { isStreamCompleted: false, requireCursorCompletion: false }
|
||||
includePrivate: MINE
|
||||
feedInput: { allUsers: true }
|
||||
) {
|
||||
videos {
|
||||
id
|
||||
name
|
||||
startTime
|
||||
createdAt
|
||||
screenshotUri
|
||||
elapsedTime
|
||||
owner {
|
||||
id
|
||||
username
|
||||
profileImageUri
|
||||
}
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
lastSegmentUploadedAt
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
endCursor
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,12 +1,19 @@
|
||||
# Lightweight two-step picker data for Shot Lab's video-first source: the
|
||||
# caller's recent videos (completed or still uploading), then that video's
|
||||
# shots. The stream fields hint at "actively updating" without gating.
|
||||
query GetShotLabVideos($userId: Int!, $limit: Int! = 25) {
|
||||
# Lightweight two-step picker data for Shot Lab's video-first source: recent
|
||||
# videos from the requested audience (mine, followed users, or public), then
|
||||
# that video's shots. The stream fields hint at "actively updating" without
|
||||
# gating.
|
||||
query GetShotLabVideos(
|
||||
$feedInput: VideoFeedInputGQL!
|
||||
$includePrivate: IncludePrivateEnum!
|
||||
$limit: Int! = 25
|
||||
$after: String = null
|
||||
) {
|
||||
getFeedVideos(
|
||||
limit: $limit
|
||||
after: $after
|
||||
includeCallersVideos: false
|
||||
includePrivate: MINE
|
||||
feedInput: { userId: $userId }
|
||||
includePrivate: $includePrivate
|
||||
feedInput: $feedInput
|
||||
) {
|
||||
videos {
|
||||
id
|
||||
@@ -26,6 +33,10 @@ query GetShotLabVideos($userId: Int!, $limit: Int! = 25) {
|
||||
lastSegmentUploadedAt
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
endCursor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -14,6 +14,16 @@ query GetSessionCoach($videoId: Int!) {
|
||||
unknownOutcomeCount
|
||||
analyzedShotCount
|
||||
makePercentage
|
||||
longestMakeStreak
|
||||
recentBaseline {
|
||||
sessionCount
|
||||
attemptCount
|
||||
madeCount
|
||||
makePercentage
|
||||
}
|
||||
positiveCandidates {
|
||||
...SessionCoachCandidateFields
|
||||
}
|
||||
primaryCandidate {
|
||||
...SessionCoachCandidateFields
|
||||
}
|
||||
@@ -35,6 +45,21 @@ mutation RequestSessionCoachGeneration($videoId: Int!) {
|
||||
}
|
||||
}
|
||||
|
||||
mutation SubmitSessionCoachFeedback(
|
||||
$videoId: Int!
|
||||
$generationId: ID!
|
||||
$response: SessionCoachFeedbackResponseEnum!
|
||||
) {
|
||||
submitSessionCoachFeedback(
|
||||
videoId: $videoId
|
||||
generationId: $generationId
|
||||
response: $response
|
||||
) {
|
||||
response
|
||||
updatedAt
|
||||
}
|
||||
}
|
||||
|
||||
fragment SessionCoachCandidateFields on SessionCoachCandidateGQL {
|
||||
id
|
||||
rank
|
||||
@@ -59,6 +84,10 @@ fragment SessionCoachCandidateFields on SessionCoachCandidateGQL {
|
||||
patternShotCount
|
||||
score
|
||||
rankReason
|
||||
baselineSessionCount
|
||||
baselineAttemptCount
|
||||
baselineMadeCount
|
||||
baselineMakePercentage
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,7 +97,13 @@ fragment SessionCoachGenerationFields on SessionCoachGenerationGQL {
|
||||
createdAt
|
||||
completedAt
|
||||
decision {
|
||||
selectedPositiveCandidateId
|
||||
positiveTitle
|
||||
positiveBody
|
||||
selectedCandidateId
|
||||
supportingCandidateIds
|
||||
supportingShotIds
|
||||
sessionSummary
|
||||
title
|
||||
body
|
||||
suggestedAction
|
||||
@@ -95,5 +130,10 @@ fragment SessionCoachGenerationFields on SessionCoachGenerationGQL {
|
||||
startedAt
|
||||
lastEnqueuedAt
|
||||
abstentionReason
|
||||
synthesisRationale
|
||||
}
|
||||
feedback {
|
||||
response
|
||||
updatedAt
|
||||
}
|
||||
}
|
||||
|
||||
8
src/operations/share_link.gql
Normal file
8
src/operations/share_link.gql
Normal file
@@ -0,0 +1,8 @@
|
||||
mutation CreateShotShareLink($shotIds: [Int!]!, $paddingSeconds: Float = null) {
|
||||
createShotShareLink(
|
||||
input: { shotIds: $shotIds, paddingSeconds: $paddingSeconds }
|
||||
) {
|
||||
slug
|
||||
url
|
||||
}
|
||||
}
|
||||
@@ -48,6 +48,52 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) {
|
||||
}
|
||||
}
|
||||
stream {
|
||||
id
|
||||
uploadCompletionCursor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
mutation GetUploadLinks($videoId: Int!, $segmentIndexes: [Int!]!) {
|
||||
getUploadLinks(videoId: $videoId, segmentIndexes: $segmentIndexes) {
|
||||
value {
|
||||
... on UploadLinkBatch {
|
||||
links {
|
||||
segmentIndex
|
||||
uploadUrl
|
||||
headers {
|
||||
key
|
||||
value
|
||||
}
|
||||
}
|
||||
alreadyUploaded
|
||||
}
|
||||
... on GetUploadLinkErrors {
|
||||
error {
|
||||
... on MustHaveSetForUploadLinkErr {
|
||||
resolution
|
||||
framesPerSecond
|
||||
}
|
||||
... on ProcessingFailedErr {
|
||||
processing {
|
||||
status
|
||||
errors {
|
||||
message
|
||||
}
|
||||
}
|
||||
}
|
||||
... on StorageLimitExceededErr {
|
||||
reason
|
||||
tierName
|
||||
retainedStorageUsedBytes
|
||||
retainedStorageLimitBytes
|
||||
remainingStorageBytes
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stream {
|
||||
id
|
||||
uploadCompletionCursor
|
||||
}
|
||||
}
|
||||
@@ -127,6 +173,7 @@ fragment UploadStreamWithDetails on VideoGQL {
|
||||
name
|
||||
startTime
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
lastIntendedSegmentBound
|
||||
uploadCompletionCursor
|
||||
|
||||
@@ -259,6 +259,11 @@ input CreatePoolHallInput {
|
||||
timezone: String = null
|
||||
}
|
||||
|
||||
input CreateShotShareLinkInput {
|
||||
shotIds: [Int!]!
|
||||
paddingSeconds: Float = null
|
||||
}
|
||||
|
||||
type CreateSubscriptionResultGQL {
|
||||
checkoutUrl: String!
|
||||
sessionId: String!
|
||||
@@ -526,6 +531,11 @@ type GetUploadLinkReturn {
|
||||
stream: UploadStreamGQL
|
||||
}
|
||||
|
||||
type GetUploadLinksReturn {
|
||||
value: UploadLinkBatchGetUploadLinkErrors!
|
||||
stream: UploadStreamGQL
|
||||
}
|
||||
|
||||
type HLSPlaylistGQL {
|
||||
videoId: Int!
|
||||
m3u8Text: String!
|
||||
@@ -701,6 +711,7 @@ type Mutation {
|
||||
cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession!
|
||||
endCameraLease(leaseId: ID!): CameraLease!
|
||||
extendCameraLease(leaseId: ID!, additionalMinutes: Int! = 60): CameraLease!
|
||||
createShotShareLink(input: CreateShotShareLinkInput!): ShareLinkGQL!
|
||||
finalizePlayerAssignments(
|
||||
input: FinalizePlayerAssignmentsInput!
|
||||
): [PlayerClusterGQL!]!
|
||||
@@ -717,6 +728,11 @@ type Mutation {
|
||||
shotId: Int!
|
||||
fieldsToEdit: EditableShotFieldInputGQL!
|
||||
): EditShotReturn!
|
||||
submitSessionCoachFeedback(
|
||||
videoId: Int!
|
||||
generationId: ID!
|
||||
response: SessionCoachFeedbackResponseEnum!
|
||||
): SessionCoachFeedbackGQL!
|
||||
requestSessionCoachGeneration(videoId: Int!): SessionCoachGQL!
|
||||
getProfileImageUploadLink(
|
||||
fileExt: String = ".png"
|
||||
@@ -755,6 +771,7 @@ type Mutation {
|
||||
expectedDurationSeconds: Float = null
|
||||
): CreateUploadStreamReturn!
|
||||
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
||||
getUploadLinks(videoId: Int!, segmentIndexes: [Int!]!): GetUploadLinksReturn!
|
||||
getHlsInitUploadLink(videoId: Int!): GetUploadLinkReturn!
|
||||
setSegmentDuration(
|
||||
videoId: Int!
|
||||
@@ -1289,11 +1306,25 @@ type SegmentAlreadyUploadedErr {
|
||||
segmentId: Int!
|
||||
}
|
||||
|
||||
type SegmentUploadLink {
|
||||
segmentIndex: Int!
|
||||
uploadUrl: String!
|
||||
headers: [Header]!
|
||||
}
|
||||
|
||||
type SerializedShotPathsGQL {
|
||||
b64EncodedBuffer: String
|
||||
}
|
||||
|
||||
type SessionCoachBaselineGQL {
|
||||
sessionCount: Int!
|
||||
attemptCount: Int!
|
||||
madeCount: Int!
|
||||
makePercentage: Float!
|
||||
}
|
||||
|
||||
enum SessionCoachCandidateFamilyEnum {
|
||||
OVERALL
|
||||
AIMING
|
||||
CUT_ANGLE
|
||||
SPIN
|
||||
@@ -1317,13 +1348,22 @@ type SessionCoachCandidateGQL {
|
||||
}
|
||||
|
||||
enum SessionCoachCandidateKindEnum {
|
||||
BASELINE_COMPARISON
|
||||
SESSION_STREAK
|
||||
STRENGTH_PATTERN
|
||||
DIRECTIONAL_MISS
|
||||
OUTCOME_PATTERN
|
||||
USAGE_PATTERN
|
||||
}
|
||||
|
||||
type SessionCoachDecisionGQL {
|
||||
selectedPositiveCandidateId: ID
|
||||
positiveTitle: String
|
||||
positiveBody: String
|
||||
selectedCandidateId: ID
|
||||
supportingCandidateIds: [ID!]!
|
||||
supportingShotIds: [Int!]!
|
||||
sessionSummary: String
|
||||
title: String
|
||||
body: String
|
||||
suggestedAction: String
|
||||
@@ -1346,6 +1386,22 @@ type SessionCoachEvidenceGQL {
|
||||
patternShotCount: Int!
|
||||
score: Float!
|
||||
rankReason: String!
|
||||
baselineSessionCount: Int!
|
||||
baselineAttemptCount: Int!
|
||||
baselineMadeCount: Int!
|
||||
baselineMakePercentage: Float
|
||||
}
|
||||
|
||||
type SessionCoachFeedbackGQL {
|
||||
response: SessionCoachFeedbackResponseEnum!
|
||||
updatedAt: DateTime!
|
||||
}
|
||||
|
||||
enum SessionCoachFeedbackResponseEnum {
|
||||
HELPFUL
|
||||
WRONG_FOCUS
|
||||
ALREADY_WORKING_ON_THIS
|
||||
NOT_ENOUGH_EVIDENCE
|
||||
}
|
||||
|
||||
type SessionCoachGQL {
|
||||
@@ -1363,6 +1419,9 @@ type SessionCoachGQL {
|
||||
unknownOutcomeCount: Int!
|
||||
analyzedShotCount: Int!
|
||||
makePercentage: Float
|
||||
longestMakeStreak: Int!
|
||||
recentBaseline: SessionCoachBaselineGQL
|
||||
positiveCandidates: [SessionCoachCandidateGQL!]!
|
||||
primaryCandidate: SessionCoachCandidateGQL
|
||||
candidates: [SessionCoachCandidateGQL!]!
|
||||
agentGeneration: SessionCoachGenerationGQL
|
||||
@@ -1386,6 +1445,7 @@ type SessionCoachGenerationDiagnosticsGQL {
|
||||
startedAt: DateTime
|
||||
lastEnqueuedAt: DateTime
|
||||
abstentionReason: String
|
||||
synthesisRationale: String
|
||||
}
|
||||
|
||||
type SessionCoachGenerationGQL {
|
||||
@@ -1395,6 +1455,7 @@ type SessionCoachGenerationGQL {
|
||||
completedAt: DateTime
|
||||
decision: SessionCoachDecisionGQL
|
||||
diagnostics: SessionCoachGenerationDiagnosticsGQL
|
||||
feedback: SessionCoachFeedbackGQL
|
||||
}
|
||||
|
||||
enum SessionCoachGenerationStateEnum {
|
||||
@@ -1416,6 +1477,11 @@ enum SessionCoachStateEnum {
|
||||
FAILED
|
||||
}
|
||||
|
||||
type ShareLinkGQL {
|
||||
slug: String!
|
||||
url: String!
|
||||
}
|
||||
|
||||
type ShotAnnotationGQL {
|
||||
shotId: Int!
|
||||
type: ShotAnnotationTypeGQL!
|
||||
@@ -1750,6 +1816,13 @@ type UploadLink {
|
||||
headers: [Header]!
|
||||
}
|
||||
|
||||
type UploadLinkBatch {
|
||||
links: [SegmentUploadLink!]!
|
||||
alreadyUploaded: [Int!]!
|
||||
}
|
||||
|
||||
union UploadLinkBatchGetUploadLinkErrors = UploadLinkBatch | GetUploadLinkErrors
|
||||
|
||||
union UploadLinkGetProfileUploadLinkErrors =
|
||||
UploadLink
|
||||
| GetProfileUploadLinkErrors
|
||||
@@ -1879,7 +1952,7 @@ type VideoExportJobGQL {
|
||||
shotIds: [Int!]
|
||||
runId: Int
|
||||
downloadUrl: String
|
||||
fileSizeBytes: Int
|
||||
fileSizeBytes: BigInt
|
||||
expiresAt: DateTime
|
||||
createdAt: DateTime
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user