I have a Codesandbox
I have this app that displays different files like jpg, mp4 or now docx files. I can’t make docx file position so it look good but jpg or mp4 is working OK.
Try it just open a doxc file.
In file FileContentRenderer.jsx here below I use switch case
and n open Component needed like docx-viewer.jsx
JavaScript
x
91
91
1
/* eslint-disable no-return-assign */
2
import React from "react";
3
import CardMedia from "@material-ui/core/CardMedia";
4
import { withStyles } from "@material-ui/core/styles";
5
import { DocxViewer, VideoViewer, UnsupportedViewer } from "./drivers";
6
7
const styles = () => ({
8
viewerWrapperMp4: {
9
background: "black",
10
width: "100%",
11
height: "20vw",
12
textAlign: "center"
13
},
14
viewerMp4: {
15
width: "auto",
16
height: "100%"
17
},
18
outer: {
19
height: "100%",
20
width: "100%",
21
position: "relative",
22
overflow: "hidden"
23
},
24
cardMedia: {
25
width: "100%",
26
height: "20vw"
27
}
28
});
29
30
class FileContentRenderer extends React.Component {
31
driveForImage() {
32
const { CurrentFile } = this.props;
33
const { classes } = this.props;
34
return (
35
<CardMedia
36
className={classes.cardMedia}
37
image={CurrentFile.preview}
38
title="test test"
39
/>
40
);
41
}
42
43
render() {
44
const { classes, CurrentFile } = this.props;
45
const filePath = CurrentFile;
46
switch (CurrentFile.mediaType) {
47
case "csv": {
48
break;
49
}
50
case "jpg": {
51
return this.driveForImage();
52
}
53
case "image/jpeg": {
54
return this.driveForImage();
55
}
56
case "image/gif": {
57
return this.driveForImage();
58
}
59
case "image/bmp": {
60
return this.driveForImage();
61
}
62
case "image/png": {
63
return this.driveForImage();
64
}
65
case "video/mp4": {
66
return (
67
<CardMedia>
68
<VideoViewer fileType="mp4" filePath={filePath.preview} />
69
</CardMedia>
70
);
71
}
72
case 'application/vnd.openxmlformats-officedocument.wordprocessingml.document': {
73
return (
74
<CardMedia className={classes.cardMedia}>
75
<DocxViewer
76
fileType="application/vnd.openxmlformats-officedocument.wordprocessingml.document"
77
filePath={filePath.preview}
78
/>
79
</CardMedia>
80
);
81
}
82
default: {
83
return UnsupportedViewer;
84
}
85
}
86
return null;
87
}
88
}
89
90
export default withStyles(styles)(FileContentRenderer);
91
I think the problem is css something. I have tried so much and think I missed something
Advertisement
Answer
Replace your return block with following block in your docx-viewer.jsx
.
JavaScript
1
14
14
1
return (
2
<div
3
id={docxId}
4
style={{
5
backgroundColor: 'white',
6
float: 'left',
7
overflowY: 'auto',
8
height: '20vh',
9
}}
10
>
11
<Loading />
12
</div>
13
);
14