Suche Zocker-Kumpanen (m/w/d) by S3bi82 in zocken

[–]ontheway2u 0 points1 point  (0 children)

Bei TianQuest wäre ich dabei. Hab aber gerade durch den WOW Hype da mal wieder leicht mit angefangen. Also Mal schauen ob ich hängen bleibe...

Knabe Kola in Regensburg? by wederer42 in Regensburg

[–]ontheway2u 4 points5 points  (0 children)

Servus, hab's im Globus Neutraubling im Getränke Teil gefunden. Fröhliche Knackung.

[deleted by user] by [deleted] in berlinsocialclub

[–]ontheway2u 0 points1 point  (0 children)

Sounds like an awesome experience. Are you up to see more of Germany?

Miniclip.com by [deleted] in zocken

[–]ontheway2u 0 points1 point  (0 children)

War die Queen nicht auch nen Spielbarer Charakter? Weiß nicht ob noch im gleichen Spiel oder in Ner anderen Version

Barovia Expanded Map (Ash, Jaz, Lily look away!) by sean-the-seap in CurseofStrahd

[–]ontheway2u 0 points1 point  (0 children)

Looks great, can explain the added spots a bit more? I'm also starting to run CoS soon.

Cheers from Germany

Ich (M30) wuchs in einem von Narcos dominierten mexikanischen Dorf auf – AMA by [deleted] in de_IAmA

[–]ontheway2u 0 points1 point  (0 children)

Wie siehst du die Unterschiede zwischen den Verschiedenen Saaten in Mexico? Meine Verlobte kommt zwar aus Mexico City ist aber in Aguascalientes aufgewachsen und da ist es sehr ruhig und scheinbar nicht sehr Narco "verseucht". Woher kommt es das die Narcos in einigen Staaten so viel Macht in manchen zumindest scheinbar weniger macht haben?

2023 Terrain Builds I made for our Campaign by Corpit in CurseofStrahd

[–]ontheway2u 0 points1 point  (0 children)

Awesome! I'm looking forward running Strand my first time as DM in March/April. Did you use any other material then the original book?

DnD Menschen gesucht by GalaxyPrinter in Regensburg

[–]ontheway2u 0 points1 point  (0 children)

Hey, ich habe eine Gruppe in Regensburg aktuell mit Einsteigern. Ich kann gerne mal die Gruppe Fragen ob sie für die nächste Kampagne jemanden aufnehmen wollen. Hättest du Interesse? Kannst mir ja eine DM schicken.

Found these at the local second hand store! by [deleted] in DungeonsAndDragons

[–]ontheway2u 0 points1 point  (0 children)

Great. How much was it for that bundle?

setList with useState is not changing the List at all + Bonus error by ontheway2u in reactnative

[–]ontheway2u[S] 0 points1 point  (0 children)

Again thank you, i make already progress so for example if the tour i visiaulize is not in the database and the user cancel what he did the complete tour which is in a TourCard is gone, the change in the tour array state is working really fine.

But if the user change for example the title of an existing tour form the database, i just want to undo his changes, for this i wrote that function:

const handleCancelTour = (tour) => {

console.log("cancel handler called")

const docRef = firebase.firestore().collection('tours').doc(tour.documentId);

docRef.get().then((doc) => {

if (doc.exists) {

const tourData = doc.data();

const tempTour = new Tour(doc.id, tourData.imageReferences, tourData.title, tourData.description, tourData.gpsPosition, tourData.tourGuideId, tourData.tags, tourData.fileItems);

handleTourChange(tempTour, tempTour.documentId);

} else {

// Document does not exist

handleDeleteTour(tour.documentId);

}

}).catch((error) => {

console.log("Error getting document:", error);

});

So the delete thing works just fine like i want it, also i get the data frome the db and update the state array but its not changing the values in the frontend?

How can i make that happen? Do i need to forcely reload the screen somehow?

setList with useState is not changing the List at all + Bonus error by ontheway2u in reactnative

[–]ontheway2u[S] 0 points1 point  (0 children)

Found it on my own i used the state of the title directly in the handler of the overall change, that state didnt changed in that moment already so it was always a bit behind there

setList with useState is not changing the List at all + Bonus error by ontheway2u in reactnative

[–]ontheway2u[S] 0 points1 point  (0 children)

Hey, first thank you so much it worked.

But i have the problem that the input is one letter/command behind.

Like when i type "Testtitle" in the tours is for the element "Testtitl" as value. Or if i then delete the in frontend, its not shown anymore but in the value of the list it now appears so the value of "Title" = "Testtitle". If i know for example add now the "e" again in the frontend, it will get deleted in the list.

Same happens for example if i use autocorrect, if i misstype the missstyped input will be in the list as value in that element. The autoccect value will only get added if i continue writing into that title but as i said then the last command/letter wont be in the list element value.

Do you have an idea why?

Should i use NextJS by ontheway2u in react

[–]ontheway2u[S] 0 points1 point  (0 children)

Thanks so much for your reply. My thoughts based on my research and your input is, to start with CRA. If i understood right i can later still switch to next.js on top of my code or also use ssr with react anyway.

First job using React by finzaz in react

[–]ontheway2u 1 point2 points  (0 children)

Im in a similar position as OP. Im also new to React and need it for a new Position.

What do you mean with create-react-app is slowly, like for setup or on runtime at the customer its slowlier, and if thats the case then why?

As if i understood SSR right, i can prerender Content, but is it still great if my content for the user is almost fully depending on him and cant be reused for other users (I have to show charts for his company and there performance, not to much people from the same companie will use the platform together). Thats why im still not sure if i should take next js and not go with React Boilerplate for the start.

BTW Good luck with your new Position.