Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show github links as dataset (in sidebar) for community URLs #615

Merged
merged 2 commits into from
Aug 5, 2018
Merged
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
17 changes: 16 additions & 1 deletion src/components/controls/choose-dataset.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
import React from "react";
import { connect } from "react-redux";
import ChooseDatasetSelect from "./choose-dataset-select";
import { darkGrey } from "../../globalStyles";

const renderGithubInfo = () => {
const parts = window.location.pathname.split("/");
const repoURL = `github.com/${parts[2]}/${parts[3]}`;
return (
<div style={{ fontSize: 14, marginTop: 5, marginBottom: 5 }}>
<i className="fa fa-clone fa-lg" style={{color: darkGrey}} aria-hidden="true"/>
<span style={{position: "relative"}}>{" "}</span>
<a href={`https://${repoURL}`} target="_blank">{repoURL}</a>
</div>
);
};

const renderBareDataPath = (source, fields) => (
<div style={{ fontSize: 14 }}>
Expand All @@ -25,7 +38,9 @@ class ChooseDataset extends React.Component {
This helps the user know what they're looking at.
*/
if (!this.props.available) {
return renderBareDataPath(this.props.source, this.props.datasetFields);
return this.props.source === "github" ?
renderGithubInfo() :
renderBareDataPath(this.props.source, this.props.datasetFields);
}

const selected = this.props.datasetFields;
Expand Down