Merge pull request #1433 from florianorben/PLT-862

PLT-862: Show images from website links below messages
Этот коммит содержится в:
Corey Hulen
2015-11-16 08:28:21 -08:00
родитель 675e4e7149 bfd1bbdab4
Коммит d03b383097
4 изменённых файлов: 34 добавлений и 23 удалений

Просмотреть файл

@@ -124,6 +124,13 @@ Lets also add a table here, because why not
Wiki should render:
http://en.wikipedia.org/wiki/Foo
https://vine.co/v/eDeVgbFrt9L
`,
`**[7] [Image Test]**
## this *should* display an image
http://37.media.tumblr.com/tumblr_mavsumGGAd1qboaw8o1_500.jpg
`,
/* `**[2] [Username Linking Test]**
@@ -134,7 +141,7 @@ https://vine.co/v/eDeVgbFrt9L
`**[3] [Mention Highlighting Test]**
`,*/
`**[4] [Emoji Display Test 1]**
`**[8] [Emoji Display Test 1]**
:+1: :-1: :100: :1234: :8ball: :a: :ab: :abc: :abcd: :accept:
:aerial_tramway: :airplane: :alarm_clock: :ambulance: :anchor: :angel: :anger: :angry: :anguished: :ant:
:apple: :aquarius: :aries: :arrow_backward: :arrow_double_down: :arrow_double_up: :arrow_down: :arrow_down_small: :arrow_forward: :arrow_heading_down:
@@ -169,7 +176,7 @@ https://vine.co/v/eDeVgbFrt9L
:fork_and_knife: :fountain: :four: :four_leaf_clover: :fr: :free: :fried_shrimp: :fries: :frog: :frowning:
:fu: :fuelpump: :full_moon: :full_moon_with_face: :game_die: :gb: :gem: :gemini: :ghost: :gift:`,
`**[5] [Emoji Display Test 2]**
`**[9] [Emoji Display Test 2]**
:gift_heart: :girl: :globe_with_meridians: :goat: :goberserk: :godmode: :golf: :grapes: :green_apple: :green_book:
:green_heart: :grey_exclamation: :grey_question: :grimacing: :grin: :grinning: :guardsman: :guitar: :gun: :haircut:
:hamburger: :hammer: :hamster: :hand: :handbag: :hankey: :hash: :hatched_chick: :hatching_chick: :headphones:
@@ -198,7 +205,7 @@ https://vine.co/v/eDeVgbFrt9L
:person_with_blond_hair: :person_with_pouting_face: :phone: :pig: :pig2: :pig_nose: :pill: :pineapple: :pisces: :pizza:
`,
`**[6] [Emoji Display Test 3]**
`**[10] [Emoji Display Test 3]**
:plus1: :point_down: :point_left: :point_right: :point_up: :point_up_2: :police_car: :poodle: :poop: :post_office:
:postal_horn: :postbox: :potable_water: :pouch: :poultry_leg: :pound: :pouting_cat: :pray: :princess: :punch:
:purple_heart: :purse: :pushpin: :put_litter_in_its_place: :question: :rabbit: :rabbit2: :racehorse: :radio: :radio_button:
@@ -231,7 +238,7 @@ https://vine.co/v/eDeVgbFrt9L
Unnamed: :u5272: :u5408: :u55b6: :u6307: :u6708: :u6709: :u6e80: :u7121: :u7533: :u7981: :u7a7a:
`,
`**[7] [Auto Linking]**
`**[11] [Auto Linking]**
#### should be turned into links:
http://example.com
https://example.com

Просмотреть файл

@@ -16,13 +16,13 @@ export default class PostBody extends React.Component {
super(props);
this.receivedYoutubeData = false;
this.isGifLoading = false;
this.isImgLoading = false;
this.handleUserChange = this.handleUserChange.bind(this);
this.parseEmojis = this.parseEmojis.bind(this);
this.createEmbed = this.createEmbed.bind(this);
this.createGifEmbed = this.createGifEmbed.bind(this);
this.loadGif = this.loadGif.bind(this);
this.createImageEmbed = this.createImageEmbed.bind(this);
this.loadImg = this.loadImg.bind(this);
this.createYoutubeEmbed = this.createYoutubeEmbed.bind(this);
const linkData = Utils.extractLinks(this.props.post.message);
@@ -117,8 +117,12 @@ export default class PostBody extends React.Component {
return embed;
}
if (link.substring(link.length - 4) === '.gif') {
return this.createGifEmbed(link, this.state.gifLoaded);
for (let i = 0; i < Constants.IMAGE_TYPES.length; i++) {
const imageType = Constants.IMAGE_TYPES[i];
const suffix = link.substring(link.length - (imageType.length + 1));
if (suffix === '.' + imageType || suffix === '=' + imageType) {
return this.createImageEmbed(link, this.state.imgLoaded);
}
}
return null;
@@ -135,29 +139,29 @@ export default class PostBody extends React.Component {
return false;
}
loadGif(src) {
if (this.isGifLoading) {
loadImg(src) {
if (this.isImgLoading) {
return;
}
this.isGifLoading = true;
this.isImgLoading = true;
const gif = new Image();
gif.onload = (
const img = new Image();
img.onload = (
() => {
this.embed = this.createGifEmbed(src, true);
this.setState({gifLoaded: true});
this.embed = this.createImageEmbed(src, true);
this.setState({imgLoaded: true});
}
);
gif.src = src;
img.src = src;
}
createGifEmbed(link, isLoaded) {
createImageEmbed(link, isLoaded) {
if (!isLoaded) {
this.loadGif(link);
this.loadImg(link);
return (
<img
className='gif-div placeholder'
className='img-div placeholder'
height='500px'
/>
);
@@ -165,7 +169,7 @@ export default class PostBody extends React.Component {
return (
<img
className='gif-div'
className='img-div'
src={link}
/>
);

Просмотреть файл

@@ -280,7 +280,7 @@
min-height: 100px;
}
}
.gif-div {
.img-div {
max-width: 100%;
}
.tip-div {

Просмотреть файл

@@ -51,7 +51,7 @@
border-left:60px solid rgba(255,255,255,0.4);
}
.gif-div {
.img-div {
-moz-force-broken-image-icon: 1;
position:relative;
max-width: 450px;