diff options
| author | Ivan Chen <ivan@thetaggid.com> | 2020-12-14 19:22:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-14 19:22:35 -0500 |
| commit | b5ecbf3e421e9e6f1dbab9f3f851d265ae8470c6 (patch) | |
| tree | 4c1ee927a851649ef03c8a05619e2d78f2cdb1f4 /src/services | |
| parent | 3b7bf256d83e1898642c2aab9072ffbeec8cc032 (diff) | |
[TMA-406&201] User Handle UI for Individual Moments (#129)
* initial work
* made big progress towards flatlist moment view
* UI done, just need to pass in data now
* minor fixes to get things actually running correctly
* vertical scroll working
* initial index working
* moment drawer text color to red
* moved report to drawer
* removed garbage
* added ?
Diffstat (limited to 'src/services')
| -rw-r--r-- | src/services/MomentServices.ts | 2 | ||||
| -rw-r--r-- | src/services/ReportingService.ts | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/services/MomentServices.ts b/src/services/MomentServices.ts index ed868582..96643bc3 100644 --- a/src/services/MomentServices.ts +++ b/src/services/MomentServices.ts @@ -69,9 +69,9 @@ export const postMomentComment = async ( export const getMomentCommentsCount = async ( momentId: string, callback: Function, - token: string, ) => { try { + const token = await AsyncStorage.getItem('token'); const response = await fetch(COMMENTS_ENDPOINT + `${momentId}/`, { method: 'GET', headers: { diff --git a/src/services/ReportingService.ts b/src/services/ReportingService.ts index 2650a703..1563d086 100644 --- a/src/services/ReportingService.ts +++ b/src/services/ReportingService.ts @@ -2,14 +2,15 @@ import {REPORT_ISSUE_ENDPOINT} from '../constants'; import {Alert} from 'react-native'; +import AsyncStorage from '@react-native-community/async-storage'; export const sendReport = async ( moment_id: string, message: string, - token: string, - callback: Function, + callback?: Function, ) => { try { + let token = await AsyncStorage.getItem('token'); let response = await fetch(REPORT_ISSUE_ENDPOINT, { method: 'POST', body: JSON.stringify({ @@ -28,7 +29,9 @@ export const sendReport = async ( } else { Alert.alert('Something went wrong!', 'Please try again.'); } - callback(false); + if (callback) { + callback(); + } } catch (error) { Alert.alert('Something went wrong!', 'Please try again.'); console.log( |
