Skip to content

Commit

Permalink
Merge pull request #117 from grucloud/results-summary-component
Browse files Browse the repository at this point in the history
Results summary component
  • Loading branch information
FredericHeem authored Oct 29, 2024
2 parents d3174be + f21bd29 commit 44a903b
Show file tree
Hide file tree
Showing 17 changed files with 388 additions and 0 deletions.
24 changes: 24 additions & 0 deletions examples/result-summary-component/.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/result-summary-component/.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/result-summary-component/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Frontend Mentor Result Summary Component

Here is the implementation in [Bau.js](https://github.com/grucloud/bau) of the [Frontend Mentor Result Summary Component code challenge](https://www.frontendmentor.io/challenges/results-summary-component-CE_K6s0maV)

## Workflow

Install the dependencies:

```sh
npm install
```

Start a development server:

```sh
npm run dev
```

Build a production version:

```sh
npm run build
```
17 changes: 17 additions & 0 deletions examples/result-summary-component/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!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>Result Summary Component | FrontendMentor</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
20 changes: 20 additions & 0 deletions examples/result-summary-component/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "frontendmentor-result-summary-component",
"private": true,
"version": "0.85.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"typescript": "^5.0.2",
"vite": "^5.2.11"
},
"dependencies": {
"@grucloud/bau": "^0.85.0",
"@grucloud/bau-css": "^0.85.0",
"@grucloud/bau-ui": "^0.85.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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions examples/result-summary-component/src/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"category": "Reaction",
"score": 80,
"icon": "./assets/images/icon-reaction.svg"
},
{
"category": "Memory",
"score": 92,
"icon": "./assets/images/icon-memory.svg"
},
{
"category": "Verbal",
"score": 61,
"icon": "./assets/images/icon-verbal.svg"
},
{
"category": "Visual",
"score": 72,
"icon": "./assets/images/icon-visual.svg"
}
]
20 changes: 20 additions & 0 deletions examples/result-summary-component/src/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { createContext, type Context } from "@grucloud/bau-ui/context";
import resultSummary from "./resultSummary";

import "./style.css";

const context = createContext();

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

const ResultSummary = resultSummary(context);

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

const App = app(context);
document.getElementById("app")?.replaceChildren(App());
195 changes: 195 additions & 0 deletions examples/result-summary-component/src/resultSummary.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
import { type Context } from "@grucloud/bau-ui/context";
import data from "./data.json";

const score = 76;

export default function (context: Context) {
const { bau, css } = context;
const { h1, h2, div, p, article, section, button, ul, li, span, img } =
bau.tags;
const className = css`
max-width: 500px;
margin: auto;
display: grid;
grid-template-columns: minmax(auto, 350px) minmax(auto, 350px);
grid-template-rows: 1fr;
@media (max-width: 500px) {
grid-template-columns: 1fr;
border-radius: 0;
}
border-radius: 0.6rem;
box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.1);
section {
display: flex;
flex-direction: column;
padding: 1rem;
gap: 0.7rem;
&.result {
align-items: center;
border-radius: 0.6rem;
@media (max-width: 600px) {
flex-direction: column;
border-radius: 0 0 0.6rem 0.6rem;
}
background: linear-gradient(
var(--Light-slate-blue),
var(--Light-royal-blue)
);
min-width: 250px;
h1 {
color: var(--color);
}
h2 {
color: var(--white);
}
p {
color: var(--color);
text-align: center;
padding: 0 1rem;
}
.score-container {
color: var(--white);
background: linear-gradient(var(--Violet-blue), var(--Persian-blue));
display: flex;
flex-direction: column;
align-items: center;
border-radius: 50%;
aspect-ratio: 1;
padding: 1.5rem;
.score {
color: var(--white);
font-size: 3rem;
font-weight: bold;
line-height: 3rem;
}
.score-total {
font-size: 0.7rem;
color: var(--color);
}
}
}
&.summary {
min-width: 250px;
button {
width: 100%;
font-weight: 500;
font-size: 1rem;
padding: 0.6rem 0;
color: white;
border-radius: 1rem;
background-color: var(--btn-bg);
border: none;
outline: none;
cursor: pointer;
&:hover {
background: linear-gradient(
var(--Light-slate-blue),
var(--Light-royal-blue)
);
}
}
}
ul {
padding: 0;
flex-grow: 1;
li {
list-style: none;
padding: 0.7rem 0.5rem;
margin: 0.5rem 0rem;
border-radius: 0.3rem;
display: flex;
justify-content: space-between;
align-items: center;
&:nth-child(1) {
color: hsl(0, 100%, 67%);
background: hsla(0, 100%, 67%, 0.05);
}
&:nth-child(2) {
color: hsl(39, 100%, 56%);
background: hsla(39, 100%, 56%, 0.05);
}
&:nth-child(3) {
color: hsl(166, 100%, 37%);
background: hsla(166, 100%, 37%, 0.05);
}
&:nth-child(4) {
color: hsl(234, 85%, 45%);
background: hsla(234, 85%, 45%, 0.05);
}
.category {
display: flex;
align-items: center;
gap: 0.4rem;
}
.category {
font-weight: 700;
}
.score {
color: hsl(224, 30%, 27%);
font-weight: 700;
padding-right: 0.3rem;
}
.score-total {
color: hsla(224, 30%, 27%, 0.5);
}
}
}
}
`;

const scoreState = bau.state(score);

var count = 0;
var interval = setInterval(() => {
count++;
scoreState.val = count;
if (count >= score) {
clearInterval(interval);
}
}, 5);

return function resultSummary() {
return article(
{ class: className },
section(
{ class: "result" },
h1("Result"),

div(
{ class: "score-container" },
div({ class: "score" }, scoreState),
div({ class: "score-total" }, "of 100")
),
h2("Great"),
p(
"You scored higher than 65% of the people who have taken these tests."
)
),
section(
{ class: "summary" },
h1("Summary"),
ul(
data.map(({ category, score, icon }) =>
li(
div(
{ class: "category" },
img({ src: icon }),
span({ class: "category" }, category)
),
div(
span({ class: "score" }, score),
span({ class: "score-total" }, "/100")
)
)
)
),
button("Continue")
)
);
};
}
28 changes: 28 additions & 0 deletions examples/result-summary-component/src/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@500;700;800&display=swap");

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

:root {
--Light-slate-blue: hsl(252, 100%, 67%);
--Light-royal-blue: hsl(241, 81%, 54%);
--Violet-blue: hsla(256, 72%, 46%, 1);
--Persian-blue: hsla(241, 72%, 46%, 0);
--white: hsl(0, 0%, 100%);
--Pale-blue: hsl(221, 100%, 96%);
--color: hsl(241, 100%, 89%);
--btn-bg: hsl(224, 30%, 27%);
}

body {
font-family: "Hanken Grotesk", sans-serif;
min-height: 100vh;
display: grid;
place-items: center;

@media (max-width: 600px) {
place-items: flex-start;
}
}
1 change: 1 addition & 0 deletions examples/result-summary-component/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/result-summary-component/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"]
}
Loading

0 comments on commit 44a903b

Please sign in to comment.