Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

News homepage #142

Merged
merged 3 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bau-css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"build": "vite build",
"preview": "vite preview",
"bundle-visualizer": "vite-bundle-visualizer",
"test": "vitest"
"test": "vitest run"
},
"devDependencies": {
"happy-dom": "15.7.4",
Expand Down
2 changes: 1 addition & 1 deletion bau-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"build": "vite build",
"preview": "vite preview",
"bundle-visualizer": "vite-bundle-visualizer",
"test": "vitest"
"test": "vitest run"
},
"dependencies": {
"@grucloud/bau": "^0.97.0"
Expand Down
2 changes: 1 addition & 1 deletion bau/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dev": "vite",
"build": "vite build",
"bundle-visualizer": "vite-bundle-visualizer",
"test": "vitest"
"test": "vitest run"
},
"devDependencies": {
"@vitest/browser": "2.1.1",
Expand Down
1 change: 1 addition & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Below is a list of projects implemented using _Bau_.
| IP Address Tracker | [live](https://grucloud.github.io/bau/frontendmentor/ip-address-tracker/) | [code](./ip-address-tracker) |
| Job Listing With Filtering | [live](https://grucloud.github.io/bau/frontendmentor/job-listings-with-filtering/) | [code](./job-listings-with-filtering) |
| Launch Countdown Timer | [live](https://grucloud.github.io/bau/frontendmentor/launch-countdown-timer/) | [code](./launch-countdown-timer) |
| News Homepage | [live](https://grucloud.github.io/bau/frontendmentor/news-homepage/) | [code](./news-homepage) |
| Newsletter Signup Form | [live](https://grucloud.github.io/bau/frontendmentor/newsletter-signup-form/) | [code](./newsletter-signup-form) |
| Mortgage Repayment Calculator | [live](https://grucloud.github.io/bau/frontendmentor/mortgage-repayment-calculator/) | [code](./mortgage-repayment-calculator) |
| Multi Step Form | [live](https://grucloud.github.io/bau/frontendmentor/multi-step-form/) | [code](./multi-step-form) |
Expand Down
2 changes: 1 addition & 1 deletion examples/calculator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test": "vitest run",
"deploy": "gh-pages -d ../../dist"
},
"devDependencies": {
Expand Down
24 changes: 24 additions & 0 deletions examples/news-homepage/.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/news-homepage/.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/news-homepage/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Frontend Mentor News Homepage

Here is the implementation in [Bau.js](https://github.com/grucloud/bau) of the [Frontend Mentor News Homepage code challenge](https://www.frontendmentor.io/challenges/news-homepage-H6SWTa1MFl)

## 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/news-homepage/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>News Homepage | 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/news-homepage/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "frontendmentor-news-homepage",
"homepage": "https://grucloud.github.io/bau/frontendmentor/news-homepage/",
"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.
1 change: 1 addition & 0 deletions examples/news-homepage/public/assets/images/icon-menu.svg
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions examples/news-homepage/public/assets/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions examples/news-homepage/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 newsHomepage from "./newsHomepage";
import "./style.css";

const context = createContext();

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

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

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

const HEADERS = ["Home", "New", "Popular", "Trending", "Categories"];

export default function (context: Context) {
const { bau, css } = context;
const { article, nav, ul, li, header, h1, a } = bau.tags;

const className = css`
display: grid;
gap: 0.5rem;
margin-inline: auto;
padding: 1rem;
max-width: 800px;
> header {
display: flex;
align-items: center;
justify-content: space-between;
h1 {
font-size: 2rem;
font-weight: 800;
}
}
`;

const Nav = () =>
nav(
{
class: css`
> ul {
list-style: none;
display: inline-flex;
gap: 0.7rem;
> li {
font-size: 0.8rem;
> a {
text-decoration: none;
color: var(--color-gray-500);
&:hover {
color: var(--soft-orange);
}
}
}
}
`,
},
ul(HEADERS.map((h) => li(a({ href: `${h}` }, h))))
);

return () => {
return article({ class: className }, header(h1("W."), Nav()));
};
}
38 changes: 38 additions & 0 deletions examples/news-homepage/src/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
@import url("https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap");

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

:root {
--soft-orange: hsl(35, 77%, 62%);
--soft-red: hsl(5, 85%, 63%);

--off-white: hsl(36, 100%, 99%);
--grayish-blue: hsl(233, 8%, 79%);
--dark-grayish-blue: hsl(236, 13%, 42%);
--very-dark-blue: hsl(240, 100%, 5%);

--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 {
font: 400 15px/1.5 "Inter", sans-serif;
min-height: 100vh;
display: grid;
}
1 change: 1 addition & 0 deletions examples/news-homepage/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/news-homepage/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/news-homepage/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/news-homepage/",
build: { outDir: "../../dist/frontendmentor/news-homepage" },
server: {
open: true,
},
};
});
Loading