Skip to content

Commit

Permalink
Af feature selfguidedschema (#68)
Browse files Browse the repository at this point in the history
* Changes on Single Audio Screen

* Add image to selfguided tour schema

* Fix Booking.js

* Removed Audio files from this branch
  • Loading branch information
alefaissal authored and TienSFU25 committed Dec 10, 2019
1 parent 4bb43c7 commit e6c730a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions client/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ PODS:
- React-jsinspector (0.61.5)
- react-native-blur (0.8.0):
- React
- react-native-image-picker (1.1.0):
- React
- React-RCTActionSheet (0.61.5):
- React-Core/RCTActionSheetHeaders (= 0.61.5)
- React-RCTAnimation (0.61.5):
Expand Down Expand Up @@ -227,6 +229,8 @@ PODS:
- React
- RNScreens (1.0.0-alpha.23):
- React
- RNSoundPlayer (0.10.3):
- React
- Yoga (1.14.0)

DEPENDENCIES:
Expand All @@ -247,6 +251,7 @@ DEPENDENCIES:
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
- "react-native-blur (from `../node_modules/@react-native-community/blur`)"
- react-native-image-picker (from `../node_modules/react-native-image-picker`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
Expand All @@ -262,6 +267,7 @@ DEPENDENCIES:
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
- RNReanimated (from `../node_modules/react-native-reanimated`)
- RNScreens (from `../node_modules/react-native-screens`)
- RNSoundPlayer (from `../node_modules/react-native-sound-player`)
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)

SPEC REPOS:
Expand Down Expand Up @@ -299,6 +305,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/jsinspector"
react-native-blur:
:path: "../node_modules/@react-native-community/blur"
react-native-image-picker:
:path: "../node_modules/react-native-image-picker"
React-RCTActionSheet:
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
React-RCTAnimation:
Expand Down Expand Up @@ -327,6 +335,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-reanimated"
RNScreens:
:path: "../node_modules/react-native-screens"
RNSoundPlayer:
:path: "../node_modules/react-native-sound-player"
Yoga:
:path: "../node_modules/react-native/ReactCommon/yoga"

Expand All @@ -347,6 +357,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: d5525f9ed5f782fdbacb64b9b01a43a9323d2386
React-jsinspector: fa0ecc501688c3c4c34f28834a76302233e29dc0
react-native-blur: cad4d93b364f91e7b7931b3fa935455487e5c33c
react-native-image-picker: 7a85cf7b0a53845f03ae52fb4592a2748ded069b
React-RCTActionSheet: 600b4d10e3aea0913b5a92256d2719c0cdd26d76
React-RCTAnimation: 791a87558389c80908ed06cc5dfc5e7920dfa360
React-RCTBlob: d89293cc0236d9cb0933d85e430b0bbe81ad1d72
Expand All @@ -361,6 +372,7 @@ SPEC CHECKSUMS:
RNGestureHandler: 946a7691e41df61e2c4b1884deab41a4cdc3afff
RNReanimated: b2ab0b693dddd2339bd2f300e770f6302d2e960c
RNScreens: f28b48b8345f2f5f39ed6195518291515032a788
RNSoundPlayer: 36fe7b7390a62c81a7eb4deeca07420399699872
Yoga: f2a7cd4280bfe2cca5a7aed98ba0eb3d1310f18b

PODFILE CHECKSUM: 26c1dc71a74a5035f07d8cae1aea550eb7ff2701
Expand Down
4 changes: 3 additions & 1 deletion client/js/screens/Booking/Booking.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import React from 'react';
import {Text} from 'react-native';

const Booking = props => {
return <Text>Hello Booking</Text>;
const Booking = props => {
return <Text>Hello Booking</Text>;
};
};

export default Booking;
1 change: 1 addition & 0 deletions server/prisma/datamodel.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ type SelfGuidedTour{
id: ID! @id
title: String!
location: String!
image: String
duration: Float!
difficulty: Difficulty!
distance: String!
Expand Down

0 comments on commit e6c730a

Please sign in to comment.