diff --git a/src/public/js/components/buttons/subtitles.js b/src/public/js/components/buttons/subtitles.js
index 951eae0..a0c585d 100644
--- a/src/public/js/components/buttons/subtitles.js
+++ b/src/public/js/components/buttons/subtitles.js
@@ -17,71 +17,25 @@ export default class SubtitlesButton extends React.PureComponent {
this.props.refreshSubtitles(this.props.type, this.props.resourceID, this.props.season, this.props.episode);
}
render() {
- // If there is no URL, the resource is not in polochon, we won't be able to download subtitles
- if (this.props.url === "") {
- return null;
- }
-
- // Build the button
- const entries = buildMenuItems(this.props.subtitles);
- let btnSize = "small";
- if (this.props.xs) {
- btnSize = "xsmall";
- }
-
+ const btnSize = this.props.xs ? "xsmall" : "small";
+ const subtitles = this.props.subtitles;
+ const hasSubtitles = (subtitles !== undefined && subtitles !== null);
return (
- {entries.map(function(e, index) {
- switch (e.type) {
- case "action":
- return (
-
- );
- case "divider":
- return (
-
- );
- case "entry":
- return (
-
- );
- }
- }, this)}
+
+ {hasSubtitles &&
+
+ }
+ {hasSubtitles && subtitles.toIndexedSeq().map(function(subtitle, index) {
+ return (
+
+ );
+ })}
);
}
}
-
-function buildMenuItems(subtitles) {
- // Build the array of entries
- let entries = [];
-
- // Push the refresh button
- entries.push({
- type: "action",
- value: "Refresh",
- });
-
- // If there is no subtitles, stop here
- if (subtitles == undefined) {
- return entries;
- }
-
- // Push the divider
- entries.push({ type: "divider" });
- // Push the subtitles
- for (let sub of subtitles) {
- entries.push({
- type: "entry",
- // Take only the last part of fr_FR
- lang: sub.get("language").split("_")[1],
- url: sub.get("url"),
- });
- }
-
- return entries;
-}
diff --git a/src/public/js/components/movies/list.js b/src/public/js/components/movies/list.js
index c4cfb1b..d9ef0c2 100644
--- a/src/public/js/components/movies/list.js
+++ b/src/public/js/components/movies/list.js
@@ -57,14 +57,15 @@ function MovieButtons(props) {
subtitles={props.movie.get("subtitles")}
/>
+ {props.movie.get("polochon_url") !== null &&
+ }
diff --git a/src/public/js/components/shows/details.js b/src/public/js/components/shows/details.js
index 0618fed..e2133b7 100644
--- a/src/public/js/components/shows/details.js
+++ b/src/public/js/components/shows/details.js
@@ -187,16 +187,17 @@ function Episode(props) {
{props.data.get("title")}
-
+ {props.data.get("polochon_url") !== "" &&
+
+ }
{props.data.get("torrents") && props.data.get("torrents").toList().map(function(torrent) {
let key = `${props.data.get("season")}-${props.data.get("episode")}-${torrent.get("source")}-${torrent.get("quality")}`;
return (
@@ -220,7 +221,7 @@ function Episode(props) {
)
-}
+ }
class Torrent extends React.PureComponent {
constructor(props) {