3b3717d307
* Folds=>groups * Show groups on user profile * Allow group creation from /create * Refactoring to groups * Convert folds to groups * Add new add to group notification * Fix user profile tab bug * Add groups nav and tab for my groups * Remove bad profile pages * remove comments * Add group list dropdown to sidebar * remove unused * group cards ui * Messages=>Comments, v2, groupDetails * Discussion time * Cleaning up some code * Remove follow count * Fix pool scoring for cpmm * Fix imports * Simplify rules, add GroupUser collection * Fix group cards * Refactor * Refactor * Small fixes * Remove string * Add api error detail handling * Clear name field * Componentize * Spacing * Undo userpage memo * Member groups are already in my tab * Remove active contracts reference for now * Remove unused * Refactoring * Allow adding old questions to a group * Rename * Wording * Throw standard v2 APIError * Hide input for non-members, add about under title * Multiple names to & # more * Move comments firestore rules to appropriate subpaths * Group membership, pool=>volume * Cleanup, useEvent * Raise state to parent * Eliminate unused * Cleaning up * Clean code * Revert tags input deletion * Cleaning code * Stylling * Limit members to display * Array cleanup * Add categories back in * Private=>closed * Unused vars
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import { httpsCallable } from 'firebase/functions'
|
|
import { Txn } from 'common/txn'
|
|
import { User } from 'common/user'
|
|
import { randomString } from 'common/util/random'
|
|
import './init'
|
|
import { functions } from './init'
|
|
import { safeLocalStorage } from '../util/local'
|
|
|
|
export const cloudFunction = <RequestData, ResponseData>(name: string) =>
|
|
httpsCallable<RequestData, ResponseData>(functions, name)
|
|
|
|
export const withdrawLiquidity = cloudFunction<
|
|
{ contractId: string },
|
|
{ status: 'error' | 'success'; userShares: { [outcome: string]: number } }
|
|
>('withdrawLiquidity')
|
|
|
|
export const transact = cloudFunction<
|
|
Omit<Txn, 'id' | 'createdTime'>,
|
|
{ status: 'error' | 'success'; message?: string; txn?: Txn }
|
|
>('transact')
|
|
|
|
export const createAnswer = cloudFunction<
|
|
{ contractId: string; text: string; amount: number },
|
|
{
|
|
status: 'error' | 'success'
|
|
message?: string
|
|
answerId?: string
|
|
betId?: string
|
|
}
|
|
>('createAnswer')
|
|
|
|
export const resolveMarket = cloudFunction<
|
|
{
|
|
outcome: string
|
|
value?: number
|
|
contractId: string
|
|
probabilityInt?: number
|
|
resolutions?: { [outcome: string]: number }
|
|
},
|
|
{ status: 'error' | 'success'; message?: string }
|
|
>('resolveMarket')
|
|
|
|
export const createUser: () => Promise<User | null> = () => {
|
|
const local = safeLocalStorage()
|
|
let deviceToken = local?.getItem('device-token')
|
|
if (!deviceToken) {
|
|
deviceToken = randomString()
|
|
local?.setItem('device-token', deviceToken)
|
|
}
|
|
|
|
return cloudFunction('createUser')({ deviceToken })
|
|
.then((r) => (r.data as any)?.user || null)
|
|
.catch(() => null)
|
|
}
|
|
|
|
export const changeUserInfo = (data: {
|
|
username?: string
|
|
name?: string
|
|
avatarUrl?: string
|
|
}) => {
|
|
return cloudFunction('changeUserInfo')(data)
|
|
.then((r) => r.data as { status: string; message?: string })
|
|
.catch((e) => ({ status: 'error', message: e.message }))
|
|
}
|
|
|
|
export const addLiquidity = (data: { amount: number; contractId: string }) => {
|
|
return cloudFunction('addLiquidity')(data)
|
|
.then((r) => r.data as { status: string })
|
|
.catch((e) => ({ status: 'error', message: e.message }))
|
|
}
|