mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Reconcile the code to display attachment previews into a FileAttachmentList class to clean up duplicated code.
This commit is contained in:
109
web/react/components/file_attachment.jsx
Normal file
109
web/react/components/file_attachment.jsx
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||||
|
// See License.txt for license information.
|
||||||
|
|
||||||
|
var utils = require('../utils/utils.jsx');
|
||||||
|
|
||||||
|
module.exports = React.createClass({
|
||||||
|
displayName: "FileAttachment",
|
||||||
|
propTypes: {
|
||||||
|
filenames: React.PropTypes.arrayOf(React.PropTypes.string).isRequired,
|
||||||
|
index: React.PropTypes.number.isRequired,
|
||||||
|
imageModalId: React.PropTypes.string.isRequired,
|
||||||
|
handleImageClick: React.PropTypes.func
|
||||||
|
},
|
||||||
|
componentDidMount: function() {
|
||||||
|
var filename = this.props.filenames[this.props.index];
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
if (filename) {
|
||||||
|
var fileInfo = utils.splitFileLocation(filename);
|
||||||
|
if (Object.keys(fileInfo).length === 0) return;
|
||||||
|
|
||||||
|
var type = utils.getFileType(fileInfo.ext);
|
||||||
|
|
||||||
|
// This is a temporary patch to fix issue with old files using absolute paths
|
||||||
|
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
||||||
|
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
||||||
|
}
|
||||||
|
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
||||||
|
|
||||||
|
if (type === "image") {
|
||||||
|
$('<img/>').attr('src', fileInfo.path+'_thumb.jpg').load(function(path, name){ return function() {
|
||||||
|
$(this).remove();
|
||||||
|
if (name in self.refs) {
|
||||||
|
var imgDiv = self.refs[name].getDOMNode();
|
||||||
|
|
||||||
|
$(imgDiv).removeClass('post__load');
|
||||||
|
$(imgDiv).addClass('post__image');
|
||||||
|
|
||||||
|
var re1 = new RegExp(' ', 'g');
|
||||||
|
var re2 = new RegExp('\\(', 'g');
|
||||||
|
var re3 = new RegExp('\\)', 'g');
|
||||||
|
var url = path.replace(re1, '%20').replace(re2, '%28').replace(re3, '%29');
|
||||||
|
$(imgDiv).css('background-image', 'url('+url+'_thumb.jpg)');
|
||||||
|
}
|
||||||
|
}}(fileInfo.path, filename));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
render: function() {
|
||||||
|
var filenames = this.props.filenames;
|
||||||
|
var filename = filenames[this.props.index];
|
||||||
|
|
||||||
|
var fileInfo = utils.splitFileLocation(filename);
|
||||||
|
if (Object.keys(fileInfo).length === 0) return null;
|
||||||
|
|
||||||
|
var type = utils.getFileType(fileInfo.ext);
|
||||||
|
|
||||||
|
// This is a temporary patch to fix issue with old files using absolute paths
|
||||||
|
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
||||||
|
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
||||||
|
}
|
||||||
|
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
||||||
|
|
||||||
|
var thumbnail;
|
||||||
|
if (type === "image") {
|
||||||
|
thumbnail = (
|
||||||
|
<a className="post-image__thumbnail" href="#" onClick={this.props.handleImageClick}
|
||||||
|
data-img-id={this.props.index} data-toggle="modal" data-target={"#" + this.props.imageModalId }>
|
||||||
|
<div ref={filename} className="post__load" style={{backgroundImage: 'url(/static/images/load.gif)'}}/>
|
||||||
|
</a>
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
thumbnail = (
|
||||||
|
<a href={fileInfo.path + (fileInfo.ext ? "." + fileInfo.ext : "")} download={fileInfo.name + (fileInfo.ext ? "." + fileInfo.ext : "")}>
|
||||||
|
<div className={"file-icon "+utils.getIconClassName(type)}/>
|
||||||
|
</a>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
var containerClassName = "post-image__column";
|
||||||
|
if (type !== "image") {
|
||||||
|
containerClassName += " custom-file";
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO fix the race condition here where the file size may arrive before the rest of the page is rendered
|
||||||
|
// asynchronously request the size of the file so that we can display it next to the thumbnail
|
||||||
|
utils.getFileSize(fileInfo.path + "." + fileInfo.ext, function(self, _filename) {
|
||||||
|
return function(size) {
|
||||||
|
if ((_filename + "__size") in self.refs) {
|
||||||
|
self.refs[_filename + "__size"].getDOMNode().innerHTML = " " + utils.fileSizeToString(size);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}(this, filename));
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={containerClassName} key={filename}>
|
||||||
|
{thumbnail}
|
||||||
|
<div className="post-image__details">
|
||||||
|
<div className="post-image__name">{fileInfo.name}</div>
|
||||||
|
<div>
|
||||||
|
<span className="post-image__type">{fileInfo.ext.toUpperCase()}</span>
|
||||||
|
<span className="post-image__size" ref={filename + "__size"}></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
47
web/react/components/file_attachment_list.jsx
Normal file
47
web/react/components/file_attachment_list.jsx
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||||
|
// See License.txt for license information.
|
||||||
|
|
||||||
|
var ViewImageModal = require('./view_image.jsx');
|
||||||
|
var FileAttachment = require('./file_attachment.jsx');
|
||||||
|
var Constants = require('../utils/constants.jsx');
|
||||||
|
|
||||||
|
module.exports = React.createClass({
|
||||||
|
displayName: "FileAttachmentList",
|
||||||
|
propTypes: {
|
||||||
|
filenames: React.PropTypes.arrayOf(React.PropTypes.string).isRequired,
|
||||||
|
postId: React.PropTypes.string.isRequired,
|
||||||
|
channelId: React.PropTypes.string,
|
||||||
|
userId: React.PropTypes.string
|
||||||
|
},
|
||||||
|
getInitialState: function() {
|
||||||
|
return {startImgId: 0};
|
||||||
|
},
|
||||||
|
render: function() {
|
||||||
|
var filenames = this.props.filenames;
|
||||||
|
|
||||||
|
var postImageModalId = "view_image_modal_" + this.props.postId;
|
||||||
|
|
||||||
|
var postFiles = [];
|
||||||
|
for (var i = 0; i < filenames.length && i < Constants.MAX_DISPLAY_FILES; i++) {
|
||||||
|
postFiles.push(<FileAttachment key={i} filenames={filenames} index={i} imageModalId={postImageModalId} handleImageClick={this.handleImageClick} />);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<div className="post-image__columns">
|
||||||
|
{postFiles}
|
||||||
|
</div>
|
||||||
|
<ViewImageModal
|
||||||
|
channelId={this.props.channelId}
|
||||||
|
userId={this.props.userId}
|
||||||
|
modalId={postImageModalId}
|
||||||
|
startId={this.state.startImgId}
|
||||||
|
imgCount={0}
|
||||||
|
filenames={filenames} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
handleImageClick: function(e) {
|
||||||
|
this.setState({startImgId: parseInt($(e.target.parentNode).attr('data-img-id'))});
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -1,63 +1,23 @@
|
|||||||
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||||
// See License.txt for license information.
|
// See License.txt for license information.
|
||||||
|
|
||||||
var CreateComment = require( './create_comment.jsx' );
|
var FileAttachmentList = require('./file_attachment_list.jsx');
|
||||||
var UserStore = require('../stores/user_store.jsx');
|
var UserStore = require('../stores/user_store.jsx');
|
||||||
var utils = require('../utils/utils.jsx');
|
var utils = require('../utils/utils.jsx');
|
||||||
var ViewImageModal = require('./view_image.jsx');
|
|
||||||
var Constants = require('../utils/constants.jsx');
|
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
handleImageClick: function(e) {
|
|
||||||
this.setState({startImgId: parseInt($(e.target.parentNode).attr('data-img-id'))});
|
|
||||||
},
|
|
||||||
componentWillReceiveProps: function(nextProps) {
|
componentWillReceiveProps: function(nextProps) {
|
||||||
var linkData = utils.extractLinks(nextProps.post.message);
|
var linkData = utils.extractLinks(nextProps.post.message);
|
||||||
this.setState({ links: linkData["links"], message: linkData["text"] });
|
this.setState({ links: linkData["links"], message: linkData["text"] });
|
||||||
},
|
},
|
||||||
componentDidMount: function() {
|
|
||||||
var filenames = this.props.post.filenames;
|
|
||||||
var self = this;
|
|
||||||
if (filenames) {
|
|
||||||
var re1 = new RegExp(' ', 'g');
|
|
||||||
var re2 = new RegExp('\\(', 'g');
|
|
||||||
var re3 = new RegExp('\\)', 'g');
|
|
||||||
for (var i = 0; i < filenames.length && i < Constants.MAX_DISPLAY_FILES; i++) {
|
|
||||||
var fileInfo = utils.splitFileLocation(filenames[i]);
|
|
||||||
if (Object.keys(fileInfo).length === 0) continue;
|
|
||||||
|
|
||||||
var type = utils.getFileType(fileInfo.ext);
|
|
||||||
|
|
||||||
// This is a temporary patch to fix issue with old files using absolute paths
|
|
||||||
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
|
||||||
}
|
|
||||||
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
|
||||||
|
|
||||||
if (type === "image") {
|
|
||||||
$('<img/>').attr('src', fileInfo.path+'_thumb.jpg').load(function(path, name){ return function() {
|
|
||||||
$(this).remove();
|
|
||||||
if (name in self.refs) {
|
|
||||||
var imgDiv = self.refs[name].getDOMNode();
|
|
||||||
$(imgDiv).removeClass('post__load');
|
|
||||||
$(imgDiv).addClass('post__image');
|
|
||||||
var url = path.replace(re1, '%20').replace(re2, '%28').replace(re3, '%29');
|
|
||||||
$(imgDiv).css('background-image', 'url('+url+'_thumb.jpg)');
|
|
||||||
}
|
|
||||||
}}(fileInfo.path, filenames[i]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
var linkData = utils.extractLinks(this.props.post.message);
|
var linkData = utils.extractLinks(this.props.post.message);
|
||||||
return { startImgId: 0, links: linkData["links"], message: linkData["text"] };
|
return { links: linkData["links"], message: linkData["text"] };
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
var post = this.props.post;
|
var post = this.props.post;
|
||||||
var filenames = this.props.post.filenames;
|
var filenames = this.props.post.filenames;
|
||||||
var parentPost = this.props.parentPost;
|
var parentPost = this.props.parentPost;
|
||||||
var postImageModalId = "view_image_modal_" + post.id;
|
|
||||||
var inner = utils.textToJsx(this.state.message);
|
var inner = utils.textToJsx(this.state.message);
|
||||||
|
|
||||||
var comment = "";
|
var comment = "";
|
||||||
@@ -99,69 +59,8 @@ module.exports = React.createClass({
|
|||||||
postClass += " post-comment";
|
postClass += " post-comment";
|
||||||
}
|
}
|
||||||
|
|
||||||
var postFiles = [];
|
|
||||||
var images = [];
|
|
||||||
if (filenames) {
|
|
||||||
for (var i = 0; i < filenames.length; i++) {
|
|
||||||
var fileInfo = utils.splitFileLocation(filenames[i]);
|
|
||||||
if (Object.keys(fileInfo).length === 0) continue;
|
|
||||||
|
|
||||||
var type = utils.getFileType(fileInfo.ext);
|
|
||||||
|
|
||||||
// This is a temporary patch to fix issue with old files using absolute paths
|
|
||||||
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
|
||||||
}
|
|
||||||
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
|
||||||
|
|
||||||
var thumbnail;
|
|
||||||
if (type === "image") {
|
|
||||||
thumbnail = (
|
|
||||||
<a className="post-image__thumbnail" href="#" onClick={this.handleImageClick} data-img-id={images.length.toString()} data-toggle="modal" data-target={"#" + postImageModalId }>
|
|
||||||
<div ref={filenames[i]} className="post__load" style={{backgroundImage: 'url(/static/images/load.gif)'}}/>
|
|
||||||
</a>
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
thumbnail = (
|
|
||||||
<a href={fileInfo.path + (fileInfo.ext ? "." + fileInfo.ext : "")} download={fileInfo.name + (fileInfo.ext ? "." + fileInfo.ext : "")}>
|
|
||||||
<div className={"file-icon "+utils.getIconClassName(type)}/>
|
|
||||||
</a>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
var containerClassName = "post-image__column";
|
|
||||||
if (type !== "image") {
|
|
||||||
containerClassName += " custom-file";
|
|
||||||
}
|
|
||||||
|
|
||||||
postFiles.push(
|
|
||||||
<div className={containerClassName} key={filenames[i]}>
|
|
||||||
{thumbnail}
|
|
||||||
<div className="post-image__details">
|
|
||||||
<div className="post-image__name">{fileInfo.name}</div>
|
|
||||||
<div>
|
|
||||||
<span className="post-image__type">{fileInfo.ext.toUpperCase()}</span>
|
|
||||||
<span className="post-image__size" ref={filenames[i] + "__size"}></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
|
|
||||||
// asynchronously request the size of the file so that we can display it next to the thumbnail
|
|
||||||
utils.getFileSize(fileInfo.path + "." + fileInfo.ext, function(self, filename) {
|
|
||||||
return function(size) {
|
|
||||||
self.refs[filename + "__size"].getDOMNode().innerHTML = " " + utils.fileSizeToString(size);
|
|
||||||
}
|
|
||||||
}(this, filenames[i]));
|
|
||||||
|
|
||||||
if (type === "image") {
|
|
||||||
images.push(filenames[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var embed;
|
var embed;
|
||||||
if (postFiles.length === 0 && this.state.links) {
|
if (filenames.length === 0 && this.state.links) {
|
||||||
embed = utils.getEmbed(this.state.links[0]);
|
embed = utils.getEmbed(this.state.links[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -170,21 +69,13 @@ module.exports = React.createClass({
|
|||||||
{ comment }
|
{ comment }
|
||||||
<p key={post.id+"_message"} className={postClass}><span>{inner}</span></p>
|
<p key={post.id+"_message"} className={postClass}><span>{inner}</span></p>
|
||||||
{ filenames && filenames.length > 0 ?
|
{ filenames && filenames.length > 0 ?
|
||||||
<div className="post-image__columns">
|
<FileAttachmentList
|
||||||
{ postFiles }
|
postId={post.id}
|
||||||
</div>
|
|
||||||
: "" }
|
|
||||||
{ embed }
|
|
||||||
|
|
||||||
{ images.length > 0 ?
|
|
||||||
<ViewImageModal
|
|
||||||
channelId={post.channel_id}
|
channelId={post.channel_id}
|
||||||
userId={post.user_id}
|
userId={post.user_id}
|
||||||
modalId={postImageModalId}
|
filenames={filenames} />
|
||||||
startId={this.state.startImgId}
|
|
||||||
imgCount={post.img_count}
|
|
||||||
filenames={images} />
|
|
||||||
: "" }
|
: "" }
|
||||||
|
{ embed }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ var utils = require('../utils/utils.jsx');
|
|||||||
var SearchBox =require('./search_bar.jsx');
|
var SearchBox =require('./search_bar.jsx');
|
||||||
var CreateComment = require( './create_comment.jsx' );
|
var CreateComment = require( './create_comment.jsx' );
|
||||||
var Constants = require('../utils/constants.jsx');
|
var Constants = require('../utils/constants.jsx');
|
||||||
var ViewImageModal = require('./view_image.jsx');
|
var FileAttachmentList = require('./file_attachment_list.jsx');
|
||||||
var ActionTypes = Constants.ActionTypes;
|
var ActionTypes = Constants.ActionTypes;
|
||||||
|
|
||||||
RhsHeaderPost = React.createClass({
|
RhsHeaderPost = React.createClass({
|
||||||
@@ -55,17 +55,8 @@ RhsHeaderPost = React.createClass({
|
|||||||
});
|
});
|
||||||
|
|
||||||
RootPost = React.createClass({
|
RootPost = React.createClass({
|
||||||
handleImageClick: function(e) {
|
|
||||||
this.setState({startImgId: parseInt($(e.target.parentNode).attr('data-img-id'))});
|
|
||||||
},
|
|
||||||
getInitialState: function() {
|
|
||||||
return { startImgId: 0 };
|
|
||||||
},
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
|
||||||
var postImageModalId = "rhs_view_image_modal_" + this.props.post.id;
|
|
||||||
var message = utils.textToJsx(this.props.post.message);
|
var message = utils.textToJsx(this.props.post.message);
|
||||||
var filenames = this.props.post.filenames;
|
|
||||||
var isOwner = UserStore.getCurrentId() == this.props.post.user_id;
|
var isOwner = UserStore.getCurrentId() == this.props.post.user_id;
|
||||||
var timestamp = UserStore.getProfile(this.props.post.user_id).update_at;
|
var timestamp = UserStore.getProfile(this.props.post.user_id).update_at;
|
||||||
var channel = ChannelStore.get(this.props.post.channel_id);
|
var channel = ChannelStore.get(this.props.post.channel_id);
|
||||||
@@ -84,42 +75,6 @@ RootPost = React.createClass({
|
|||||||
channelName = (channel.type === 'D') ? "Private Message" : channel.display_name;
|
channelName = (channel.type === 'D') ? "Private Message" : channel.display_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (filenames) {
|
|
||||||
var postFiles = [];
|
|
||||||
var images = [];
|
|
||||||
var re1 = new RegExp(' ', 'g');
|
|
||||||
var re2 = new RegExp('\\(', 'g');
|
|
||||||
var re3 = new RegExp('\\)', 'g');
|
|
||||||
for (var i = 0; i < filenames.length && i < Constants.MAX_DISPLAY_FILES; i++) {
|
|
||||||
var fileInfo = utils.splitFileLocation(filenames[i]);
|
|
||||||
var ftype = utils.getFileType(fileInfo.ext);
|
|
||||||
|
|
||||||
// This is a temporary patch to fix issue with old files using absolute paths
|
|
||||||
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
|
||||||
}
|
|
||||||
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
|
||||||
|
|
||||||
if (ftype === "image") {
|
|
||||||
var url = fileInfo.path.replace(re1, '%20').replace(re2, '%28').replace(re3, '%29');
|
|
||||||
postFiles.push(
|
|
||||||
<div className="post-image__column" key={fileInfo.path}>
|
|
||||||
<a href="#" onClick={this.handleImageClick} data-img-id={images.length.toString()} data-toggle="modal" data-target={"#" + postImageModalId }><div ref={fileInfo.path} className="post__image" style={{backgroundImage: 'url(' + url + '_thumb.jpg)'}}></div></a>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
images.push(filenames[i]);
|
|
||||||
} else {
|
|
||||||
postFiles.push(
|
|
||||||
<div className="post-image__column custom-file" key={fileInfo.path}>
|
|
||||||
<a href={fileInfo.path+"."+fileInfo.ext} download={fileInfo.name+"."+fileInfo.ext}>
|
|
||||||
<div className={"file-icon "+utils.getIconClassName(ftype)}/>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={"post post--root " + currentUserCss}>
|
<div className={"post post--root " + currentUserCss}>
|
||||||
<div className="post-right-channel__name">{ channelName }</div>
|
<div className="post-right-channel__name">{ channelName }</div>
|
||||||
@@ -146,19 +101,12 @@ RootPost = React.createClass({
|
|||||||
</ul>
|
</ul>
|
||||||
<div className="post-body">
|
<div className="post-body">
|
||||||
<p>{message}</p>
|
<p>{message}</p>
|
||||||
{ filenames.length > 0 ?
|
{ this.props.post.filenames && this.props.post.filenames.length > 0 ?
|
||||||
<div className="post-image__columns">
|
<FileAttachmentList
|
||||||
{ postFiles }
|
postId={this.props.post.id}
|
||||||
</div>
|
|
||||||
: "" }
|
|
||||||
{ images.length > 0 ?
|
|
||||||
<ViewImageModal
|
|
||||||
channelId={this.props.post.channel_id}
|
channelId={this.props.post.channel_id}
|
||||||
userId={this.props.post.user_id}
|
userId={this.props.post.user_id}
|
||||||
modalId={postImageModalId}
|
filenames={this.props.post.filenames} />
|
||||||
startId={this.state.startImgId}
|
|
||||||
imgCount={this.props.post.img_count}
|
|
||||||
filenames={images} />
|
|
||||||
: "" }
|
: "" }
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -169,14 +117,7 @@ RootPost = React.createClass({
|
|||||||
});
|
});
|
||||||
|
|
||||||
CommentPost = React.createClass({
|
CommentPost = React.createClass({
|
||||||
handleImageClick: function(e) {
|
|
||||||
this.setState({startImgId: parseInt($(e.target.parentNode).attr('data-img-id'))});
|
|
||||||
},
|
|
||||||
getInitialState: function() {
|
|
||||||
return { startImgId: 0 };
|
|
||||||
},
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
|
||||||
var commentClass = "post";
|
var commentClass = "post";
|
||||||
|
|
||||||
var currentUserCss = "";
|
var currentUserCss = "";
|
||||||
@@ -184,8 +125,6 @@ CommentPost = React.createClass({
|
|||||||
currentUserCss = "current--user";
|
currentUserCss = "current--user";
|
||||||
}
|
}
|
||||||
|
|
||||||
var postImageModalId = "rhs_comment_view_image_modal_" + this.props.post.id;
|
|
||||||
var filenames = this.props.post.filenames;
|
|
||||||
var isOwner = UserStore.getCurrentId() == this.props.post.user_id;
|
var isOwner = UserStore.getCurrentId() == this.props.post.user_id;
|
||||||
|
|
||||||
var type = "Post"
|
var type = "Post"
|
||||||
@@ -193,43 +132,6 @@ CommentPost = React.createClass({
|
|||||||
type = "Comment"
|
type = "Comment"
|
||||||
}
|
}
|
||||||
|
|
||||||
if (filenames) {
|
|
||||||
var postFiles = [];
|
|
||||||
var images = [];
|
|
||||||
var re1 = new RegExp(' ', 'g');
|
|
||||||
var re2 = new RegExp('\\(', 'g');
|
|
||||||
var re3 = new RegExp('\\)', 'g');
|
|
||||||
for (var i = 0; i < filenames.length && i < Constants.MAX_DISPLAY_FILES; i++) {
|
|
||||||
|
|
||||||
var fileInfo = utils.splitFileLocation(filenames[i]);
|
|
||||||
var type = utils.getFileType(fileInfo.ext);
|
|
||||||
|
|
||||||
// This is a temporary patch to fix issue with old files using absolute paths
|
|
||||||
if (fileInfo.path.indexOf("/api/v1/files/get") != -1) {
|
|
||||||
fileInfo.path = fileInfo.path.split("/api/v1/files/get")[1];
|
|
||||||
}
|
|
||||||
fileInfo.path = utils.getWindowLocationOrigin() + "/api/v1/files/get" + fileInfo.path;
|
|
||||||
|
|
||||||
if (type === "image") {
|
|
||||||
var url = fileInfo.path.replace(re1, '%20').replace(re2, '%28').replace(re3, '%29');
|
|
||||||
postFiles.push(
|
|
||||||
<div className="post-image__column" key={fileInfo.path}>
|
|
||||||
<a href="#" onClick={this.handleImageClick} data-img-id={images.length.toString()} data-toggle="modal" data-target={"#" + postImageModalId }><div ref={fileInfo.path} className="post__image" style={{backgroundImage: 'url(' + url + '_thumb.jpg)'}}></div></a>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
images.push(filenames[i]);
|
|
||||||
} else {
|
|
||||||
postFiles.push(
|
|
||||||
<div className="post-image__column custom-file" key={fileInfo.path}>
|
|
||||||
<a href={fileInfo.path+"."+fileInfo.ext} download={fileInfo.name+"."+fileInfo.ext}>
|
|
||||||
<div className={"file-icon "+utils.getIconClassName(type)}/>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var message = utils.textToJsx(this.props.post.message);
|
var message = utils.textToJsx(this.props.post.message);
|
||||||
var timestamp = UserStore.getCurrentUser().update_at;
|
var timestamp = UserStore.getCurrentUser().update_at;
|
||||||
|
|
||||||
@@ -256,19 +158,12 @@ CommentPost = React.createClass({
|
|||||||
</ul>
|
</ul>
|
||||||
<div className="post-body">
|
<div className="post-body">
|
||||||
<p>{message}</p>
|
<p>{message}</p>
|
||||||
{ filenames.length > 0 ?
|
{ this.props.post.filenames && this.props.post.filenames.length > 0 ?
|
||||||
<div className="post-image__columns">
|
<FileAttachmentList
|
||||||
{ postFiles }
|
postId={this.props.post.id}
|
||||||
</div>
|
|
||||||
: "" }
|
|
||||||
{ images.length > 0 ?
|
|
||||||
<ViewImageModal
|
|
||||||
channelId={this.props.post.channel_id}
|
channelId={this.props.post.channel_id}
|
||||||
userId={this.props.post.user_id}
|
userId={this.props.post.user_id}
|
||||||
modalId={postImageModalId}
|
filenames={this.props.post.filenames} />
|
||||||
startId={this.state.startImgId}
|
|
||||||
imgCount={this.props.post.img_count}
|
|
||||||
filenames={images} />
|
|
||||||
: "" }
|
: "" }
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user