Skip to content

Commit

Permalink
Merge pull request #139 from grucloud/age-calculator
Browse files Browse the repository at this point in the history
age calculator
  • Loading branch information
FredericHeem authored Dec 13, 2024
2 parents 3d90005 + 6f8e5e5 commit 578e95e
Show file tree
Hide file tree
Showing 14 changed files with 368 additions and 1 deletion.
24 changes: 24 additions & 0 deletions examples/age-calculator-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
2 changes: 2 additions & 0 deletions examples/age-calculator-app/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
save-exact = true
package-lock = false
23 changes: 23 additions & 0 deletions examples/age-calculator-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Frontend Mentor Age Calculator App

Here is the implementation in [Bau.js](https://github.com/grucloud/bau) of the [Frontend MentorAge Calculator App code challenge](https://www.frontendmentor.io/challenges/age-calculator-app-with-success-message-3FC1AZbNrv/hub)

## Workflow

Install the dependencies:

```sh
npm install
```

Start a development server:

```sh
npm run dev
```

Build a production version:

```sh
npm run build
```
18 changes: 18 additions & 0 deletions examples/age-calculator-app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/png"
href="./assets/images/favicon-32x32.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Age Calculator App | FrontendMentor</title>
<style id="bau-css"></style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
23 changes: 23 additions & 0 deletions examples/age-calculator-app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "frontendmentor-age-calculator-app",
"homepage": "https://grucloud.github.io/bau/frontendmentor/age-calculator-app/",
"private": true,
"version": "0.97.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "gh-pages -d ../../dist"
},
"devDependencies": {
"gh-pages": "6.1.1",
"typescript": "^5.0.2",
"vite": "^5.2.11"
},
"dependencies": {
"@grucloud/bau": "^0.97.0",
"@grucloud/bau-css": "^0.97.0",
"@grucloud/bau-ui": "^0.97.0"
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
173 changes: 173 additions & 0 deletions examples/age-calculator-app/src/ageCalculator.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
import { type Context } from "@grucloud/bau-ui/context";

export default function (context: Context) {
const { bau, css } = context;
const { p, label, input, form, i, img, hr, span, section, button } = bau.tags;

const yearsState = bau.state("--");
const monthsState = bau.state("--");
const daysState = bau.state("--");

const className = css`
display: grid;
gap: 0.5rem;
padding: 2rem;
border-radius: 1rem 1rem 7rem 1rem;
background-color: var(--White);
min-width: 600px;
@media (max-width: 600px) {
min-width: unset;
}
.dob {
display: flex;
gap: 1rem;
& label {
display: grid;
text-transform: uppercase;
font-size: 0.7rem;
font-weight: 600;
color: var(--Smokey-grey);
letter-spacing: 0.1rem;
gap: 0.3rem;
& input {
@media (min-width: 600px) {
min-width: 5rem;
}
padding: 1rem;
border-radius: 0.5rem;
border: 1px solid var(--Light-grey);
font-size: 1.2rem;
font-weight: 600;
&:focus {
outline: 1px auto var(--color-primary);
}
}
}
}
.submit {
display: flex;
align-items: center;
& hr {
height: 1px;
background-color: var(--Light-grey);
border: none;
width: 100%;
@media (min-width: 600px) {
&:last-child {
display: none;
}
}
}
& button {
border: none;
border-radius: 50%;
background-color: var(--color-primary);
cursor: pointer;
@media (max-width: 600px) {
img {
width: 42px;
height: 42px;
}
}
}
}
.age-result {
font-size: 32px;
font-weight: 800;
font-style: italic;
@media (min-width: 600px) {
font-size: 60px;
}
.timeunit {
color: var(--color-primary);
}
}
`;

const onsubmit = (event: any) => {
event.preventDefault();
const { day, month, year } = Object.fromEntries(new FormData(event.target));
console.log(day, month, year);

const dob = Date.parse(`${year}-${month}-${day}`);
const now = Date.now();
let age = (now - dob) / 1000;

const secondsInYear = 31536000;
const secondsInMonth = 2628000;
const secondsInDay = 86400;

yearsState.val = String(Math.floor(age / secondsInYear));
let remainingSeconds = age % secondsInYear;

monthsState.val = String(Math.floor(remainingSeconds / secondsInMonth));
remainingSeconds %= secondsInMonth;

daysState.val = String(Math.floor(remainingSeconds / secondsInDay));
};

return () => {
return form(
{ class: className, onsubmit },
section(
{ class: "dob" },
label(
"Day",
input({
type: "number",
name: "day",
placeholder: "DD",
min: 1,
max: 31,
required: true,
})
),
label(
"Month",
input({
type: "number",
name: "month",
placeholder: "MM",
min: 1,
max: 12,
required: true,
})
),
label(
"Year",
input({
type: "number",
name: "year",
placeholder: "YYYY",
min: 1900,
max: new Date().getFullYear(),
required: true,
})
)
),
section(
{ class: "submit" },
hr(),
button(
{ type: "submit" },
img({
src: "./assets/images/icon-arrow.svg",
alt: "submit",
height: 80,
width: 80,
})
),
hr()
),
section(
{ class: "age-result" },
p(span({ class: "timeunit" }, yearsState), i(" years")),
p(span({ class: "timeunit" }, monthsState), i(" months")),
p(span({ class: "timeunit" }, daysState), i(" days"))
)
);
};
}
18 changes: 18 additions & 0 deletions examples/age-calculator-app/src/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { createContext, type Context } from "@grucloud/bau-ui/context";
import ageCalculator from "./ageCalculator";
import "./style.css";

const context = createContext();

const app = (context: Context) => {
const { bau } = context;
const { main } = bau.tags;
const AgeCalculator = ageCalculator(context);

return function () {
return main(AgeCalculator());
};
};

const App = app(context);
document.getElementById("app")?.replaceChildren(App());
50 changes: 50 additions & 0 deletions examples/age-calculator-app/src/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,400;1,800&display=swap");

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--Purple: hsl(259, 100%, 65%);
--Light-red: hsl(0, 100%, 67%);

--White: hsl(0, 0%, 100%);
--Off-white: hsl(0, 0%, 94%);
--Light-grey: hsl(0, 0%, 86%);
--Smokey-grey: hsl(0, 1%, 44%);
--Off-black: hsl(0, 0%, 8%);

--color-primary-h: 259;
--color-primary-base-s: 100%;
--color-primary-l: 65%;

--color-neutral-h: 245;
--color-neutral-base-s: 18%;
--color-neutral-l: 26%;

--color-danger-h: 358;
--color-danger-base-s: 79%;
--color-danger-l: 66%;

--font-color-primary: white;
--background-color: white;
}
body {
background-color: var(--Light-grey);
font: 400 16px/1.6 "Poppins", sans-serif;
min-height: 100vh;
display: grid;
place-content: center;
}

input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
}

input[type="number"] {
-moz-appearance: textfield;
appearance: textfield;
margin: 0;
}
1 change: 1 addition & 0 deletions examples/age-calculator-app/src/vite-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="vite/client" />
23 changes: 23 additions & 0 deletions examples/age-calculator-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,

/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}
11 changes: 11 additions & 0 deletions examples/age-calculator-app/vite.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { defineConfig } from "vite";

export default defineConfig(({ command, mode, ssrBuild }) => {
return {
base: "/bau/frontendmentor/age-calculator-app/",
build: { outDir: "../../dist/frontendmentor/age-calculator-app" },
server: {
open: true,
},
};
});
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function (context: Context) {
grid-template-areas: "image" "form";
border-radius: 0;
}
padding: 1rem;
padding-inline: 1rem;
margin-inline: 1rem;
background-color: var(--White);
border-radius: 2rem;
Expand Down

0 comments on commit 578e95e

Please sign in to comment.