This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import BottomSheet, { BottomSheetView } from '@gorhom/bottom-sheet'; | |
import { StyleSheet, Text, useWindowDimensions } from 'react-native'; | |
import { GestureHandlerRootView } from 'react-native-gesture-handler'; | |
import Animated, { interpolate, useAnimatedStyle, useSharedValue } from 'react-native-reanimated'; | |
import { SafeAreaProvider, useSafeAreaInsets } from "react-native-safe-area-context"; | |
function App() { | |
const dimensions = useWindowDimensions(); | |
const insets = useSafeAreaInsets(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// check version | |
node -v || node --version | |
// list locally installed versions of node | |
nvm ls | |
// list remove available versions of node | |
nvm ls-remote | |
// install specific version of node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import AsyncStorage from '@react-native-async-storage/async-storage'; | |
import create from 'zustand'; | |
import { persist } from 'zustand/middleware'; | |
export const useSomthingStore = create<TSomthingStore>( | |
persist( | |
(set, get) => ({ | |
isTrue: false, | |
_hasHydrated: false, | |
setHasHydrated: state => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jest.mock('@react-navigation/native', () => { | |
return { | |
useNavigation: () => ({ | |
navigate: jest.fn(), | |
dispatch: jest.fn(), | |
}), | |
useRoute: () => ({ | |
params: { | |
id: '123', | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { device, element, by, expect } from 'detox'; | |
describe('StudioGhibliSearchEngineApp', () => { | |
beforeEach(async () => { | |
await device.reloadReactNative(); | |
}); | |
it('should display heading', async () => { | |
await waitFor(element(by.id('search-page'))).toBeVisible().withTimeout(5000); | |
await expect(element(by.id('heading'))).toBeVisible(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { device, element, by, expect } from 'detox'; | |
describe('Search', () => { | |
beforeEach(async () => { | |
await device.reloadReactNative(); | |
}); | |
it('should show a list of results and go to film details', async () => { | |
await waitFor(element(by.id('search-page'))) | |
.toBeVisible() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { device, element, by, expect } from 'detox'; | |
describe('<your page>', () => { | |
beforeEach(async () => { | |
await device.reloadReactNative(); | |
}); | |
it('should ...', async () => { | |
await waitFor(element(by.id('your page testID'))) | |
.toBeVisible() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"2023":{ | |
"2023-05":{ | |
"2023-05-1":{ | |
"location": "Mediterania Garden Residence", | |
"startTime": "08.00", | |
"endTime": "17.00", | |
"address": "Main Lobby, Apartment Mediterania Garden Residence 1 (Bougenville Tower)", | |
"image": "https://asset.kompas.com/crops/BFQQ80bdcr1_P5L_BglS4Gwd82E=/0x1068:3072x3116/750x500/data/photo/2021/02/09/602286cc9e72a.jpeg", | |
"clockIn":"07.50", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"image":"https://picsum.photos/400" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOG learnerid: 25209472407394 | |
LOG PL Next Assesment Response Data: {"assessment_id": "27483269192103", "assessment_version": 0.5, "status": "available", "target_group": "students"} | |
LOG assessment_id: 27483269192103 | |
[{"DisplayOrder": 2, "Group": "Personal Growth", "Question": "Where are you now in your academic career & how do you feel towards it?", "answers": [[Object], [Object], [Object], [Object], [Object], [Object], [Object], [Object], [Object]], "id": "5143712996293"}, {"DisplayOrder": 3, "Group": "Personal Growth", "Question": "Out of the following, what would you like to accomplish?", "answers": [[Object], [Object], [Object], [Object], [Object], [Object], [Object], [Object], [Object], [Object], [Object], [Object]], "id": "52477710108843"}, {"DisplayOrder": 4, "Group": "Personal Growth", "Question": "How important is it for you to achieve these outcomes", "answers": [[Object], [Object], [Object], [Object], [Object], [Object], [Object]], "id": "107696104477360"}, {"DisplayOrder": 5, "Group": " |
NewerOlder