mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
a282be9a18
Summary: Linkify the blog post title when the excerpt is displayed in the blog index. Update Facebook OpenGraph meta tags for individual blog posts to fix sharing previews. Closes https://github.com/facebook/react-native/pull/9590 Differential Revision: D3771630 Pulled By: bestander fbshipit-source-id: dc428ecc2d7939c143f000b8af9d4df9b512d0fc
63 lines
1.8 KiB
JavaScript
63 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule BlogPost
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var Marked = require('Marked');
|
|
var React = require('React');
|
|
var BlogPostHeader = require('BlogPostHeader');
|
|
var BlogPostFooter = require('BlogPostFooter');
|
|
var ReadMoreLink = require('ReadMoreLink');
|
|
|
|
var BlogPost = React.createClass({
|
|
render: function() {
|
|
var post = this.props.post;
|
|
var content = this.props.content;
|
|
|
|
var match = post.path.match(/([0-9]+)\/([0-9]+)\/([0-9]+)/);
|
|
// Because JavaScript sucks at date handling :(
|
|
var year = match[1];
|
|
var month = [
|
|
'January', 'February', 'March', 'April', 'May', 'June', 'July',
|
|
'August', 'September', 'October', 'November', 'December'
|
|
][parseInt(match[2], 10) - 1];
|
|
var day = parseInt(match[3], 10);
|
|
|
|
var postedOnDate = month + ' ' + day + ', ' + year;
|
|
|
|
var footer = <BlogPostFooter post={post} postedOnDate={postedOnDate} />;
|
|
|
|
if (this.props.excerpt) {
|
|
var excerptLength = 50;
|
|
var words = content.trim().split(' ');
|
|
if (words.length > excerptLength) {
|
|
content = words.slice(0,excerptLength).join(' ') + '...';
|
|
footer = <ReadMoreLink href={'/react-native/blog/' + post.path} />;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<article>
|
|
<BlogPostHeader
|
|
post={post}
|
|
postedOnDate={postedOnDate}
|
|
excerpt={this.props.excerpt} />
|
|
<div className="entry-content">
|
|
<Marked>{content}</Marked>
|
|
</div>
|
|
{footer}
|
|
</article>
|
|
);
|
|
}
|
|
});
|
|
|
|
module.exports = BlogPost;
|