Compare commits
3 Commits
master
...
5030ff560d
| Author | SHA1 | Date | |
|---|---|---|---|
| 5030ff560d | |||
| 1c6fef9de0 | |||
| d31d171ac3 |
695
src/index.tsx
695
src/index.tsx
File diff suppressed because it is too large
Load Diff
@@ -31,32 +31,41 @@ fragment VideoCardFields on VideoGQL {
|
|||||||
}
|
}
|
||||||
name
|
name
|
||||||
screenshotUri
|
screenshotUri
|
||||||
|
totalShotsMade
|
||||||
totalShots
|
totalShots
|
||||||
makePercentage
|
makePercentage
|
||||||
averageTimeBetweenShots
|
averageTimeBetweenShots
|
||||||
averageDifficulty
|
averageDifficulty
|
||||||
|
createdAt
|
||||||
|
updatedAt
|
||||||
startTime
|
startTime
|
||||||
|
endTime
|
||||||
private
|
private
|
||||||
elapsedTime
|
elapsedTime
|
||||||
|
screenshotUri
|
||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
lastIntendedSegmentBound
|
lastIntendedSegmentBound
|
||||||
|
isCompleted
|
||||||
streamSegmentType
|
streamSegmentType
|
||||||
}
|
}
|
||||||
tableSize
|
tableSize
|
||||||
pocketSize
|
pocketSize
|
||||||
tags {
|
tags {
|
||||||
name
|
|
||||||
tagClasses {
|
tagClasses {
|
||||||
name
|
name
|
||||||
}
|
}
|
||||||
}
|
name
|
||||||
playerSummaries {
|
|
||||||
...PlayerSummaryFields
|
|
||||||
}
|
}
|
||||||
currentProcessing {
|
currentProcessing {
|
||||||
id
|
id
|
||||||
|
errors {
|
||||||
|
message
|
||||||
|
}
|
||||||
status
|
status
|
||||||
|
statuses {
|
||||||
|
status
|
||||||
|
}
|
||||||
}
|
}
|
||||||
reactions {
|
reactions {
|
||||||
videoId
|
videoId
|
||||||
|
|||||||
@@ -20,15 +20,8 @@ mutation CreateSubscription($priceId: String!) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mutation CreateCustomerPortalSession {
|
|
||||||
createCustomerPortalSession {
|
|
||||||
portalUrl
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
query GetAvailableSubscriptionOptions {
|
query GetAvailableSubscriptionOptions {
|
||||||
getAvailableSubscriptionOptions {
|
getAvailableSubscriptionOptions {
|
||||||
trialPeriodDays
|
|
||||||
products {
|
products {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
fragment PlayerSummaryFields on PlayerSummaryGQL {
|
|
||||||
clusterId
|
|
||||||
userId
|
|
||||||
username
|
|
||||||
profileImageUri
|
|
||||||
representativeFullFrameUrl
|
|
||||||
totalShots
|
|
||||||
totalShotsMade
|
|
||||||
makePercentage
|
|
||||||
score
|
|
||||||
longestRun
|
|
||||||
averageDifficulty
|
|
||||||
averageTimeBetweenShots
|
|
||||||
}
|
|
||||||
|
|
||||||
fragment PlayerClusterShotFields on PlayerClusterShotGQL {
|
|
||||||
shotId
|
|
||||||
bboxX1
|
|
||||||
bboxY1
|
|
||||||
bboxX2
|
|
||||||
bboxY2
|
|
||||||
confidence
|
|
||||||
isConfirmed
|
|
||||||
cropUrl
|
|
||||||
fullFrameUrl
|
|
||||||
}
|
|
||||||
|
|
||||||
fragment PlayerClusterFields on PlayerClusterGQL {
|
|
||||||
videoId
|
|
||||||
clusterId
|
|
||||||
nShots
|
|
||||||
userId
|
|
||||||
username
|
|
||||||
profileImageUri
|
|
||||||
confirmed
|
|
||||||
score
|
|
||||||
shots {
|
|
||||||
...PlayerClusterShotFields
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
query VideoPlayerClusters($videoId: Int!) {
|
|
||||||
videoPlayerClusters(videoId: $videoId) {
|
|
||||||
...PlayerClusterFields
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
mutation FinalizePlayerAssignments($input: FinalizePlayerAssignmentsInput!) {
|
|
||||||
finalizePlayerAssignments(input: $input) {
|
|
||||||
...PlayerClusterFields
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -92,17 +92,6 @@ query GetUserTags {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
query GetGameTypeTagMetrics($input: GameTypeTagMetricsInput!) {
|
|
||||||
getGameTypeTagMetrics(input: $input) {
|
|
||||||
tagName
|
|
||||||
tagLabel
|
|
||||||
tableSize
|
|
||||||
shotCount
|
|
||||||
madeShots
|
|
||||||
makeRate
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
mutation followUser($followedUserId: Int!) {
|
mutation followUser($followedUserId: Int!) {
|
||||||
followUser(followedUserId: $followedUserId) {
|
followUser(followedUserId: $followedUserId) {
|
||||||
id
|
id
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
|||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
linksRequested
|
linksRequested
|
||||||
lowestUnuploadedSegmentIndex
|
|
||||||
uploadsCompleted
|
uploadsCompleted
|
||||||
segmentProcessingCursor
|
segmentProcessingCursor
|
||||||
isCompleted
|
isCompleted
|
||||||
@@ -83,9 +82,6 @@ query GetVideoDetails($videoId: Int!) {
|
|||||||
}
|
}
|
||||||
name
|
name
|
||||||
}
|
}
|
||||||
playerSummaries {
|
|
||||||
...PlayerSummaryFields
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
mutation CreateUploadStream(
|
mutation CreateUploadStream(
|
||||||
$videoMetadataInput: VideoMetadataInput!
|
$videoMetadataInput: VideoMetadataInput!
|
||||||
$expectedDurationSeconds: Float = null
|
$expectedDurationSeconds: Float
|
||||||
) {
|
) {
|
||||||
createUploadStream(
|
createUploadStream(
|
||||||
videoMetadata: $videoMetadataInput
|
videoMetadata: $videoMetadataInput
|
||||||
|
|||||||
109
src/schema.gql
109
src/schema.gql
@@ -28,7 +28,7 @@ type Query {
|
|||||||
getLongestRunsLeaderboard(
|
getLongestRunsLeaderboard(
|
||||||
interval: TimeInterval = null
|
interval: TimeInterval = null
|
||||||
when: DateTime = null
|
when: DateTime = null
|
||||||
limit: Int! = 50
|
limit: Int! = 100
|
||||||
requiredTags: [String!] = null
|
requiredTags: [String!] = null
|
||||||
): RunLeaderboardGQL!
|
): RunLeaderboardGQL!
|
||||||
getMakesLeaderboard(
|
getMakesLeaderboard(
|
||||||
@@ -49,7 +49,6 @@ type Query {
|
|||||||
limit: Int! = 500
|
limit: Int! = 500
|
||||||
countRespectsLimit: Boolean! = false
|
countRespectsLimit: Boolean! = false
|
||||||
): GetRunsResult!
|
): GetRunsResult!
|
||||||
videoPlayerClusters(videoId: Int!): [PlayerClusterGQL!]!
|
|
||||||
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
|
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
|
||||||
getTableState(
|
getTableState(
|
||||||
b64Image: String!
|
b64Image: String!
|
||||||
@@ -107,7 +106,6 @@ type Query {
|
|||||||
filters: VideoFilterInput = null
|
filters: VideoFilterInput = null
|
||||||
): VideoHistoryGQL!
|
): VideoHistoryGQL!
|
||||||
getUserTags(includeRetiredTags: Boolean = false): [TagGQL!]!
|
getUserTags(includeRetiredTags: Boolean = false): [TagGQL!]!
|
||||||
getGameTypeTagMetrics(input: GameTypeTagMetricsInput!): [GameTypeTagMetric!]!
|
|
||||||
getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL!
|
getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL!
|
||||||
getVideos(videoIds: [Int!]!): [VideoGQL!]!
|
getVideos(videoIds: [Int!]!): [VideoGQL!]!
|
||||||
}
|
}
|
||||||
@@ -406,7 +404,6 @@ type VideoGQL {
|
|||||||
currentProcessing: VideoProcessingGQL
|
currentProcessing: VideoProcessingGQL
|
||||||
reactions: [ReactionGQL!]!
|
reactions: [ReactionGQL!]!
|
||||||
comments: [CommentGQL!]!
|
comments: [CommentGQL!]!
|
||||||
playerSummaries: [PlayerSummaryGQL!]!
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type ShotGQL {
|
type ShotGQL {
|
||||||
@@ -609,8 +606,6 @@ type IntPoint2D {
|
|||||||
|
|
||||||
type VideoProcessingGQL {
|
type VideoProcessingGQL {
|
||||||
id: Int!
|
id: Int!
|
||||||
parentProcessingId: Int
|
|
||||||
labels: [String!]!
|
|
||||||
errors: [VideoProcessingErrorGQL!]!
|
errors: [VideoProcessingErrorGQL!]!
|
||||||
status: ProcessingStatusEnum!
|
status: ProcessingStatusEnum!
|
||||||
statuses: [VideoProcessingStatusGQL!]!
|
statuses: [VideoProcessingStatusGQL!]!
|
||||||
@@ -666,21 +661,6 @@ type CommentGQL {
|
|||||||
replies: [CommentGQL!]!
|
replies: [CommentGQL!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type PlayerSummaryGQL {
|
|
||||||
clusterId: Int!
|
|
||||||
userId: Int
|
|
||||||
username: String
|
|
||||||
profileImageUri: String
|
|
||||||
representativeFullFrameUrl: String
|
|
||||||
totalShots: Int!
|
|
||||||
totalShotsMade: Int!
|
|
||||||
makePercentage: Float!
|
|
||||||
score: Int
|
|
||||||
longestRun: Int!
|
|
||||||
averageDifficulty: Float
|
|
||||||
averageTimeBetweenShots: Float
|
|
||||||
}
|
|
||||||
|
|
||||||
type DeployedConfigGQL {
|
type DeployedConfigGQL {
|
||||||
allowNewUsers: Boolean!
|
allowNewUsers: Boolean!
|
||||||
firebase: Boolean!
|
firebase: Boolean!
|
||||||
@@ -877,30 +857,6 @@ input DatetimeOrdering {
|
|||||||
startingAt: DateTime = null
|
startingAt: DateTime = null
|
||||||
}
|
}
|
||||||
|
|
||||||
type PlayerClusterGQL {
|
|
||||||
videoId: Int!
|
|
||||||
clusterId: Int!
|
|
||||||
nShots: Int!
|
|
||||||
userId: Int
|
|
||||||
username: String
|
|
||||||
profileImageUri: String
|
|
||||||
confirmed: Boolean!
|
|
||||||
score: Int
|
|
||||||
shots: [PlayerClusterShotGQL!]!
|
|
||||||
}
|
|
||||||
|
|
||||||
type PlayerClusterShotGQL {
|
|
||||||
shotId: Int!
|
|
||||||
bboxX1: Int!
|
|
||||||
bboxY1: Int!
|
|
||||||
bboxX2: Int!
|
|
||||||
bboxY2: Int!
|
|
||||||
confidence: Float!
|
|
||||||
isConfirmed: Boolean!
|
|
||||||
cropUrl: String
|
|
||||||
fullFrameUrl: String
|
|
||||||
}
|
|
||||||
|
|
||||||
type TableStateGQL {
|
type TableStateGQL {
|
||||||
identifierToPosition: [[Float!]!]!
|
identifierToPosition: [[Float!]!]!
|
||||||
homography: HomographyInfoGQL
|
homography: HomographyInfoGQL
|
||||||
@@ -981,7 +937,6 @@ type UserRelationship {
|
|||||||
|
|
||||||
type StripeSubscriptionOptionsGQL {
|
type StripeSubscriptionOptionsGQL {
|
||||||
products: [StripeProductGQL!]!
|
products: [StripeProductGQL!]!
|
||||||
trialPeriodDays: Int
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type StripeProductGQL {
|
type StripeProductGQL {
|
||||||
@@ -1004,9 +959,6 @@ type StripePriceGQL {
|
|||||||
|
|
||||||
type UserSubscriptionStatusGQL {
|
type UserSubscriptionStatusGQL {
|
||||||
hasActiveSubscription: Boolean!
|
hasActiveSubscription: Boolean!
|
||||||
entitlementSource: EntitlementSourceTypeEnum
|
|
||||||
entitlementStartsAt: DateTime
|
|
||||||
entitlementEndsAt: DateTime
|
|
||||||
subscriptionStatus: StripeSubscriptionStatusEnum
|
subscriptionStatus: StripeSubscriptionStatusEnum
|
||||||
currentPeriodStart: DateTime
|
currentPeriodStart: DateTime
|
||||||
currentPeriodEnd: DateTime
|
currentPeriodEnd: DateTime
|
||||||
@@ -1015,13 +967,6 @@ type UserSubscriptionStatusGQL {
|
|||||||
stripeSubscriptionId: String
|
stripeSubscriptionId: String
|
||||||
}
|
}
|
||||||
|
|
||||||
enum EntitlementSourceTypeEnum {
|
|
||||||
ADMIN
|
|
||||||
MANUAL
|
|
||||||
STRIPE
|
|
||||||
ALPHA_LEGACY
|
|
||||||
}
|
|
||||||
|
|
||||||
enum StripeSubscriptionStatusEnum {
|
enum StripeSubscriptionStatusEnum {
|
||||||
INCOMPLETE
|
INCOMPLETE
|
||||||
INCOMPLETE_EXPIRED
|
INCOMPLETE_EXPIRED
|
||||||
@@ -1060,25 +1005,6 @@ type TagClassGQL {
|
|||||||
name: String!
|
name: String!
|
||||||
}
|
}
|
||||||
|
|
||||||
type GameTypeTagMetric {
|
|
||||||
tagName: String!
|
|
||||||
tagLabel: String!
|
|
||||||
tableSize: Float
|
|
||||||
shotCount: Int!
|
|
||||||
madeShots: Int!
|
|
||||||
makeRate: Float!
|
|
||||||
}
|
|
||||||
|
|
||||||
input GameTypeTagMetricsInput {
|
|
||||||
userId: Int!
|
|
||||||
createdAt: DateRangeFilter = null
|
|
||||||
maxTags: Int = null
|
|
||||||
groupByTableSize: Boolean! = true
|
|
||||||
includeUnknown: Boolean! = true
|
|
||||||
tagClass: String = "game_type"
|
|
||||||
includePrivate: IncludePrivateEnum! = MINE
|
|
||||||
}
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf).
|
The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf).
|
||||||
"""
|
"""
|
||||||
@@ -1135,9 +1061,6 @@ type Mutation {
|
|||||||
markAllNotificationsAsRead: Boolean!
|
markAllNotificationsAsRead: Boolean!
|
||||||
markNotificationsAsRead(notificationIds: [Int!]!): Boolean!
|
markNotificationsAsRead(notificationIds: [Int!]!): Boolean!
|
||||||
deleteNotification(notificationId: Int!): Boolean!
|
deleteNotification(notificationId: Int!): Boolean!
|
||||||
finalizePlayerAssignments(
|
|
||||||
input: FinalizePlayerAssignmentsInput!
|
|
||||||
): [PlayerClusterGQL!]!
|
|
||||||
addAnnotationToShot(
|
addAnnotationToShot(
|
||||||
shotId: Int!
|
shotId: Int!
|
||||||
annotationName: String!
|
annotationName: String!
|
||||||
@@ -1162,16 +1085,7 @@ type Mutation {
|
|||||||
ensureStripeCustomerExists: UserGQL!
|
ensureStripeCustomerExists: UserGQL!
|
||||||
deleteUser: Boolean!
|
deleteUser: Boolean!
|
||||||
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
||||||
createCustomerPortalSession: CreateCustomerPortalSessionResultGQL!
|
|
||||||
cancelSubscription: UserSubscriptionStatusGQL!
|
cancelSubscription: UserSubscriptionStatusGQL!
|
||||||
grantManualEntitlement(
|
|
||||||
userId: Int!
|
|
||||||
tierName: String! = "pro"
|
|
||||||
startsAt: DateTime = null
|
|
||||||
endsAt: DateTime = null
|
|
||||||
reason: String = null
|
|
||||||
): UserSubscriptionStatusGQL!
|
|
||||||
revokeManualEntitlement(userId: Int!): UserSubscriptionStatusGQL!
|
|
||||||
submitCancellationFeedback(
|
submitCancellationFeedback(
|
||||||
reasons: [CancellationReasonEnum!] = null
|
reasons: [CancellationReasonEnum!] = null
|
||||||
feedback: String = null
|
feedback: String = null
|
||||||
@@ -1209,23 +1123,6 @@ enum ReportReasonEnum {
|
|||||||
OTHER
|
OTHER
|
||||||
}
|
}
|
||||||
|
|
||||||
input FinalizePlayerAssignmentsInput {
|
|
||||||
videoId: Int!
|
|
||||||
clusterAssignments: [ClusterAssignmentInput!]! = []
|
|
||||||
shotMoves: [ShotMoveInput!]! = []
|
|
||||||
}
|
|
||||||
|
|
||||||
input ClusterAssignmentInput {
|
|
||||||
clusterId: Int!
|
|
||||||
userId: Int = null
|
|
||||||
score: Int = null
|
|
||||||
}
|
|
||||||
|
|
||||||
input ShotMoveInput {
|
|
||||||
shotId: Int!
|
|
||||||
newClusterId: Int!
|
|
||||||
}
|
|
||||||
|
|
||||||
type AddShotAnnotationReturn {
|
type AddShotAnnotationReturn {
|
||||||
value: SuccessfulAddAddShotAnnotationErrors!
|
value: SuccessfulAddAddShotAnnotationErrors!
|
||||||
}
|
}
|
||||||
@@ -1319,10 +1216,6 @@ type CreateSubscriptionResultGQL {
|
|||||||
sessionId: String!
|
sessionId: String!
|
||||||
}
|
}
|
||||||
|
|
||||||
type CreateCustomerPortalSessionResultGQL {
|
|
||||||
portalUrl: String!
|
|
||||||
}
|
|
||||||
|
|
||||||
enum CancellationReasonEnum {
|
enum CancellationReasonEnum {
|
||||||
DONT_PLAY_ENOUGH
|
DONT_PLAY_ENOUGH
|
||||||
TOO_EXPENSIVE
|
TOO_EXPENSIVE
|
||||||
|
|||||||
Reference in New Issue
Block a user