diff --git a/.gitignore b/.gitignore index 6d38a2f..adba2b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ build/ +dist/ node_modules/ .vscode/ diff --git a/.npmrc b/.npmrc index 848f195..65c2534 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ always-auth=true -@prokyon:registry=https://forgejo.romanjaros.dev/api/packages/procyon/npm/ -@toolkit:registry=https://forgejo.romanjaros.dev/api/packages/procyon/npm/ +@procyon:registry=https://forgejo.romanjaros.dev/api/packages/procyon/npm/ +@toolkit:registry=https://forgejo.romanjaros.dev/api/packages/procyon/npm/ \ No newline at end of file diff --git a/README.md b/README.md index a2141fb..a97061a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Seedling -Seedling is a project generator for @prokyon libraries. +Seedling is a project generator for @procyon libraries. ## How to start diff --git a/source/common/gitignore b/source/common/gitignore index 16d8d68..97b1e1e 100644 --- a/source/common/gitignore +++ b/source/common/gitignore @@ -1,2 +1,7 @@ build/ -node_modules/ \ No newline at end of file +dist/ +node_modules/ + +.vscode/ + +.pnpm-store/ \ No newline at end of file diff --git a/source/common/npmrc b/source/common/npmrc index 8cacf51..65c2534 100644 --- a/source/common/npmrc +++ b/source/common/npmrc @@ -1,3 +1,3 @@ always-auth=true -@prokyon:registry=https://npm.romanjaros.dev -@toolkit:registry=https://npm.romanjaros.dev \ No newline at end of file +@procyon:registry=https://forgejo.romanjaros.dev/api/packages/procyon/npm/ +@toolkit:registry=https://forgejo.romanjaros.dev/api/packages/procyon/npm/ \ No newline at end of file diff --git a/source/ui/.eslintignore b/source/ui/.eslintignore deleted file mode 100644 index 6de2713..0000000 --- a/source/ui/.eslintignore +++ /dev/null @@ -1 +0,0 @@ -src/api/generated/*.ts \ No newline at end of file diff --git a/source/ui/.eslintrc b/source/ui/.eslintrc index 3cce05b..57b66a4 100644 --- a/source/ui/.eslintrc +++ b/source/ui/.eslintrc @@ -43,6 +43,9 @@ } } ], + "ignorePatterns": [ + "**/generated/*.ts" + ], "rules": { "max-len": "off", "no-useless-escape": "off", @@ -95,7 +98,7 @@ "^[^.]" ], [ - "^@prokyon?\\w" + "^@procyon?\\w" ], [ "^api?\\w", diff --git a/source/ui/package.json b/source/ui/package.json index 41f7ebf..ef5de3d 100644 --- a/source/ui/package.json +++ b/source/ui/package.json @@ -1,5 +1,5 @@ { - "name": "$(appName)-fe", + "name": "$(appName)-ui", "version": "0.1.0", "author": "Roman Jaroš", "license": "ISC", @@ -21,15 +21,15 @@ "codegen": "pnpm dlx @rtk-query/codegen-openapi openapi-config.ts" }, "dependencies": { - "@prokyon/api": "^1.0.31", - "@prokyon/auth": "^1.0.31", - "@prokyon/components": "^1.0.31", - "@prokyon/constants": "^1.0.31", - "@prokyon/forms": "^1.0.31", - "@prokyon/localization": "^1.0.31", - "@prokyon/styles": "^1.0.31", - "@prokyon/types": "^1.0.31", - "@prokyon/utils": "^1.0.31", + "@procyon/api": "^1.0.31", + "@procyon/auth": "^1.0.31", + "@procyon/components": "^1.0.31", + "@procyon/constants": "^1.0.31", + "@procyon/forms": "^1.0.31", + "@procyon/localization": "^1.0.31", + "@procyon/styles": "^1.0.31", + "@procyon/types": "^1.0.31", + "@procyon/utils": "^1.0.31", "@reduxjs/toolkit": "1.8.3", "clsx": "^1.2.1", "date-fns": "2.29.2", diff --git a/source/ui/src/api/emptyApi.ts b/source/ui/src/api/emptyApi.ts index f19645f..189c4a3 100644 --- a/source/ui/src/api/emptyApi.ts +++ b/source/ui/src/api/emptyApi.ts @@ -1,7 +1,7 @@ // @ts-nocheck import { createApi } from '@reduxjs/toolkit/query/react'; -import { baseQuery } from '@prokyon/api/query'; +import { baseQuery } from '@procyon/api/query'; export const emptyApi = createApi({ baseQuery: baseQuery({ baseUrl: process.env.ENDPOINT_URL as string }), diff --git a/source/ui/src/app/app.tsx b/source/ui/src/app/app.tsx index 7c6d543..5555060 100644 --- a/source/ui/src/app/app.tsx +++ b/source/ui/src/app/app.tsx @@ -2,10 +2,10 @@ import React, { FC } from 'react'; import { Route, Switch } from 'wouter'; -import { useAuth } from '@prokyon/auth/hook/useAuth'; -import Section from '@prokyon/components/Section'; -import { Skeleton } from '@prokyon/components/Skeleton'; -import { MenuItem } from '@prokyon/components/Skeleton/types'; +import { useAuth } from '@procyon/auth/hook/useAuth'; +import Section from '@procyon/components/Section'; +import { Skeleton } from '@procyon/components/Skeleton'; +import { MenuItem } from '@procyon/components/Skeleton/types'; import { WelcomePage } from 'pages/WelcomePage'; diff --git a/source/ui/src/app/routes.ts b/source/ui/src/app/routes.ts index ee85777..0a48b6c 100644 --- a/source/ui/src/app/routes.ts +++ b/source/ui/src/app/routes.ts @@ -1,5 +1,5 @@ // @ts-nocheck -import { DotNestedKeys } from '@prokyon/localization/types'; +import { DotNestedKeys } from '@procyon/localization/types'; export const Routes = { root: '/' diff --git a/source/ui/src/app/store.ts b/source/ui/src/app/store.ts index 2ddf158..19f197a 100644 --- a/source/ui/src/app/store.ts +++ b/source/ui/src/app/store.ts @@ -4,19 +4,19 @@ import { AnyAction, combineReducers, configureStore, ThunkDispatch } from '@reduxjs/toolkit'; import { TypedUseSelectorHook, useDispatch, useSelector } from 'react-redux'; -import authReducer from '@prokyon/auth/slice'; -import { AUTH_REDUCER_NAME } from '@prokyon/auth/types'; -import { ROOT_REDUCER_NAME } from '@prokyon/constants/redux'; +import authReducer from '@procyon/auth/slice'; +import { AUTH_REDUCER_NAME } from '@procyon/auth/types'; +import { ROOT_REDUCER_NAME } from '@procyon/constants/redux'; import { emptyApi } from '../api/emptyApi'; -type prokyonReducer = { +type procyonReducer = { [AUTH_REDUCER_NAME]: typeof authReducer; }; const store = configureStore({ reducer: { - [ROOT_REDUCER_NAME]: combineReducers({ + [ROOT_REDUCER_NAME]: combineReducers({ [AUTH_REDUCER_NAME]: authReducer, }), [emptyApi.reducerPath]: emptyApi.reducer, diff --git a/source/ui/src/index.tsx b/source/ui/src/index.tsx index dc454d5..c544b6b 100644 --- a/source/ui/src/index.tsx +++ b/source/ui/src/index.tsx @@ -7,8 +7,8 @@ import React from 'react'; import { render } from 'react-dom'; import { Provider } from 'react-redux'; -import { ModalWrapper } from '@prokyon/components/Modal/context'; -import { ToasterWrapper } from '@prokyon/components/Toaster/context'; +import { ModalWrapper } from '@procyon/components/Modal/context'; +import { ToasterWrapper } from '@procyon/components/Toaster/context'; import { App } from './app/app'; import store from './app/store'; diff --git a/source/ui/src/localization/locale.ts b/source/ui/src/localization/locale.ts index b58725f..ff73d0d 100644 --- a/source/ui/src/localization/locale.ts +++ b/source/ui/src/localization/locale.ts @@ -1,5 +1,5 @@ // @ts-nocheck -import { lang } from '@prokyon/localization/init'; +import { lang } from '@procyon/localization/init'; import { csCZ } from './dictionary/csCZ'; diff --git a/source/ui/src/localization/message.ts b/source/ui/src/localization/message.ts index 1376aa7..de18d16 100644 --- a/source/ui/src/localization/message.ts +++ b/source/ui/src/localization/message.ts @@ -1,10 +1,10 @@ // @ts-nocheck -import { t as pT } from '@prokyon/localization/message'; -import { Dictionary as prokyonDictionary, DotNestedKeys } from '@prokyon/localization/types'; +import { t as pT } from '@procyon/localization/message'; +import { Dictionary as procyonDictionary, DotNestedKeys } from '@procyon/localization/types'; import { Dictionary } from './schema'; -type FullDictionary = prokyonDictionary & Dictionary; +type FullDictionary = procyonDictionary & Dictionary; export function t(key: DotNestedKeys, variables?: Record) { return pT(key, variables); diff --git a/source/ui/src/pages/WelcomePage.tsx b/source/ui/src/pages/WelcomePage.tsx index bf9f6cd..fabed6c 100644 --- a/source/ui/src/pages/WelcomePage.tsx +++ b/source/ui/src/pages/WelcomePage.tsx @@ -1,12 +1,6 @@ // @ts-nocheck import React from 'react'; -import Section from '@prokyon/components/Section'; - export const WelcomePage = () => { - return ( -
- Seedling app generator. -
- ); + return
Seedling app generator.
; }; diff --git a/source/ui/src/styles/global.css b/source/ui/src/styles/global.css index 6ba81f9..fe1b5ce 100644 --- a/source/ui/src/styles/global.css +++ b/source/ui/src/styles/global.css @@ -1,4 +1,4 @@ -@import '@prokyon/styles/global.css'; +@import '@procyon/styles/global.css'; @import "./variables.css"; diff --git a/source/ui/src/styles/postcss.config.js b/source/ui/src/styles/postcss.config.js index 5b13d62..3ee57a4 100644 --- a/source/ui/src/styles/postcss.config.js +++ b/source/ui/src/styles/postcss.config.js @@ -1,4 +1,4 @@ -const postcss = require('@prokyon/styles/postcss.config'); +const postcss = require('@procyon/styles/postcss.config'); const configPath = require.resolve('./tailwind.config.js'); module.exports = postcss({ tailwindConfigFile: configPath }); diff --git a/source/ui/src/styles/tailwind.config.js b/source/ui/src/styles/tailwind.config.js index b0a31d0..bd6f09d 100644 --- a/source/ui/src/styles/tailwind.config.js +++ b/source/ui/src/styles/tailwind.config.js @@ -3,12 +3,12 @@ const path = require('path'); const plugin = require('tailwindcss/plugin'); module.exports = { - presets: [require('@prokyon/styles/tailwind.config')], + presets: [require('@procyon/styles/tailwind.config')], content: [ path.resolve(__dirname + '../../**/*.{js,ts,tsx}'), - path.resolve(__dirname + '../../../node_modules/@prokyon/**/*.{js,ts,tsx}'), + path.resolve(__dirname + '../../../node_modules/@procyon/**/*.{js,ts,tsx}'), ], - safelist: require('@prokyon/styles/tailwind.config').safelist, + safelist: require('@procyon/styles/tailwind.config').safelist, theme: { extend: require('./theme'), }, diff --git a/source/ui/src/styles/theme.js b/source/ui/src/styles/theme.js index 669cf14..4f27a4a 100644 --- a/source/ui/src/styles/theme.js +++ b/source/ui/src/styles/theme.js @@ -1,4 +1,4 @@ -const { pallete } = require('@prokyon/styles/utils/color'); +const { pallete } = require('@procyon/styles/utils/color'); module.exports = { colors: {