wise-white
wise-white•4w ago

Did Refine remove the Remix scaffolder?

Did Refine remove the Remix scaffolder?
13 Replies
provincial-silver
provincial-silver•4w ago
Hi all, Is there ready docker images for ARM64 server architecture? We need to deploy refine using docker and all the data centre servers are ARM based.
fascinating-indigo
fascinating-indigo•4w ago
Can you not start with a Node ARM base then add the additions
ambitious-aqua
ambitious-aqua•3w ago
Hello guys, how are you? Just hopped on here to say I'm really enjoys the refine tutorial and your docs And also to see if I'm the only one having issues with live provider. I followed the information on this doc https://refine.dev/docs/advanced-tutorials/real-time, to set up an Ably live provider and it doesn't work I have my data provider and auth provider working fine, but as soon as I add the live provider my app component stops rendering, it just shows a blank page with a <noscript>You need to enable JavaScript to run this app.</noscript> Would send images of the code but it doesn't allow me to
rare-sapphire
rare-sapphire•3w ago
<Select showSearch={false} style={{ width: 150 }} placeholder="Firms" onSearch={undefined}
onChange={undefined} searchValue={""} {...firmSelect} /> Hi guys. Sorry for asking here because ai couldnt solve. This select still do Api calls to the server. How can I disable it?
plain-purple
plain-purple•3w ago
hello 🤠
conventional-tan
conventional-tan•2w ago
Hi, I have a question, I use strapi-v4 documentation plugin for creating swagger 3.0 docs, the generated documentation describes responses from strapi in the format: id?: number; attributes?: attributes;, but i also use useList with generated types from strapi documentation plugin, useList use normilizeData changing the answer by removing references to attributes, I can't remove them from the strapi, this is the default behavior, how can I solve the typing problem without manually rewriting the type of all the answers?
stormy-gold
stormy-gold•2w ago
I have been trying to ask the ai/support bot how to assign an error message when using the supabase dataprovider and not having any luck. Basically I am using the Supabase dataprovider, I have a form that has a field called slug, the server will throw an error if it is a duplicate, I want the async form validation to have a friendly description attached to the field. Right now this is what I have
const { modalProps, formProps, onFinish, close, form } = useModalForm<any>({
action: "create",
resource: "sites",
defaultVisible: true,
redirect: false,
mutationMode: "pessimistic",
defaultFormValues: {
is_active: true,
},
createMutationOptions:{

onError: async (error: HttpError, variables, context) => {
console.error(error);

form.setFields([
{
name: 'slug',
errors: ['Slug error' ],
},
]);

// Handle other errors if needed
return Promise.reject(error);
}
}
});
const { modalProps, formProps, onFinish, close, form } = useModalForm<any>({
action: "create",
resource: "sites",
defaultVisible: true,
redirect: false,
mutationMode: "pessimistic",
defaultFormValues: {
is_active: true,
},
createMutationOptions:{

onError: async (error: HttpError, variables, context) => {
console.error(error);

form.setFields([
{
name: 'slug',
errors: ['Slug error' ],
},
]);

// Handle other errors if needed
return Promise.reject(error);
}
}
});
I have tried variations of this, is the only option to create a custom data provider and handle it in the create? Is there no overrides in the supabase data provider for this kind of handling? I guess the only option is to create custom data providers for every resource that needs this type of validation
modern-teal
modern-teal•2w ago
Hi everyone, I am looking for remote opportunities. Could anyone point me in the right direction?
like-gold
like-gold•2w ago
Hey guys, thanks for the library! I got a question regarding hasura provider. I got this error 'can not read properties of undefined, reading aggregate'. I believe it's because i have multiple query_roots in hasura, so the graphql response was something like this -> data.root_name{post, aggregate}. And I believe it should be just -> data{post, aggregate} how do i go about this guys? thanks!
useful-bronze
useful-bronze•2w ago
Hi guys,I am a senior full stack developer. I am looking for an upwork account in USA, Canada, or Mexico.If you do not have account, I can create your account remotely. I know the way how to create account. If you are living in US or Canada or Mexico, I welcome you. To make account you have to do phone verify and ID card verify in your computer. I need your help for this too. After creating account, I want you turn on your computer 24/7 so I can work in your computer remotely. I am ready to pay $100-$150 per month and also share some income from upwork. I CAN PAY AFTER USING YOUR ACCOUNT ONE MONTH. I want to use Anydesk to access your computer remotely and I only need Chrome browser. If you are interested in my offer, please DM me. I am looking for long term collaboration. I am looking forward to working with you. With all my best regards, Thanks
like-gold
like-gold•2w ago
nvm, found it, solve it using responseMiddleWare
stormy-gold
stormy-gold•6d ago
Hello! I have question about refine table filtration. When I select something and filter, I have filtration and updated URL, like here http://localhost:3002/app/customer-ratings-output?pageSize=10&current=1&filters[0][field]=customerName&filters[0][value]=Investmanagenent%20LLC.&filters[0][operator]=contains but when I click on cross and want to remove filtration, It is not working. How It can be fixed?
exotic-emerald
exotic-emerald•6d ago
is this useTable hook filter?