Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Meta tags update #255

Merged
merged 1 commit into from
Apr 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ server.use((req, res, next) => {
webpack_isomorphic_tools.refresh()
}

if (req.query.DISABLE_SSR) {
return res.status(200).send('<!doctype html>\n' + ReactDOM.renderToString(
<Html
store={store}
assets={webpack_isomorphic_tools.assets()}
/>
));
}

store.dispatch(setUserAgent(req.useragent));
store.dispatch(setOption(cookie.load('options') || {}));

Expand Down
49 changes: 44 additions & 5 deletions src/containers/Surah/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ import Line from 'components/surah/Line';
import SearchInput from 'components/header/SearchInput';
import Bismillah from '../../components/Bismillah';

// Helpers
import makeHeadTags from '../../helpers/makeHeadTags';

import debug from 'utils/Debug';

import { clearCurrent, isLoaded, load as loadAyahs } from '../../redux/modules/ayahs';
Expand Down Expand Up @@ -86,8 +89,8 @@ let lastScroll = 0;
])
@connect(
(state, ownProps) => {
const surah = state.surahs.entities[ownProps.params.surahId];
const ayahs = state.ayahs.entities[ownProps.params.surahId];
const surah: Object = state.surahs.entities[ownProps.params.surahId];
const ayahs: Object = state.ayahs.entities[ownProps.params.surahId];
const ayahIds = new Set(Object.keys(ayahs).map(key => parseInt(key.split(':')[1], 10)));
ayahIds.first = function() {return [...this][0];};
ayahIds.last = function() {return [...this][[...this].length - 1];};
Expand Down Expand Up @@ -152,6 +155,35 @@ export default class Surah extends Component {
}
}

title() {
const { params, surah } = this.props;

if (params.range) {
return `Surat ${surah.name.simple} [${surah.id}:${params.range}]`;
}

return `Surat ${surah.name.simple}`;
}

description() {
const { params, ayahs, surah } = this.props;

if (params.range) {
if (params.range.includes('-')) {
const [from, to] = params.range.split('-').map(num => parseInt(num, 10));
const array = Array(to - from).fill(from);
const translations = array.map((fromAyah, index) => ayahs[`${surah.id}:${fromAyah + index}`].content[0].text);
const content = translations.join(' - ').slice(0, 250);

return `Surat ${surah.name.simple} [verse ${params.range}] - ${content}`;
} else {
return `Surat ${surah.name.simple} [verse ${params.range}] - ${ayahs[`${surah.id}:${params.range}`].content[0].text}`;
}
}

return null;
}

renderPagination() {
const { isEndOfSurah, surah } = this.props;
const { lazyLoading } = this.state;
Expand Down Expand Up @@ -323,9 +355,16 @@ export default class Surah extends Component {

return (
<div className="surah-body">
<Helmet title={surah.name.simple} link={[{
rel: 'canonical', href: `http://quran.com/${surah.id}`
}]} />
<Helmet
title={surah.name.simple}
{...makeHeadTags({
title: this.title(),
description: this.description()
})}
link={[{
rel: 'canonical', href: `http://quran.com/${surah.id}`
}]}
/>
<style dangerouslySetInnerHTML={{
__html: `.text-arabic{font-size: ${options.fontSize.arabic}rem;} .text-translation{font-size: ${options.fontSize.translation}rem;}`
}}
Expand Down
39 changes: 39 additions & 0 deletions src/helpers/makeHeadTags.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
export default function makeHeadTags({ title, description, url, image }) {
const tags = {
meta: []
};

if (title) {
tags.title = title;
tags.meta.push(
{name: 'title', content: title},
{property: 'og:title', content: title},
{name: 'twitter:title', content: title}
);
}

if (description) {
tags.description = description;
tags.meta.push(
{name: 'description', content: description},
{property: 'og:description', content: description},
{name: 'twitter:description', content: description}
);
}

if (url) {
tags.meta.push(
{property: 'og:url', content: url},
{name: 'twitter:url', content: url}
);
}

if (image) {
tags.meta.push(
{property: 'og:image', content: image},
{name: 'twitter:image', content: image}
);
}

return tags;
}