Care to give an example? Or you just mean the computer is doing things for you while you focus on something else?
@dinghystudio25 күн бұрын
I think Siri was the thing that many people hoped would finally take away the tedious typing and swiping to manage an app for them by being able to speak to it. And then it wasn’t because it was .. well not smart enough :) The frustration with using your fingers to interact with software is that the interface is what it is, which means you can either use it right, as intended by the vendor, or you’re not getting anything. With voice or chat as interface to Ai, you always get something, like in a conversation with another human. That’s what I mean with this statement.
@akuya-ekorotАй бұрын
The supabase client offers a way to rename the columns when returning the data. The select method accepts a parameter for the columns. If you use the format customName:columnName, the data will have the custom name. So an alternative to the DTO.
@dinghystudioАй бұрын
Really? Oh wow thanks we will check that one out!
@IMore73Ай бұрын
Even after a day of „nothing worked on my end“ I find your uploads very relaxing. 😊 Thank you two for sharing! Your clips give me vibes of „See? Dev Experience can be bright and fun and giving some love to the project.“ Also: what‘s your VSCode color theme? It looks very nice and still readable.
@dinghystudioАй бұрын
Hi there! Thank you so much for the love! 🫶 I'm glad we can help brighter your day! My VSCode theme is this one: marketplace.visualstudio.com/items?itemName=mvllow.rose-pine (Using Cascadia Code as the font btw)
@DerekHarris-d4x2 ай бұрын
Thanks for these walk throughs! :) I've looked everywhere and can't find out how to have my website pages at the root nav level in Studio's structure. It looks like you found a way. What's the secret?
@dinghystudio2 ай бұрын
Oh yeah that's a bit of a head scratcher. What we do is this in the `deskStructure.ts`: ``` S.list() .title('Content') .items([ S.listItem() .title('Homepage') .icon(HomeIcon) .child( S.document() .schemaType('homepage') .documentId('homepage-page-builder') .views([...singletonDocumentNode(S)]) ), … ]) ``` So basically manually adding one specific document, with a specific Id to the desk. Does that help?
@DerekHarris-d4x2 ай бұрын
@@dinghystudio Yes, I appreciate it! Out of all the content on Sanity, including their own, I've found yours the most helpful when first starting out. :)
@dinghystudio2 ай бұрын
@@DerekHarris-d4x oh thank you, that's so nice to hear! We'll make sure to keep going then :)
@kshapkarki60602 ай бұрын
Good watch, thanks!
@dinghystudio2 ай бұрын
Glad you liked it!
@ishanloya3 ай бұрын
Hey. The createClient function is used to get data from Sanity into the frontend. From what I can tell, that's where you're adding the env variables right now. This means your 'preview' environment website will correctly display the drafts. However, how does Sanity itself know that you are in the previewDrafts perspective to show the "preview" option. Wouldn't that require setting some environment variables/config in the Sanity code? Are you running a production AND a preview version of the Sanity Studio itself? Also, I'm assuming you are hosting the Sanity Studio on Vercel and not using Sanity's default hosting. Maybe that's what's causing the confusion for me.
@dinghystudio3 ай бұрын
Hey! Thank you for reaching out 👌. You’re totally right, the trick for us is deploy the site twice (on Vercel) and set different env vars. So we have a special domain which we know has the preview mode enabled. That’s where we work on content and check code updates too. It’s basically just our staging branch deployment with a domain assigned.. I’d like to add that sanity studio itself does not know of the preview mode.. that’s only on the frontend.
@ZeToto10004 ай бұрын
It's funny cause I know all of the words that you used, but I can't for the life of me understand what the hell you're on about.
@dinghystudio3 ай бұрын
That’s fair! This short might indeed not capture the whole point I’m trying to make :) I think the complete video does a better job. If not please let me know, I’m always trying to learn and get better.
@astr4-r1r4 ай бұрын
Easy ? How ?? I'm struggling !!! :(
@dinghystudio3 ай бұрын
Heeey! Let’s fix that! Where are you stuck right now?
@iselaramirezlopez99845 ай бұрын
Thank you so much for this episode, you have no idea how much this interview helped me. I was given the assignment to plan the design team's expansion based on the international rollout of our product and had no idea how to start. This is just invaluable information ♥
@dinghystudio3 ай бұрын
So sorry for just getting back to you now! Thank you so much for this comment! ❤️ Glad to hear that it helped you and I wish you all the best with that project.
@studiomonty5 ай бұрын
Does this still work right now? I don't see the "Editor" or "Preview" tabs when opening a document.
@dinghystudio3 ай бұрын
It does yeah, we’re not a special version of sanity. To see the preview tab you need to install the iFrame pane plugin from sanity. Then the editor button will show up as well, so you can flip between the two. The last bit is to load the appropriate page into that iFrame pane and you’re done!
@AlexanderJWF5 ай бұрын
Just like desiging a dress takes consideration of the silhouette & material as well as the colors, patterns, etc. T For the design of any kind of media or online platform, the formating and organization of assets matters just as much as the color grading & logo shape.
@CharlotteEchterhoff5 ай бұрын
Love your records 😊
@dinghystudio3 ай бұрын
Thank youuuu!
@CharlotteEchterhoff5 ай бұрын
Very interesting! I enjoyed watching the Video a lot
@dinghystudio3 ай бұрын
Thanks!
@ETgoHome915 ай бұрын
Gay af 🤢🤮
@DmitryFromDon5 ай бұрын
Какая мерзкая хуйня попадается периодически в рекомендациях 😂😂😂
@aniruddha1537 ай бұрын
Love your video! Just what I was looking for.
@dinghystudio6 ай бұрын
Glad it was helpful!
@aniruddha1537 ай бұрын
Hey, this could be a stupid question, but what's the browser you're using? 8:51 Seen a lot of folks use that recently.
@dinghystudio6 ай бұрын
No stupid questions! It’s called Arc :)
@SteveMarks-sc4hg8 ай бұрын
Would be great to see more of the technical implementation - can this work with frameworks other than next.js?
@dinghystudio6 ай бұрын
Hi Steve, sure it can! Because this is actually SvelteKit. Since the drafts feature is inside of Sanity this method can work with anything.
@syedaanosha48638 ай бұрын
Excited to learn so much from this project!!
@dinghystudio6 ай бұрын
More to come!
@LukeRoberts19798 ай бұрын
Hey mate whats your vscode theme setup?
@dinghystudio8 ай бұрын
Hey Luke! It's this one right here: marketplace.visualstudio.com/items?itemName=mvllow.rose-pine It has a dark version too :)
@jone21079 ай бұрын
Promo-SM 🤷
@dinghystudio9 ай бұрын
Hi Jone, what do you mean by that?
@Owapawa11 ай бұрын
Lovely solution to the problem. I will definitely have to look into subgrid more and how I can make use of this feature in the future :)