diff --git a/next/components/hydra.js b/next/components/hydra.js
index 4dda940..a23e3e4 100644
--- a/next/components/hydra.js
+++ b/next/components/hydra.js
@@ -5,6 +5,7 @@ class HydraSynth extends React.Component {
super(props);
this.width = props.width;
this.height = props.height;
+ this.source= props.source;
}
componentDidMount() {
@@ -20,25 +21,24 @@ class HydraSynth extends React.Component {
});
hydra.setResolution(this.width, this.height);
- // This works! Now generate one for each :D
- // TODO: One per page, with template and lib
+ //TODO: Use source
// FIXME: Canvas position
- // s0.initImage("https://git.plnech.fr/pln/Hydra/raw/master/StarryNights/img/halley.png");
- // src(s0).out(o0)
- // src(o0)
- // .modulate(src(o0),() => Math.sin(time/100) / 10)
- // .out(o1)
- // src(o1)
- // .modulateScale(osc(1,0.4),0.05)
- // .blend(noise(100,0.92).colorama(),0.07)
- // .out(o2)
- // src(o2)
- // .blend(src(o2).thresh(), () => 0.5 + 0.125 * Math.sin(time / 100 % 180))
- // .scrollX(-0.05)
- // // .scrollY(-0.1)
- // .scale(1.08)
- // .out(o3)
- // render(o3)
+ s0.initImage("https://git.plnech.fr/pln/Hydra/raw/master/StarryNights/img/halley.png");
+ src(s0).out(o0)
+ src(o0)
+ .modulate(src(o0),() => Math.sin(time/100) / 10)
+ .out(o1)
+ src(o1)
+ .modulateScale(osc(1,0.4),0.05)
+ .blend(noise(100,0.92).colorama(),0.07)
+ .out(o2)
+ src(o2)
+ .blend(src(o2).thresh(), () => 0.5 + 0.125 * Math.sin(time / 100 % 180))
+ .scrollX(-0.05)
+ // .scrollY(-0.1)
+ .scale(1.08)
+ .out(o3)
+ render(o3)
}
render() {
diff --git a/next/components/layout.module.css b/next/components/layout.module.css
index d2ea313..38a5946 100644
--- a/next/components/layout.module.css
+++ b/next/components/layout.module.css
@@ -1,5 +1,5 @@
.container {
- max-width: 36rem;
+ max-width: 42rem;
padding: 0 1rem;
margin: 3rem auto 6rem;
}
diff --git a/next/content/hydras/dusty-halley.md b/next/content/hydras/dusty-halley.md
new file mode 100644
index 0000000..57f15da
--- /dev/null
+++ b/next/content/hydras/dusty-halley.md
@@ -0,0 +1,4 @@
+---
+title: Dusty Halley
+source: https://git.plnech.fr/pln/Hydra/raw/master/StarryNights/DustyHalley.js
+---
diff --git a/next/content/hydras/galactic.md b/next/content/hydras/galactic.md
new file mode 100644
index 0000000..5432e29
--- /dev/null
+++ b/next/content/hydras/galactic.md
@@ -0,0 +1,4 @@
+---
+title: GaLactic
+source: https://git.plnech.fr/pln/Hydra/raw/master/StarryNights/GaLactic.js
+---
diff --git a/next/lib/hydras.js b/next/lib/hydras.js
new file mode 100644
index 0000000..6d56e67
--- /dev/null
+++ b/next/lib/hydras.js
@@ -0,0 +1,13 @@
+import {getAllContentData, getAllContentIds, getContentData} from './utils'
+
+export function getHydrasData() {
+ return getAllContentData('hydras', true)
+}
+
+export function getAllHydraIds() {
+ return getAllContentIds("hydras")
+}
+
+export async function getHydraData(id) {
+ return getContentData("hydras", id)
+}
diff --git a/next/pages/hydra.js b/next/pages/hydra.js
index f903a97..553f7b6 100644
--- a/next/pages/hydra.js
+++ b/next/pages/hydra.js
@@ -3,19 +3,25 @@ import Link from "next/link";
import Head from "next/head";
import Layout from "../components/layout";
import HydraSynth from "../components/hydra";
+import utilStyles from "../styles/utils.module.css";
+import { getHydrasData } from "../lib/hydras";
+
+export async function getStaticProps() {
+ const hydras = getHydrasData();
-export async function getStaticProps(context) {
return {
- props: {},
+ props: {
+ hydras,
+ },
};
}
-export default function Hydra() {
+export default function Hydra({hydras}) {
return (
-
');
+ console.log(sourceCode);
+
+ hydraData.source = source;
+
+ return {
+ props: {
+ hydraData,
+ sourceCode
+ },
+ };
+}
+
+export async function getStaticPaths() {
+ const paths = getAllHydraIds();
+ return {
+ paths,
+ fallback: false,
+ };
+}
+
+export default function Hydra({ hydraData, sourceCode }) {
+ return (
+ {hydraData.title}
+
+
+