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

feat: upgrade to mui 6 #415

Merged
merged 1 commit into from
Dec 13, 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
179 changes: 93 additions & 86 deletions refine-nextjs/plugins/mui-example/src/app/blog-posts/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import {
DeleteButton,
EditButton,
List,
MarkdownField,
ShowButton,
useDataGrid,
} from "@refinedev/mui";
import { Typography } from '@mui/material'
import React from "react";
<%_ if (answers["data-provider"] === "data-provider-hasura") { _%>
import { BLOG_POSTS_QUERY } from "@queries/blog-posts";
Expand Down Expand Up @@ -54,105 +54,112 @@ export default function BlogPostList() {
});
<%_ } _%>

const columns = React.useMemo<GridColDef[]>(
() => [
{
field: "id",
headerName: "ID",
type: "number",
minWidth: 50,
const columns = React.useMemo<GridColDef[]>(
() => [
{
field: "id",
headerName: "ID",
type: "number",
minWidth: 50,
display: "flex",
align: 'left',
headerAlign: 'left',
},
{
field: "title",
headerName: "Title",
minWidth: 200,
display: "flex",
},
{
field: "content",
flex: 1,
headerName: "Content",
minWidth: 250,
display: "flex",
renderCell: function render({ value }) {
if (!value) return '-'
return (
<Typography component='p' whiteSpace='pre' overflow='hidden' textOverflow='ellipsis'>
{value}
</Typography>
);
},
{
field: "title",
flex: 1,
headerName: "Title",
minWidth: 200,
},
{
field: <%- blogPostCategoryTableField %>,
headerName: "Category",
minWidth: 160,
display: "flex",
<%_ if (isGraphQL || answers["data-provider"] === "data-provider-appwrite") { _%>
valueGetter: (_, row) => {
const value = row?.<%- blogPostCategoryFieldName %>?.title
return value
},
{
field: "content",
flex: 1,
headerName: "Content",
minWidth: 250,
renderCell: function render({ value }) {
if (!value) return '-'
return (
<MarkdownField value={value?.slice(0, 80) + "..." || ""} />
);
},
<%_ } else { _%>
valueGetter: (_, row) => {
const value = row?.<%- blogPostCategoryFieldName %>;
return value;
},
{
field: <%- blogPostCategoryTableField %>,
flex: 1,
headerName: "Category",
minWidth: 300,
<%_ if (isGraphQL || answers["data-provider"] === "data-provider-appwrite") { _%>
valueGetter: ({ row }) => {
const value = row?.<%- blogPostCategoryFieldName %>?.title
return value
},
<%_ } else { _%>
valueGetter: ({ row }) => {
const value = row?.<%- blogPostCategoryFieldName %>;
return value;
renderCell: function render({ value }) {
return categoryIsLoading ? (
<>Loading...</>
) : (
categoryData?.data?.find((item) => item.id === value?.id)?.title
);
},
renderCell: function render({ value }) {
return categoryIsLoading ? (
<>Loading...</>
) : (
categoryData?.data?.find((item) => item.id === value?.id)?.title
);
},
<%_ } _%>
},
{
field: "status",
flex: 1,
headerName: "Status",
minWidth: 200,
},
{
<%_ } _%>
},
{
field: "status",
headerName: "Status",
minWidth: 80,
display: "flex",
},
{
<%_ if (answers["data-provider"] === "data-provider-hasura") { _%>
field: "created_at",
field: "created_at",
<%_ } else if (answers["data-provider"] === "data-provider-appwrite") { _%>
field: "$createdAt",
field: "$createdAt",
<%_ } else { _%>
field: "createdAt",
field: "createdAt",
<%_ } _%>
flex: 1,
headerName: "Created at",
minWidth: 250,
renderCell: function render({ value }) {
return <DateField value={value} />;
},
headerName: "Created at",
minWidth: 120,
display: "flex",
renderCell: function render({ value }) {
return <DateField value={value} />;
},
{
field: "actions",
headerName: "Actions",
sortable: false,
renderCell: function render({ row }) {
return (
<>
<EditButton hideText recordItemId={row.id} />
<ShowButton hideText recordItemId={row.id} />
<DeleteButton hideText recordItemId={row.id} />
</>
);
},
align: "center",
headerAlign: "center",
minWidth: 80,
},
{
field: 'actions',
headerName: 'Actions',
align: 'right',
headerAlign: 'right',
minWidth: 120,
sortable: false,
display: 'flex',
renderCell: function render({ row }) {
return (
<>
<EditButton hideText recordItemId={row.id} />
<ShowButton hideText recordItemId={row.id} />
<DeleteButton hideText recordItemId={row.id} />
</>
);
},
],
<%_ if (isGraphQL || answers["data-provider"] === "data-provider-appwrite") { _%>
[],
<%_ } else { _%>
[categoryData],
<%_ } _%>
},
],
<%_ if (isGraphQL || answers["data-provider"] === "data-provider-appwrite") { _%>
[],
<%_ } else { _%>
[categoryData, categoryIsLoading],
<%_ } _%>
);

return (
<List>
<DataGrid {...dataGridProps} columns={columns} autoHeight />
<DataGrid {...dataGridProps} columns={columns} />
</List>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { BLOG_POSTS_QUERY } from "@queries/blog-posts";


export default function BlogPostShow() {
const { queryResult } = useShow({
const { query } = useShow({
<%_ if (answers["data-provider"] === "data-provider-hasura") { _%>
meta: {
fields: BLOG_POSTS_QUERY,
Expand All @@ -42,7 +42,7 @@ export default function BlogPostShow() {
<%_ } _%>
});

const { data, isLoading } = queryResult;
const { data, isLoading } = query;

const record = data?.data;

Expand Down
23 changes: 14 additions & 9 deletions refine-nextjs/plugins/mui-example/src/app/categories/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,29 @@ export default function CategoryList() {
const columns = React.useMemo<GridColDef[]>(
() => [
{
field: "id",
headerName: "ID",
type: "number",
field: 'id',
headerName: 'ID',
type: 'number',
minWidth: 50,
display: 'flex',
align: 'left',
headerAlign: 'left',
},
{
field: "title",
flex: 1,
headerName: "Title",
minWidth: 200,
display: "flex",
},
{
field: "actions",
headerName: "Actions",
field: 'actions',
headerName: 'Actions',
align: 'right',
headerAlign: 'right',
minWidth: 120,
sortable: false,
display: 'flex',
renderCell: function render({ row }) {
return (
<>
Expand All @@ -57,17 +65,14 @@ export default function CategoryList() {
</>
);
},
align: "center",
headerAlign: "center",
minWidth: 80,
},
],
[],
);

return (
<List>
<DataGrid {...dataGridProps} columns={columns} autoHeight />
<DataGrid {...dataGridProps} columns={columns} />
</List>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
<%_ } _%>

export default function CategoryShow() {
const { queryResult } = useShow({
const { query } = useShow({
<%_ if (answers["data-provider"] === "data-provider-hasura") { _%>
meta: {
fields: CATEGORIES_QUERY,
Expand All @@ -27,7 +27,7 @@ export default function CategoryShow() {
},
<%_ } _%>
});
const { data, isLoading } = queryResult;
const { data, isLoading } = query;

const record = data?.data;

Expand Down
4 changes: 2 additions & 2 deletions refine-nextjs/plugins/mui/extend.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const base = {
_app: {
refineProps: ["notificationProvider={notificationProvider}"],
refineMuiImports: ["notificationProvider", "RefineSnackbarProvider"],
refineProps: ["notificationProvider={useNotificationProvider}"],
refineMuiImports: ["useNotificationProvider", "RefineSnackbarProvider"],
wrapper: [
[
"<ColorModeContextProvider defaultMode={defaultMode}>",
Expand Down
10 changes: 5 additions & 5 deletions refine-nextjs/plugins/mui/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"dependencies": {
"@refinedev/mui": "^5.14.4",
"@refinedev/mui": "^6.0.0",
"@refinedev/react-hook-form": "^4.8.14",
"@mui/icons-material": "^5.8.3",
"@mui/icons-material": "^6.1.6",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/lab": "^5.0.0-alpha.85",
"@mui/material": "^5.8.6",
"@mui/x-data-grid": "^6.6.0",
"@mui/lab": "^6.0.0-beta.14",
"@mui/material": "^6.1.7",
"@mui/x-data-grid": "^7.22.2",
"js-cookie": "^3.0.5"
},
"devDependencies": {
Expand Down
Loading
Loading