Thanks again, asonix. Updated dependencies to remove lines from Dockerfile. Fixed HRT Tracker... Again.

This commit is contained in:
Alexis Werefox 2021-04-26 16:49:40 +00:00
parent ae7876cf91
commit bebc2f84c2
5 changed files with 17519 additions and 1579 deletions

View File

@ -3,8 +3,6 @@ FROM node:12-alpine
RUN apk update && \
apk add --no-cache bash
RUN npm install --save next && \
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest && \
npm install --save axios
RUN npm install
WORKDIR /usr/src/app

12530
src/info/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -8,8 +8,13 @@
"start": "next start -p 3444"
},
"dependencies": {
"autoprefixer": "^10.2.5",
"axios": "^0.21.1",
"foo": "^0.0.7",
"next": "10.1.3",
"postcss": "^8.2.13",
"react": "17.0.2",
"react-dom": "17.0.2"
"react-dom": "17.0.2",
"tailwindcss": "^2.1.2"
}
}

View File

@ -16,8 +16,16 @@ function getTimes() {
};
}
export default function HRT() {
const [timesArray, setTimesArray] = useState(getTimes());
export const getServerSideProps = async () => {
return {
props: {
startTimes: getTimes(),
},
};
};
export default function HRT({ startTimes }) {
const [timesArray, setTimesArray] = useState(startTimes);
useEffect(() => {
const interval = setInterval(() => {
@ -32,17 +40,17 @@ export default function HRT() {
card_title="Track my HRT progress!"
>
<WCard>
<p className="p-6 text-lg md:text-2xl text-center text-werefox-blue-dark dark:text-werefox-blue">
<p className="text-lg md:text-2xl text-center text-werefox-blue-dark dark:text-werefox-blue">
I'm so glad you're interested!!
<br />
</p>
<p className="text-lg md:text-2xl text-center text-werefox-blue-dark dark:text-werefox-blue">
I have been on HRT for:
<br />
<p className="grid grid-cols-1 grid-rows-4">
{Object.keys(timesArray).map(t => (
</p>
<div className="text-lg md:text-2xl text-center text-werefox-blue-dark dark:text-werefox-blue grid grid-cols-1 grid-rows-4">
{Object.keys(timesArray).map((t) => (
<p>{timesArray[t]}</p>
))}
</p>
</p>
</div>
</WCard>
</BasicPage>
);

File diff suppressed because it is too large Load Diff