mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
140 lines
4.7 KiB
JavaScript
140 lines
4.7 KiB
JavaScript
import React from 'react';
|
|
import classnames from 'classnames';
|
|
import Layout from '@theme/Layout';
|
|
import CodeBlock from '@theme/CodeBlock'
|
|
import Tabs from '@theme/Tabs'
|
|
import TabItem from '@theme/TabItem'
|
|
import Link from '@docusaurus/Link';
|
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
import useBaseUrl from '@docusaurus/useBaseUrl';
|
|
import styles from './styles.module.css';
|
|
import GitHubButton from 'react-github-btn'
|
|
import InstallInstructions from '../install_instructions';
|
|
|
|
const exampleCode =
|
|
`var spotify = new SpotifyClient("YourAccessToken");
|
|
|
|
var me = await spotify.UserProfile.Current();
|
|
Console.WriteLine($"Hello there {me.DisplayName}");
|
|
|
|
await foreach(
|
|
var playlist in spotify.Paginate(spotify.Playlists.CurrentUsers())
|
|
)
|
|
{
|
|
Console.WriteLine(playlist.Name);
|
|
}`;
|
|
|
|
const features = [
|
|
{
|
|
title: <>Sane Defaults - Easy To Configure</>,
|
|
imageUrl: 'img/undraw_preferences_uuo2.svg',
|
|
description: () => (
|
|
<>
|
|
<code>SpotifyAPI-NET</code> allows you to quickly integrate with Spotify's Web API by supplying sane configuration defaults from the start. Later on, behaviour can be customized using extensive configuration possibilities.
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
title: <>All API Calls Integrated</>,
|
|
imageUrl: 'img/undraw_project_completed_w0oq.svg',
|
|
description: () => (
|
|
<>
|
|
The Spotify Web API consists of over 74 API calls. <code>SpotifyAPI-NET</code> provides fully typed requests/responses for all of them.
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
title: <>.NET Standard 2.X</>,
|
|
imageUrl: 'img/undraw_Devices_e67q.svg',
|
|
description: () => (
|
|
<>
|
|
With the support of .NET Standard 2.X, <code>SpotifyAPI-NET</code> runs on many platforms, including .NET Core, UWP and Xamarin.Forms (Windows, Android, iOS and Mac)
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
title: <>Testable</>,
|
|
imageUrl: 'img/undraw_QA_engineers_dg5p.svg',
|
|
description: () => (
|
|
<>
|
|
<code>SpotifyAPI-NET</code> is built on a modular structure, which allows easy testing through mocks and stubs. Learn more by visiting the <Link to={useBaseUrl('docs/next/testing')}>Testing Guide</Link>
|
|
</>
|
|
),
|
|
},
|
|
];
|
|
|
|
function Feature({ imageUrl, title, description }) {
|
|
const imgUrl = useBaseUrl(imageUrl);
|
|
return (
|
|
<div className={classnames('col col--4', styles.feature)}>
|
|
{imgUrl && (
|
|
<div className="text--center">
|
|
<img className={styles.featureImage} src={imgUrl} alt={title} />
|
|
</div>
|
|
)}
|
|
<h3>{title}</h3>
|
|
<p>{description()}</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function Home() {
|
|
const context = useDocusaurusContext();
|
|
const { siteConfig = {} } = context;
|
|
return (
|
|
<Layout
|
|
title={`${siteConfig.title}`}
|
|
description="Documentation for the C# .NET SpotifyAPI-NET Library">
|
|
<header className={classnames('hero hero--primary', styles.heroBanner)}>
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col col--5">
|
|
<img src="img/logo.svg" width="120" height="120" />
|
|
<h1 className="hero__title">
|
|
{siteConfig.title}
|
|
<span style={{ marginLeft: '50px' }} />
|
|
<GitHubButton href="https://github.com/JohnnyCrazy/SpotifyAPI-NET" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star JohnnyCrazy/SpotifyAPI-NET on GitHub">Star</GitHubButton>
|
|
</h1>
|
|
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
|
<div className={styles.buttons}>
|
|
<Link
|
|
className={classnames(
|
|
'button button--outline button--secondary button--lg',
|
|
styles.getStarted,
|
|
)}
|
|
to={useBaseUrl('docs/next/introduction')}>
|
|
Get Started
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
<div className={classnames('col col--7', styles.exampleCode)}>
|
|
<CodeBlock metastring="csharp" className="csharp">
|
|
{exampleCode}
|
|
</CodeBlock>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<div className="container">
|
|
<h2 style={{ textAlign: 'center', marginTop: '30px' }}>Try it out now</h2>
|
|
<InstallInstructions />
|
|
</div>
|
|
{features && features.length && (
|
|
<section className={styles.features}>
|
|
<div className="container">
|
|
<div className="row">
|
|
{features.map((props, idx) => (
|
|
<Feature key={idx} {...props} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)}
|
|
</main>
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default Home;
|