multiple image upload one by one with delete and change option with preview










0















I am trying to upload image one by one with change and delete option(for each image uploaded) in multiple view with react, apollo client. But with this I can't get the clear thought about how to perform this easily and confused a lot..



Please anyone help me to get rid of this...

**updated**


Hi now i am using react-dropzonecomponent so far, but here i did mutiple file upload with delete option only..

Here i can send the files to server(node using mulitpart form data), in DB create the file in server end and store the path in database with path name only... But here i can't show the image files in front end from the path got from Back end...



const initialState = 
files: ,
imagePreviewUrl:
;

class Image extends React.Component
constructor(props)
super(props);
this.state = ...initialState ;


componentWillMount()
let match, data = this.props;
const id = match.params.id && match.params.id.slice(1);
if (id)
let currentProduct = (data && data.getProduct) && data.getProduct.find((data) =>
return data.id == id;
);
this.setState(
imagePreviewUrl: currentProduct.images
);



handleAdd(file)
console.log(file)
var allFiles = this.state.files;
allFiles = allFiles.concat([file]);
this.setState(
files: allFiles
);


handleRemove(file)
let allFiles = this.state.files;
this.state.files.forEach((itr, i) =>
if (itr.upload.uuid == file.upload.uuid)
allFiles.splice(i, 1)

);
this.setState(
files: allFiles
);
console.log(this.state.files, allFiles, file)



render()
let match, classes, data = this.props;
let imagePreviewUrl = this.state;
const id = match.params.id && match.params.id.slice(1);
var self = this;
return (
<GridContainer>
<DropzoneComponent
config=
postUrl: 'no-url',
iconFiletypes: ['.jpg', '.png', '.gif'],
showFiletypeIcon: true

eventHandlers=

addedfile: (file) => this.handleAdd(file),
removedfile: (file) => this.handleRemove(file),
init: (dropzone) =>
console.log(dropzone)


djsConfig=
autoProcessQueue: false,
addRemoveLinks: true,
previewTemplate: ReactDOMServer.renderToStaticMarkup(
...<img data-dz-thumbnail="true" /> ...) />
</GridContainer>
);



export default withStyles(style)(Image);









share|improve this question
























  • can you share your code?

    – lomse
    Nov 15 '18 at 8:50











  • @lomse, I edited the post with code please have a look at it

    – user10269224
    Nov 15 '18 at 10:29
















0















I am trying to upload image one by one with change and delete option(for each image uploaded) in multiple view with react, apollo client. But with this I can't get the clear thought about how to perform this easily and confused a lot..



Please anyone help me to get rid of this...

**updated**


Hi now i am using react-dropzonecomponent so far, but here i did mutiple file upload with delete option only..

Here i can send the files to server(node using mulitpart form data), in DB create the file in server end and store the path in database with path name only... But here i can't show the image files in front end from the path got from Back end...



const initialState = 
files: ,
imagePreviewUrl:
;

class Image extends React.Component
constructor(props)
super(props);
this.state = ...initialState ;


componentWillMount()
let match, data = this.props;
const id = match.params.id && match.params.id.slice(1);
if (id)
let currentProduct = (data && data.getProduct) && data.getProduct.find((data) =>
return data.id == id;
);
this.setState(
imagePreviewUrl: currentProduct.images
);



handleAdd(file)
console.log(file)
var allFiles = this.state.files;
allFiles = allFiles.concat([file]);
this.setState(
files: allFiles
);


handleRemove(file)
let allFiles = this.state.files;
this.state.files.forEach((itr, i) =>
if (itr.upload.uuid == file.upload.uuid)
allFiles.splice(i, 1)

);
this.setState(
files: allFiles
);
console.log(this.state.files, allFiles, file)



render()
let match, classes, data = this.props;
let imagePreviewUrl = this.state;
const id = match.params.id && match.params.id.slice(1);
var self = this;
return (
<GridContainer>
<DropzoneComponent
config=
postUrl: 'no-url',
iconFiletypes: ['.jpg', '.png', '.gif'],
showFiletypeIcon: true

eventHandlers=

addedfile: (file) => this.handleAdd(file),
removedfile: (file) => this.handleRemove(file),
init: (dropzone) =>
console.log(dropzone)


djsConfig=
autoProcessQueue: false,
addRemoveLinks: true,
previewTemplate: ReactDOMServer.renderToStaticMarkup(
...<img data-dz-thumbnail="true" /> ...) />
</GridContainer>
);



export default withStyles(style)(Image);









share|improve this question
























  • can you share your code?

    – lomse
    Nov 15 '18 at 8:50











  • @lomse, I edited the post with code please have a look at it

    – user10269224
    Nov 15 '18 at 10:29














0












0








0








I am trying to upload image one by one with change and delete option(for each image uploaded) in multiple view with react, apollo client. But with this I can't get the clear thought about how to perform this easily and confused a lot..



Please anyone help me to get rid of this...

**updated**


Hi now i am using react-dropzonecomponent so far, but here i did mutiple file upload with delete option only..

Here i can send the files to server(node using mulitpart form data), in DB create the file in server end and store the path in database with path name only... But here i can't show the image files in front end from the path got from Back end...



const initialState = 
files: ,
imagePreviewUrl:
;

class Image extends React.Component
constructor(props)
super(props);
this.state = ...initialState ;


componentWillMount()
let match, data = this.props;
const id = match.params.id && match.params.id.slice(1);
if (id)
let currentProduct = (data && data.getProduct) && data.getProduct.find((data) =>
return data.id == id;
);
this.setState(
imagePreviewUrl: currentProduct.images
);



handleAdd(file)
console.log(file)
var allFiles = this.state.files;
allFiles = allFiles.concat([file]);
this.setState(
files: allFiles
);


handleRemove(file)
let allFiles = this.state.files;
this.state.files.forEach((itr, i) =>
if (itr.upload.uuid == file.upload.uuid)
allFiles.splice(i, 1)

);
this.setState(
files: allFiles
);
console.log(this.state.files, allFiles, file)



render()
let match, classes, data = this.props;
let imagePreviewUrl = this.state;
const id = match.params.id && match.params.id.slice(1);
var self = this;
return (
<GridContainer>
<DropzoneComponent
config=
postUrl: 'no-url',
iconFiletypes: ['.jpg', '.png', '.gif'],
showFiletypeIcon: true

eventHandlers=

addedfile: (file) => this.handleAdd(file),
removedfile: (file) => this.handleRemove(file),
init: (dropzone) =>
console.log(dropzone)


djsConfig=
autoProcessQueue: false,
addRemoveLinks: true,
previewTemplate: ReactDOMServer.renderToStaticMarkup(
...<img data-dz-thumbnail="true" /> ...) />
</GridContainer>
);



export default withStyles(style)(Image);









share|improve this question
















I am trying to upload image one by one with change and delete option(for each image uploaded) in multiple view with react, apollo client. But with this I can't get the clear thought about how to perform this easily and confused a lot..



Please anyone help me to get rid of this...

**updated**


Hi now i am using react-dropzonecomponent so far, but here i did mutiple file upload with delete option only..

Here i can send the files to server(node using mulitpart form data), in DB create the file in server end and store the path in database with path name only... But here i can't show the image files in front end from the path got from Back end...



const initialState = 
files: ,
imagePreviewUrl:
;

class Image extends React.Component
constructor(props)
super(props);
this.state = ...initialState ;


componentWillMount()
let match, data = this.props;
const id = match.params.id && match.params.id.slice(1);
if (id)
let currentProduct = (data && data.getProduct) && data.getProduct.find((data) =>
return data.id == id;
);
this.setState(
imagePreviewUrl: currentProduct.images
);



handleAdd(file)
console.log(file)
var allFiles = this.state.files;
allFiles = allFiles.concat([file]);
this.setState(
files: allFiles
);


handleRemove(file)
let allFiles = this.state.files;
this.state.files.forEach((itr, i) =>
if (itr.upload.uuid == file.upload.uuid)
allFiles.splice(i, 1)

);
this.setState(
files: allFiles
);
console.log(this.state.files, allFiles, file)



render()
let match, classes, data = this.props;
let imagePreviewUrl = this.state;
const id = match.params.id && match.params.id.slice(1);
var self = this;
return (
<GridContainer>
<DropzoneComponent
config=
postUrl: 'no-url',
iconFiletypes: ['.jpg', '.png', '.gif'],
showFiletypeIcon: true

eventHandlers=

addedfile: (file) => this.handleAdd(file),
removedfile: (file) => this.handleRemove(file),
init: (dropzone) =>
console.log(dropzone)


djsConfig=
autoProcessQueue: false,
addRemoveLinks: true,
previewTemplate: ReactDOMServer.renderToStaticMarkup(
...<img data-dz-thumbnail="true" /> ...) />
</GridContainer>
);



export default withStyles(style)(Image);






reactjs apollo-client






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 15 '18 at 10:28







user10269224

















asked Nov 15 '18 at 5:55









user10269224user10269224

156




156












  • can you share your code?

    – lomse
    Nov 15 '18 at 8:50











  • @lomse, I edited the post with code please have a look at it

    – user10269224
    Nov 15 '18 at 10:29


















  • can you share your code?

    – lomse
    Nov 15 '18 at 8:50











  • @lomse, I edited the post with code please have a look at it

    – user10269224
    Nov 15 '18 at 10:29

















can you share your code?

– lomse
Nov 15 '18 at 8:50





can you share your code?

– lomse
Nov 15 '18 at 8:50













@lomse, I edited the post with code please have a look at it

– user10269224
Nov 15 '18 at 10:29






@lomse, I edited the post with code please have a look at it

– user10269224
Nov 15 '18 at 10:29













0






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',
autoActivateHeartbeat: false,
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%2f53313259%2fmultiple-image-upload-one-by-one-with-delete-and-change-option-with-preview%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53313259%2fmultiple-image-upload-one-by-one-with-delete-and-change-option-with-preview%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







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3