Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b00590a
feat: integrate dash with api
viictoo Apr 3, 2024
2f0303c
cleanup: remove unused dependencies
viictoo Apr 4, 2024
780c738
clean: Delete unused component
viictoo Apr 4, 2024
3dbb24f
clean: Remove unused imports and update routes in App.tsx
viictoo Apr 4, 2024
0b00a54
deat: Update App configs in authProvider.ts
viictoo Apr 4, 2024
881b04b
feat: Remove unused code and fix formatting in header component
viictoo Apr 4, 2024
1aa3f55
feat: import Create and useAutocomplete form
viictoo Apr 4, 2024
705daae
Fix: bug in login functionality
viictoo Apr 4, 2024
ed4019a
feat: Refactor comment list table headers
viictoo Apr 4, 2024
810af7d
feat: Refactor CommentShow component to use @refinedev/core and @refi…
viictoo Apr 4, 2024
6d897c8
feat: reorganize comments page layout
viictoo Apr 4, 2024
9b71e00
fix: Update BarChart component
viictoo Apr 4, 2024
ca6b91e
f eat:Update dashboard layout and charts
viictoo Apr 4, 2024
9d61c84
fix: Refactor imports and remove unused code in posts.tsx
viictoo Apr 4, 2024
18cac67
feat: Refactor forum creation page
viictoo Apr 4, 2024
dc7ce9a
feat: Update form layout and labels in ForumEdit component
viictoo Apr 4, 2024
9edd69a
fieat: Refactor forum, post, and user list components
viictoo Apr 4, 2024
c8306ef
feat: Refactor ForumShow component using custom hooks
viictoo Apr 4, 2024
bf66efb
feat: Add ThemedTitleV2 component to Login page
viictoo Apr 4, 2024
ab78811
fix: Update labels in PostCreate component
viictoo Apr 4, 2024
b7abbc9
feat: add show post page
viictoo Apr 4, 2024
03cb057
fix: Update register in AuthPage component
viictoo Apr 4, 2024
0452c5a
fix: Refactor create headers to improve readability
viictoo Apr 4, 2024
67d8910
feat: restructure show user page layout
viictoo Apr 4, 2024
447305b
chore: update pnpm-lock.yaml
nuuxcode Apr 5, 2024
d67445b
refactor: comment unused var
nuuxcode Apr 5, 2024
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
23 changes: 23 additions & 0 deletions Admin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
2 changes: 2 additions & 0 deletions Admin/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
legacy-peer-deps=true
strict-peer-dependencies=false
42 changes: 42 additions & 0 deletions Admin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<div align="center" style="margin: 30px;">
<a href="https://refine.dev/">
<img alt="refine logo" src="https://refine.ams3.cdn.digitaloceanspaces.com/readme/refine-readme-banner.png">
</a>
<br />
<br />

<div align="center">
<a href="https://refine.dev">Home Page</a> |
<a href="https://discord.gg/refine">Discord</a> |
<a href="https://refine.dev/examples/">Examples</a> |
<a href="https://refine.dev/blog/">Blog</a> |
<a href="https://refine.dev/docs/">Documentation</a>

</div>
</div>

<br />

<div align="center"><strong>Build your <a href="https://reactjs.org/">React</a>-based CRUD applications, without constraints.</strong><br>An open source, headless web application framework developed with flexibility in mind.

<br />
<br />

[![Discord](https://img.shields.io/discord/837692625737613362.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/refine)
[![Twitter Follow](https://img.shields.io/twitter/follow/refine_dev?style=social)](https://twitter.com/refine_dev)

<a href="https://www.producthunt.com/posts/refine-3?utm_source=badge-top-post-badge&utm_medium=badge&utm_souce=badge-refine&#0045;3" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=362220&theme=light&period=daily" alt="refine - 100&#0037;&#0032;open&#0032;source&#0032;React&#0032;framework&#0032;to&#0032;build&#0032;web&#0032;apps&#0032;3x&#0032;faster | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>

</div>

## Try this example on your local

```bash
npm create refine-app@latest -- --example inferencer-material-ui
```

## Try this example on CodeSandbox

<br/>

[![Open inferencer-material-ui example from refine](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/embed/github/refinedev/refine/tree/master/examples/inferencer-material-ui?view=preview&theme=dark&codemirror=1)
15 changes: 15 additions & 0 deletions Admin/cypress.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { defineConfig } from "cypress";

export default defineConfig({
projectId: "sq5j3e",
retries: 5,
e2e: {
fixturesFolder: "../../cypress/fixtures",
supportFile: "../../cypress/support/e2e.ts",
},
chromeWebSecurity: false,
experimentalMemoryManagement: true,
numTestsKeptInMemory: 1,
viewportWidth: 1920,
viewportHeight: 1080,
});
Loading