-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
438 lines (421 loc) · 14.6 KB
/
App.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
import React, { useEffect, useRef, useState } from "react";
import {
View,
TouchableOpacity,
Text,
Image,
TextInput,
ScrollView,
SafeAreaView,
Dimensions,
} from "react-native";
import Share from "react-native-share";
import Back from "./back";
import { useFonts } from "expo-font";
import { captureRef } from "react-native-view-shot";
import { FontAwesome } from "@expo/vector-icons";
import ColorPickerr from "./colorPick";
import Card from "./card";
const ShareToInstagramStory = () => {
const viewRef = useRef(null);
const [fontsLoaded] = useFonts({
Circular: require("./CircularSpotifyText-Bold.otf"),
Climate: require("./ClimateCrisis-1990.otf"),
Gotham: require("./Gotham-Light.otf"),
});
const [visualizza, setVisualizza] = useState(false);
useEffect(() => {
if (!fontsLoaded) {
setVisualizza(false);
} else {
setVisualizza(true);
}
}, [fontsLoaded]);
const [hasInstagramInstalled, setHasInstagramInstalled] = useState(false);
const [hasWhatsappInstalled, setHasWhatsappInstalled] = useState(false);
const [hasSnapchatInstalled, setHasSnapchatInstalled] = useState(false);
useEffect(() => {
Share.isPackageInstalled("com.instagram.android").then(({ isInstalled }) => {
setHasInstagramInstalled(isInstalled);
});
Share.isPackageInstalled("com.whatsapp").then(({ isInstalled }) => {
setHasWhatsappInstalled(isInstalled);
});
Share.isPackageInstalled("com.snapchat.android").then(({ isInstalled }) => {
setHasSnapchatInstalled(isInstalled);
});
}, [visualizza]);
const onSharePressInstagram = async () => {
try {
const uri = await captureRef(viewRef, {
format: "png",
result: "data-uri",
quality: 1,
});
console.log(coloreBack);
const shareOptions = {
appId: "IL_TUO_APPID", // CAMBIATE IL APPID
//backgroundImage: Back, // image/jpeg
stickerImage: uri, // image/png
backgroundBottomColor: coloreBack,
backgroundTopColor: coloreBack,
attributionURL: "https://www.giaflix.it", // è in beta questa funzione
social: Share.Social.INSTAGRAM_STORIES,
forceDialog: true,
};
const result = await Share.shareSingle(shareOptions);
console.log(result);
} catch (error) {
console.log("Errore condivisione nelle storie IG :", error.message);
}
};
const onSharePressWhatsApp = async () => {
try {
setbordi(false); // Cambia momentaneamente i bordi della Card, in maniera che sia senza il border radius
const uri = await captureRef(viewRef, {
format: "png",
result: "data-uri",
quality: 1,
});
setbordi(true);
const shareOptions = { // potete inserire altre opzioni. trovate tutto sulla documentazione di react-native-share
message: "", // se volete inserire un messaggio custom
url: uri,
social: Share.Social.WHATSAPP,
};
const result = await Share.shareSingle(shareOptions);
console.log(result);
} catch (error) {
console.log("Errore condivisione su WhatsApp :", error.message);
}
};
const onSharePressSnapChat = async () => {
try {
setbordi(false); // Anche qui i bordi :)
const uri = await captureRef(viewRef, {
format: "png",
result: "data-uri",
quality: 1,
});
setbordi(true);
const shareOptions = { // anche qui se volete inserire altre opzioni, anche se tecnicamente non ci sono sulla libreria.. però potete sempre aggiungerli voi :)
message: "", // non dovrebbe funzionare su SnapChat
url: uri,
social: Share.Social.SNAPCHAT,
};
const result = await Share.shareSingle(shareOptions);
console.log(result);
} catch (error) {
console.log("Errore condivisione su SnapChat:", error.message);
}
};
const [testoCanzone, setTestoCanzone] = useState("Testo Canzone"); // Testo della vostra canzone
const [nomeCanzone, setNomeCanzone] = useState("La musica"); // Nome delle canzone
const [cantante, setCantante] = useState("GiaFlix"); // il nome del cantante
const [immagineUrl, setImmagineUrl] = useState("https://api.giaflix.it/new/logo.png"); // il link dell'immagine
const [coloreView, setColoreView] = useState("red"); // colore della Card
const [coloreBack, setColoreBack] = useState("#ffcccb"); // colore background della Card SOLO PER INSTAGRAM
// controllo per far inserire il colore bianco come sfondo.. non ha senso in questo caso.
useEffect(() => {
if (
coloreView == "white" ||
coloreView == "#FFFFFF"
) {
setColoreView("red");
}
}, [coloreView, coloreBack]);
const [bordi, setbordi] = useState(true);
// Funzioni per settare i colori
const coloreFunzione = (data) => {
setColoreView(data);
};
const coloreFunzioneBack = (data) => {
setColoreBack(data);
};
return (
<>
{visualizza ? (
<>
<SafeAreaView />
<View
style={{
flex: 1,
}}
>
<Text
style={{
marginTop: 30,
textAlign: "center",
color: "black",
fontFamily: "Climate",
alignItems: "flex-end",
fontSize: 10 * 2,
marginVertical: 10,
}}
>
Generatore Musica{"\n"}da Giasin {/* Inserite quello che volete */}
</Text>
<ScrollView>
<View
style={{
marginTop: 0,
marginVertical: 10 * 4,
}}
>
<Card
immagineUrl={immagineUrl}
nomeCanzone={nomeCanzone}
cantante={cantante}
testoCanzone={testoCanzone}
coloreView={coloreView}
viewRef={viewRef}
bordi={bordi}
/>
<View
style={{
width: "80%",
alignSelf: "center",
}}
>
<TextInput
style={{
marginVertical: 10,
fontSize: 16,
borderWidth: 1,
borderColor: "black",
borderRadius: 10,
padding: 10 * 1.5,
}}
multiline
onChangeText={(text) => setTestoCanzone(text)}
value={testoCanzone}
placeholder="Inserisci qui il testo della canzone"
/>
<TextInput
style={{
marginVertical: 10,
fontSize: 16,
borderWidth: 1,
borderColor: "black",
borderRadius: 10,
padding: 10 * 1.5,
}}
onChangeText={(text) => setNomeCanzone(text)}
value={nomeCanzone}
placeholder="Inserisci qui il nome della canzone"
/>
<TextInput
style={{
marginVertical: 10,
fontSize: 16,
borderWidth: 1,
borderColor: "black",
borderRadius: 10,
padding: 10 * 1.5,
}}
onChangeText={(text) => setCantante(text)}
value={cantante}
placeholder="Inserisci qui il nome del cantante"
/>
<TextInput
style={{
marginVertical: 10,
fontSize: 16,
borderWidth: 1,
borderColor: "black",
borderRadius: 10,
padding: 10 * 1.5,
}}
multiline
onChangeText={(text) => setImmagineUrl(text)}
value={immagineUrl}
placeholder="Inserisci qui il URL per l'icona"
/>
<TextInput
style={{
marginVertical: 10,
fontSize: 16,
borderWidth: 1,
borderColor: "black",
borderRadius: 10,
padding: 10 * 1.5,
}}
autoCapitalize="none"
onChangeText={(text) => setColoreView(text)}
value={coloreView}
placeholder="Inserisci qui il colore (HEX)"
/>
<ColorPickerr
coloreCambiato={coloreFunzione}
immagineUrl={immagineUrl}
nomeCanzone={nomeCanzone}
cantante={cantante}
testoCanzone={testoCanzone}
viewRef={viewRef}
coloreView={coloreView}
bordi={bordi}
titolo={"Scegli il colore Sticker"}
/>
<ColorPickerr
coloreCambiato={coloreFunzioneBack}
immagineUrl={immagineUrl}
nomeCanzone={nomeCanzone}
cantante={cantante}
testoCanzone={testoCanzone}
viewRef={viewRef}
coloreView={coloreView}
back={true}
bordi={bordi}
titolo={"Scegli il colore background"}
/>
</View>
{hasInstagramInstalled && (
<TouchableOpacity
onPress={() => {
onSharePressInstagram(), console.log("Instagram");
}}
style={{
padding: 10,
marginVertical: 10,
width: "80%",
alignSelf: "center",
borderRadius: 20,
backgroundColor: coloreView,
alignContent: "center",
}}
>
<Text
style={{
textAlign: "center",
color: "white",
fontFamily: "Climate",
}}
>
<FontAwesome name="instagram" size={24} color="white" />{" "}
Condividi Su Instagram{" "}
<FontAwesome name="instagram" size={24} color="white" />
</Text>
</TouchableOpacity>
)}
{hasWhatsappInstalled && (
<TouchableOpacity
onPress={() => {
onSharePressWhatsApp(), console.log("WhatsApp");
}}
style={{
padding: 10,
width: "80%",
marginVertical: 10,
alignSelf: "center",
borderRadius: 20,
backgroundColor: coloreView,
alignContent: "center",
}}
>
<Text
style={{
textAlign: "center",
color: "white",
fontFamily: "Climate",
}}
>
<FontAwesome name="whatsapp" size={24} color="white" />{" "}
Condividi Su WhatsApp{" "}
<FontAwesome name="whatsapp" size={24} color="white" />
</Text>
</TouchableOpacity>
)}
{hasSnapchatInstalled && (
<TouchableOpacity
onPress={() => {
onSharePressSnapChat(), console.log("SnapChat");
}}
style={{
padding: 10,
width: "80%",
marginVertical: 10,
alignSelf: "center",
borderRadius: 20,
backgroundColor: coloreView,
alignContent: "center",
}}
>
<Text
style={{
textAlign: "center",
color: "white",
fontFamily: "Climate",
}}
>
<FontAwesome
name="snapchat-ghost"
size={24}
color="white"
/>{" "}
Condividi Su SnapChat{" "}
<FontAwesome
name="snapchat-ghost"
size={24}
color="white"
/>
</Text>
</TouchableOpacity>
)}
</View>
</ScrollView>
<Text
style={{
textAlign: "center",
color: "black",
fontFamily: "Climate",
alignSelf: "center",
verticalAlign: "middle",
fontSize: 10 * 2,
marginVertical: 10,
}}
>
GIAFLIX.IT
</Text>
</View>
</>
) : (
<>
<View
style={{
//alignSelf:"center",
justifyContent: "center",
backgroundColor: "red",
flex: 1,
}}
>
{console.log(Dimensions.get("window").width * 0.04)}
<View
style={{
alignContent: "center",
alignItems: "center",
alignSelf: "center",
justifyContent: "center",
}}
>
<Image
style={{
width: Dimensions.get("window").width * 0.4,
resizeMode: "contain",
}}
source={require("./assets/icon.png")}
/>
<Image
style={{
width: Dimensions.get("window").width * 0.4,
resizeMode: "contain",
}}
source={require("./assets/caricamento.png")}
/>
</View>
</View>
</>
)}
</>
);
};
export default ShareToInstagramStory;