FormHandler in the Bucket











up vote
0
down vote

favorite












So, i'm trying to set this string to get uri of the image and the article, but i'm using positions and setting new key to create a new entry... How can i set this form with uri of the image? I'm not set yet the getDownload() method.



I already had the upload and it's working, now i need to storage in the bucket.



 submitFormHandler = () => {
console.log("FormHandler: " + this.state.message)
let isFormValid = true;
let dataToSubmit = {};
const formCopy = this.state.form;

var user = firebase.auth().currentUser;

for (let key in formCopy) {
isFormValid = isFormValid && formCopy[key].valid;
dataToSubmit[key] = this.state.form[key].value;
}

if (isFormValid, user) {
this.setState({
loading: true
});

getTokens((value) => {
const imageRef = firebase.storage().ref('images/').child(imageSource.uri)
const dateNow = new Date();
const expiration = dateNow.getTime();
const form = {
...dataToSubmit,
uid: value[3][1]
}

if (expiration > value[2][1]) {
this.props.autoSignIn(value[1][1]).then(() => {
setTokens(this.props.User.userData, () => {

this.props.addArticle(form, this.props.User.userData.token).then(() => {
this.setState({ modalSuccess: true })
})
})
})
} else {
this.props.addArticle(form, value[0][1]).then(() => {
this.setState({ modalSuccess: true })
})
}
})

} else {
let errorsArray = ;

for (let key in formCopy) {
if (!formCopy[key].valid) {
errorsArray.push(formCopy[key].errorMsg)
}
}

this.setState({
loading: false,
upload: true,
hasErrors: true,
modalVisible: true,
errorsArray
})
}
}

showErrorsArray = (errors) => (
errors ?
errors.map((item, i) => (
<Text key={i} style={styles.errorItem}> - {item}</Text>
))
: null
)

clearErrors = () => {
this.setState({
hasErrors: false,
modalVisible: false,
errorsArray:
})
}

resetScreen = () => {
const formCopy = this.state.form;

for (let key in formCopy) {
formCopy[key].valid = false;
formCopy[key].value = "";
}

this.setState({
modalSuccess: false,
hasErrors: false,
errorsArray: ,
loading: false
})

this.props.resetArticle();

}









share|improve this question






















  • In its current formulation, your question is hard to understand. Also, the code seems to contain many lines unrelated to your question. Could you try to make the problem clearer and more focussed?
    – Carsten Führmann
    Nov 19 at 13:26










  • yes, i haven't put every thing, maybe you could understand more in here stackoverflow.com/questions/47661873/… , maybe you understand better.
    – J. Lopes
    Nov 19 at 15:26








  • 1




    sorry for my mistake... this is the link stackoverflow.com/questions/53377751/…
    – J. Lopes
    Nov 19 at 15:31















up vote
0
down vote

favorite












So, i'm trying to set this string to get uri of the image and the article, but i'm using positions and setting new key to create a new entry... How can i set this form with uri of the image? I'm not set yet the getDownload() method.



I already had the upload and it's working, now i need to storage in the bucket.



 submitFormHandler = () => {
console.log("FormHandler: " + this.state.message)
let isFormValid = true;
let dataToSubmit = {};
const formCopy = this.state.form;

var user = firebase.auth().currentUser;

for (let key in formCopy) {
isFormValid = isFormValid && formCopy[key].valid;
dataToSubmit[key] = this.state.form[key].value;
}

if (isFormValid, user) {
this.setState({
loading: true
});

getTokens((value) => {
const imageRef = firebase.storage().ref('images/').child(imageSource.uri)
const dateNow = new Date();
const expiration = dateNow.getTime();
const form = {
...dataToSubmit,
uid: value[3][1]
}

if (expiration > value[2][1]) {
this.props.autoSignIn(value[1][1]).then(() => {
setTokens(this.props.User.userData, () => {

this.props.addArticle(form, this.props.User.userData.token).then(() => {
this.setState({ modalSuccess: true })
})
})
})
} else {
this.props.addArticle(form, value[0][1]).then(() => {
this.setState({ modalSuccess: true })
})
}
})

} else {
let errorsArray = ;

for (let key in formCopy) {
if (!formCopy[key].valid) {
errorsArray.push(formCopy[key].errorMsg)
}
}

this.setState({
loading: false,
upload: true,
hasErrors: true,
modalVisible: true,
errorsArray
})
}
}

showErrorsArray = (errors) => (
errors ?
errors.map((item, i) => (
<Text key={i} style={styles.errorItem}> - {item}</Text>
))
: null
)

clearErrors = () => {
this.setState({
hasErrors: false,
modalVisible: false,
errorsArray:
})
}

resetScreen = () => {
const formCopy = this.state.form;

for (let key in formCopy) {
formCopy[key].valid = false;
formCopy[key].value = "";
}

this.setState({
modalSuccess: false,
hasErrors: false,
errorsArray: ,
loading: false
})

this.props.resetArticle();

}









share|improve this question






















  • In its current formulation, your question is hard to understand. Also, the code seems to contain many lines unrelated to your question. Could you try to make the problem clearer and more focussed?
    – Carsten Führmann
    Nov 19 at 13:26










  • yes, i haven't put every thing, maybe you could understand more in here stackoverflow.com/questions/47661873/… , maybe you understand better.
    – J. Lopes
    Nov 19 at 15:26








  • 1




    sorry for my mistake... this is the link stackoverflow.com/questions/53377751/…
    – J. Lopes
    Nov 19 at 15:31













up vote
0
down vote

favorite









up vote
0
down vote

favorite











So, i'm trying to set this string to get uri of the image and the article, but i'm using positions and setting new key to create a new entry... How can i set this form with uri of the image? I'm not set yet the getDownload() method.



I already had the upload and it's working, now i need to storage in the bucket.



 submitFormHandler = () => {
console.log("FormHandler: " + this.state.message)
let isFormValid = true;
let dataToSubmit = {};
const formCopy = this.state.form;

var user = firebase.auth().currentUser;

for (let key in formCopy) {
isFormValid = isFormValid && formCopy[key].valid;
dataToSubmit[key] = this.state.form[key].value;
}

if (isFormValid, user) {
this.setState({
loading: true
});

getTokens((value) => {
const imageRef = firebase.storage().ref('images/').child(imageSource.uri)
const dateNow = new Date();
const expiration = dateNow.getTime();
const form = {
...dataToSubmit,
uid: value[3][1]
}

if (expiration > value[2][1]) {
this.props.autoSignIn(value[1][1]).then(() => {
setTokens(this.props.User.userData, () => {

this.props.addArticle(form, this.props.User.userData.token).then(() => {
this.setState({ modalSuccess: true })
})
})
})
} else {
this.props.addArticle(form, value[0][1]).then(() => {
this.setState({ modalSuccess: true })
})
}
})

} else {
let errorsArray = ;

for (let key in formCopy) {
if (!formCopy[key].valid) {
errorsArray.push(formCopy[key].errorMsg)
}
}

this.setState({
loading: false,
upload: true,
hasErrors: true,
modalVisible: true,
errorsArray
})
}
}

showErrorsArray = (errors) => (
errors ?
errors.map((item, i) => (
<Text key={i} style={styles.errorItem}> - {item}</Text>
))
: null
)

clearErrors = () => {
this.setState({
hasErrors: false,
modalVisible: false,
errorsArray:
})
}

resetScreen = () => {
const formCopy = this.state.form;

for (let key in formCopy) {
formCopy[key].valid = false;
formCopy[key].value = "";
}

this.setState({
modalSuccess: false,
hasErrors: false,
errorsArray: ,
loading: false
})

this.props.resetArticle();

}









share|improve this question













So, i'm trying to set this string to get uri of the image and the article, but i'm using positions and setting new key to create a new entry... How can i set this form with uri of the image? I'm not set yet the getDownload() method.



I already had the upload and it's working, now i need to storage in the bucket.



 submitFormHandler = () => {
console.log("FormHandler: " + this.state.message)
let isFormValid = true;
let dataToSubmit = {};
const formCopy = this.state.form;

var user = firebase.auth().currentUser;

for (let key in formCopy) {
isFormValid = isFormValid && formCopy[key].valid;
dataToSubmit[key] = this.state.form[key].value;
}

if (isFormValid, user) {
this.setState({
loading: true
});

getTokens((value) => {
const imageRef = firebase.storage().ref('images/').child(imageSource.uri)
const dateNow = new Date();
const expiration = dateNow.getTime();
const form = {
...dataToSubmit,
uid: value[3][1]
}

if (expiration > value[2][1]) {
this.props.autoSignIn(value[1][1]).then(() => {
setTokens(this.props.User.userData, () => {

this.props.addArticle(form, this.props.User.userData.token).then(() => {
this.setState({ modalSuccess: true })
})
})
})
} else {
this.props.addArticle(form, value[0][1]).then(() => {
this.setState({ modalSuccess: true })
})
}
})

} else {
let errorsArray = ;

for (let key in formCopy) {
if (!formCopy[key].valid) {
errorsArray.push(formCopy[key].errorMsg)
}
}

this.setState({
loading: false,
upload: true,
hasErrors: true,
modalVisible: true,
errorsArray
})
}
}

showErrorsArray = (errors) => (
errors ?
errors.map((item, i) => (
<Text key={i} style={styles.errorItem}> - {item}</Text>
))
: null
)

clearErrors = () => {
this.setState({
hasErrors: false,
modalVisible: false,
errorsArray:
})
}

resetScreen = () => {
const formCopy = this.state.form;

for (let key in formCopy) {
formCopy[key].valid = false;
formCopy[key].value = "";
}

this.setState({
modalSuccess: false,
hasErrors: false,
errorsArray: ,
loading: false
})

this.props.resetArticle();

}






javascript ios arrays react-native






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 19 at 11:50









J. Lopes

12




12












  • In its current formulation, your question is hard to understand. Also, the code seems to contain many lines unrelated to your question. Could you try to make the problem clearer and more focussed?
    – Carsten Führmann
    Nov 19 at 13:26










  • yes, i haven't put every thing, maybe you could understand more in here stackoverflow.com/questions/47661873/… , maybe you understand better.
    – J. Lopes
    Nov 19 at 15:26








  • 1




    sorry for my mistake... this is the link stackoverflow.com/questions/53377751/…
    – J. Lopes
    Nov 19 at 15:31


















  • In its current formulation, your question is hard to understand. Also, the code seems to contain many lines unrelated to your question. Could you try to make the problem clearer and more focussed?
    – Carsten Führmann
    Nov 19 at 13:26










  • yes, i haven't put every thing, maybe you could understand more in here stackoverflow.com/questions/47661873/… , maybe you understand better.
    – J. Lopes
    Nov 19 at 15:26








  • 1




    sorry for my mistake... this is the link stackoverflow.com/questions/53377751/…
    – J. Lopes
    Nov 19 at 15:31
















In its current formulation, your question is hard to understand. Also, the code seems to contain many lines unrelated to your question. Could you try to make the problem clearer and more focussed?
– Carsten Führmann
Nov 19 at 13:26




In its current formulation, your question is hard to understand. Also, the code seems to contain many lines unrelated to your question. Could you try to make the problem clearer and more focussed?
– Carsten Führmann
Nov 19 at 13:26












yes, i haven't put every thing, maybe you could understand more in here stackoverflow.com/questions/47661873/… , maybe you understand better.
– J. Lopes
Nov 19 at 15:26






yes, i haven't put every thing, maybe you could understand more in here stackoverflow.com/questions/47661873/… , maybe you understand better.
– J. Lopes
Nov 19 at 15:26






1




1




sorry for my mistake... this is the link stackoverflow.com/questions/53377751/…
– J. Lopes
Nov 19 at 15:31




sorry for my mistake... this is the link stackoverflow.com/questions/53377751/…
– J. Lopes
Nov 19 at 15:31

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374051%2fformhandler-in-the-bucket%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374051%2fformhandler-in-the-bucket%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]