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

update examples - chakra-ui added #403

Merged
merged 2 commits into from
Sep 21, 2023
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
41 changes: 41 additions & 0 deletions examples/with-chakra-ui/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<p align="center">
<img src="https://i.imgur.com/oahHuxG.png">
<img src="https://i.imgur.com/sZ01Nyl.png">
</p>

## Usage

### Create an App

```
# with npx
$ npx create-nextron-app my-app --example with-chakra-ui

# with yarn
$ yarn create nextron-app my-app --example with-chakra-ui

# with pnpm
$ pnpm dlx create-nextron-app my-app --example with-chakra-ui
```

### Install Dependencies

```
$ cd my-app

# using yarn or npm
$ yarn (or `npm install`)

# using pnpm
$ pnpm install --shamefully-hoist
```

### Use it

```
# development mode
$ yarn dev (or `npm run dev` or `pnpm run dev`)

# production build
$ yarn build (or `npm run build` or `pnpm run build`)
```
12 changes: 12 additions & 0 deletions examples/with-chakra-ui/electron-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
appId: com.example.nextron
productName: My Nextron App
copyright: Copyright © 2018 Yoshihide Shiono
directories:
output: dist
buildResources: resources
files:
- from: .
filter:
- package.json
- app
publish: null
35 changes: 35 additions & 0 deletions examples/with-chakra-ui/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"private": true,
"name": "my-nextron-app",
"description": "My application description",
"version": "1.0.0",
"author": "Ketan Patel <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0"
},
"devDependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@chakra-ui/theme-tools": "^2.1.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"electron": "^21.3.3",
"electron-builder": "^23.6.0",
"framer-motion": "^6.5.1",
"next": "^12.3.4",
"nextron": "^8.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
}
}
17 changes: 17 additions & 0 deletions examples/with-chakra-ui/renderer/components/Container.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { Flex, FlexProps } from '@chakra-ui/react'

export const Container = (props: FlexProps) => (
<Flex
direction="column"
alignItems="center"
justifyContent="flex-start"
bg="gray.50"
color="black"
_dark={{
bg: 'gray.900',
color: 'white',
}}
transition="all 0.15s ease-out"
{...props}
/>
)
18 changes: 18 additions & 0 deletions examples/with-chakra-ui/renderer/components/DarkModeSwitch.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { useColorMode, IconButton } from '@chakra-ui/react'
import { SunIcon, MoonIcon } from '@chakra-ui/icons'

export const DarkModeSwitch = () => {
const { colorMode, toggleColorMode } = useColorMode()
const isDark = colorMode === 'dark'
return (
<IconButton
position="fixed"
top={4}
right={4}
icon={isDark ? <SunIcon /> : <MoonIcon />}
aria-label="Toggle Theme"
colorScheme="green"
onClick={toggleColorMode}
/>
)
}
5 changes: 5 additions & 0 deletions examples/with-chakra-ui/renderer/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Flex, FlexProps } from '@chakra-ui/react'

export const Footer = (props: FlexProps) => (
<Flex as="footer" mt="auto" mb={'2rem'} {...props} />
)
16 changes: 16 additions & 0 deletions examples/with-chakra-ui/renderer/components/Hero.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Flex, Heading } from '@chakra-ui/react'

export const Hero = ({ title }: { title: string }) => (
<Flex
justifyContent="center"
alignItems="center"
bgGradient="linear(to-l, heroGradientStart, heroGradientEnd)"
bgClip="text"
>
<Heading fontSize="4vw">{title}</Heading>
</Flex>
)

Hero.defaultProps = {
title: 'with-typescript-chakra-ui',
}
12 changes: 12 additions & 0 deletions examples/with-chakra-ui/renderer/components/Main.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Stack, StackProps } from '@chakra-ui/react'

export const Main = (props: StackProps) => (
<Stack
spacing="1.5rem"
width="100%"
maxWidth="48rem"
pt="8rem"
px="1rem"
{...props}
/>
)
39 changes: 39 additions & 0 deletions examples/with-chakra-ui/renderer/lib/theme.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { extendTheme } from '@chakra-ui/react'

const fonts = { mono: `'Menlo', monospace` }

const breakpoints = {
sm: '40em',
md: '52em',
lg: '64em',
xl: '80em',
}

const theme = extendTheme({
semanticTokens: {
colors: {
text: {
default: '#16161D',
_dark: '#ade3b8',
},
heroGradientStart: {
default: '#7928CA',
_dark: '#e3a7f9',
},
heroGradientEnd: {
default: '#FF0080',
_dark: '#fbec8f',
},
},
radii: {
button: '12px',
},
},
colors: {
black: '#16161D',
},
fonts,
breakpoints,
})

export default theme
12 changes: 12 additions & 0 deletions examples/with-chakra-ui/renderer/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
trailingSlash: true,
webpack: (config, { isServer }) => {
if (!isServer) {
config.target = 'electron-renderer'
}
return config
},
images: {
unoptimized: true,
},
}
14 changes: 14 additions & 0 deletions examples/with-chakra-ui/renderer/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { ChakraProvider } from '@chakra-ui/react'

import theme from '../lib/theme'
import { AppProps } from 'next/app'

function MyApp({ Component, pageProps }: AppProps) {
return (
<ChakraProvider theme={theme}>
<Component {...pageProps} />
</ChakraProvider>
)
}

export default MyApp
18 changes: 18 additions & 0 deletions examples/with-chakra-ui/renderer/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import NextDocument, { Html, Head, Main, NextScript } from 'next/document'
import { ColorModeScript } from '@chakra-ui/react'

export default class Document extends NextDocument {
render() {
return (
<Html>
<Head />
<body>
{/* Make Color mode to persists when you refresh the page. */}
<ColorModeScript />
<Main />
<NextScript />
</body>
</Html>
)
}
}
42 changes: 42 additions & 0 deletions examples/with-chakra-ui/renderer/pages/home.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import React from "react"
import Head from 'next/head'
import Image from 'next/image'
import { Button, Link as ChakraLink } from "@chakra-ui/react"

import { Container } from '../components/Container'
import { DarkModeSwitch } from '../components/DarkModeSwitch'
import { Footer } from '../components/Footer'
import { Hero } from "../components/Hero"

const Home = () => (
<React.Fragment>
<Head>
<title>Home - Nextron (with-typescript-chakra-ui)</title>
</Head>
<Container minHeight="100vh">
<DarkModeSwitch />
<Image
src="/images/logo.png"
alt="Logo image"
height='200px'
width='200px'
/>
<Hero title={`⚡Electron⚡ + Next.js + Chakra UI = 🔥`} />
<Footer>
<Button
as={ChakraLink}
href="/next"
variant="solid"
colorScheme="teal"
rounded="button"
width="full"
>
Go to next page
</Button>
</Footer>

</Container>
</React.Fragment>
)

export default Home
44 changes: 44 additions & 0 deletions examples/with-chakra-ui/renderer/pages/next.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import React from 'react'
import Head from 'next/head'
import Image from 'next/image'
import { Button, Link as ChakraLink } from "@chakra-ui/react"

import { Container } from '../components/Container'
import { DarkModeSwitch } from '../components/DarkModeSwitch'
import { Footer } from '../components/Footer'
import { Hero } from '../components/Hero'

const Next = () => {
return (
<React.Fragment>
<Head>
<title>Next - Nextron (with-typescript-chakra-ui)</title>
</Head>
<Container minHeight="100vh">
<DarkModeSwitch />
<Image
src="/images/logo.png"
alt="Logo image"
height='200px'
width='200px'
/>
<Hero title={`⚡ Nextron ⚡`} />
<Footer>
<Button
as={ChakraLink}
href="/home"
variant="outline"
colorScheme="teal"
rounded="button"
width="full"
>
Go to home page
</Button>
</Footer>

</Container>
</React.Fragment>
)
}

export default Next
5 changes: 5 additions & 0 deletions examples/with-chakra-ui/renderer/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": "../tsconfig.json",
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
19 changes: 19 additions & 0 deletions examples/with-chakra-ui/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"exclude": ["node_modules", "renderer/next.config.js", "app", "dist"]
}
Loading