-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWind.js
138 lines (116 loc) · 3.92 KB
/
MainWind.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import {Text, SafeAreaView, TouchableOpacity, Image } from 'react-native';
import React, {useState, useLayoutEffect} from 'react';
import * as MediaLibrary from 'expo-media-library';
import axios from 'axios'
import {styles} from './styles'
export const MainWind = () => {
const [Pic, setPic] = useState()
const [LikedPhotos, setLikedPhotos] = useState(0)
const [num, setNum] = useState(0)
const [LikedArr, setLikedArr] = useState([])
const [main, setMain] = useState('flex')
const [ArrStat, setArrStat] = useState('none')
const [I, setI] = useState(0)
const [status, requestPermission] = MediaLibrary.usePermissions();
// some consts for styles and elements
//const asset = await MediaLibrary.createAssetAsync(LikedArr[I]);
const savePhoto = () =>{
requestPermission()
MediaLibrary.getAlbumAsync("moonLight").then(res => {res != null ? MediaLibrary.addAssetsToAlbumAsync(LikedArr[I], "moonLight"):
MediaLibrary.createAlbumAsync("moonLight")}
)
}
const displayLiked = {
display: ArrStat
};
const colorStyles = {
display: main
};
const hideMain = () =>{
if (LikedArr[0] == null) return 0
setMain('none')
setArrStat('flex')
}
const checkEx = (Pic) =>{
LikedArr.push(Pic)
setLikedArr(LikedArr)
}
const showPhoto = () =>{
axios.get('https://picsum.photos/200/300').then(response =>{
response.request.responseURL == Pic ? () => showPhoto() :
setPic(response.request.responseURL)
}
);
}
const likePhoto = () =>{
showPhoto()
setLikedPhotos(LikedPhotos + 1)
checkEx(Pic)
setNum(num + 1)
}
const nextPhoto = () =>{
if (LikedArr[I+1] == null) return 0
setI(I+1)
}
const prevPhoto = () =>{
if (LikedArr[I-1] == null) return 0
setI(I - 1)
}
const goBackToMain = () =>{
setMain('flex')
setArrStat('none')
}
useLayoutEffect(showPhoto, []);
return (<>
<SafeAreaView style={[styles.containerLiked, displayLiked ]}>
<SafeAreaView style={[styles.innerContainer, colorStyles, displayLiked]} >
<Image key={I} source={{uri : LikedArr[I]}} style={styles.kartinka}/>
</SafeAreaView>
<SafeAreaView style={styles.buttons}>
<TouchableOpacity style={styles.button}
onPress={() => savePhoto()}
>
<Text style={styles.buttonText}>Save</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button}
onPress={() => goBackToMain()}
>
<Text style={styles.buttonText}>Back</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button}
onPress={() => prevPhoto()}
>
<Text style={styles.buttonText}>Prev</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.button}
onPress={() => nextPhoto()}
>
<Text style={styles.buttonText}>Next</Text>
</TouchableOpacity>
</SafeAreaView>
</SafeAreaView>
<SafeAreaView style={[styles.container, colorStyles]} >
<SafeAreaView style={[styles.innerContainer, colorStyles]} >
<Image source={{uri : Pic}} style={styles.kartinka} />
</SafeAreaView>
<SafeAreaView style={styles.buttons}>
<TouchableOpacity style={styles.button}
onPress={() => showPhoto()}
>
<Text style={styles.buttonText}>-</Text>
</TouchableOpacity>
<TouchableOpacity
onPress={() => likePhoto()}
style={styles.button}>
<Text style={styles.buttonText}>♥</Text>
</TouchableOpacity>
<TouchableOpacity
onPress={() => hideMain()}
style={styles.buttonShow}>
<Text style={styles.buttonText}>Show</Text>
</TouchableOpacity>
</SafeAreaView>
</SafeAreaView>
</>
)
}