mirror of https://github.com/vector-im/riot-web
See uploaded files
parent
36ecbfc87f
commit
53e9d030b7
|
@ -21,6 +21,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"classnames": "^2.1.2",
|
"classnames": "^2.1.2",
|
||||||
|
"filesize": "^3.1.2",
|
||||||
"flux": "^2.0.3",
|
"flux": "^2.0.3",
|
||||||
"matrix-js-sdk": "0.1.1",
|
"matrix-js-sdk": "0.1.1",
|
||||||
"q": "^1.4.1",
|
"q": "^1.4.1",
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
/*
|
||||||
|
Copyright 2015 OpenMarket Ltd
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var React = require('react');
|
||||||
|
var filesize = require('filesize');
|
||||||
|
|
||||||
|
var MFileTileController = require("../../../../src/controllers/molecules/MFileTile");
|
||||||
|
|
||||||
|
var MatrixClientPeg = require('../../../../src/MatrixClientPeg');
|
||||||
|
|
||||||
|
module.exports = React.createClass({
|
||||||
|
displayName: 'MFileTile',
|
||||||
|
mixins: [MFileTileController],
|
||||||
|
|
||||||
|
render: function() {
|
||||||
|
var content = this.props.mxEvent.getContent();
|
||||||
|
var cli = MatrixClientPeg.get();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<span className="mx_MFileTile">
|
||||||
|
<a href={cli.mxcUrlToHttp(content.url)}>
|
||||||
|
{this.presentableTextForFile(content)}
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
|
@ -31,7 +31,8 @@ var tileTypes = {
|
||||||
'm.text': ComponentBroker.get('molecules/MTextTile'),
|
'm.text': ComponentBroker.get('molecules/MTextTile'),
|
||||||
'm.notice': ComponentBroker.get('molecules/MNoticeTile'),
|
'm.notice': ComponentBroker.get('molecules/MNoticeTile'),
|
||||||
'm.emote': ComponentBroker.get('molecules/MEmoteTile'),
|
'm.emote': ComponentBroker.get('molecules/MEmoteTile'),
|
||||||
'm.image': ComponentBroker.get('molecules/MImageTile')
|
'm.image': ComponentBroker.get('molecules/MImageTile'),
|
||||||
|
'm.file': ComponentBroker.get('molecules/MFileTile')
|
||||||
};
|
};
|
||||||
|
|
||||||
var MessageTileController = require("../../../../src/controllers/molecules/MessageTile");
|
var MessageTileController = require("../../../../src/controllers/molecules/MessageTile");
|
||||||
|
|
|
@ -70,6 +70,7 @@ require('../skins/base/views/molecules/MTextTile');
|
||||||
require('../skins/base/views/molecules/MNoticeTile');
|
require('../skins/base/views/molecules/MNoticeTile');
|
||||||
require('../skins/base/views/molecules/MEmoteTile');
|
require('../skins/base/views/molecules/MEmoteTile');
|
||||||
require('../skins/base/views/molecules/MImageTile');
|
require('../skins/base/views/molecules/MImageTile');
|
||||||
|
require('../skins/base/views/molecules/MFileTile');
|
||||||
require('../skins/base/views/molecules/MRoomMemberTile');
|
require('../skins/base/views/molecules/MRoomMemberTile');
|
||||||
require('../skins/base/views/molecules/RoomHeader');
|
require('../skins/base/views/molecules/RoomHeader');
|
||||||
require('../skins/base/views/molecules/MessageComposer');
|
require('../skins/base/views/molecules/MessageComposer');
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
/*
|
||||||
|
Copyright 2015 OpenMarket Ltd
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
presentableTextForFile: function(content) {
|
||||||
|
var linkText = 'Attachment';
|
||||||
|
if (content.body && content.body.length > 0) {
|
||||||
|
linkText = content.body;
|
||||||
|
}
|
||||||
|
|
||||||
|
var additionals = [];
|
||||||
|
if (content.info.mimetype && content.info.mimetype.length > 0) {
|
||||||
|
additionals.push(content.info.mimetype);
|
||||||
|
}
|
||||||
|
if (content.info.size && content.info.size.length > 0) {
|
||||||
|
additionals.push(filesize(content.info.size));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (additionals.length > 0) {
|
||||||
|
linkText += ' (' + additionals.join(',') + ')';
|
||||||
|
}
|
||||||
|
return linkText;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue