- 4
- 6 946
Tom Österlund
เข้าร่วมเมื่อ 25 ส.ค. 2024
Indie hacking my way through the software industry
These 3 Simple SEO Hacks Boosted Traffic For My Website Like Crazy
🚀 Want to supercharge your SaaS website's growth? In this video, I’m sharing 3 simple SEO hacks that boosted my traffic by a lot! 💻✨
🔥 What you’ll learn:
✅ Hijacking traffic from competitors
✅ How to rank higher through backlinks
✅ What blog content can do to increase your reach
Don’t miss out on these actionable tips!
👉 Subscribe for more growth hacks
📈 Follow me on social media for daily insights: x.com/TomOesterlund
www.linkedin.com/in/tom-%C3%B6sterlund/
Get your blog boilerplate at a discount, at mystartup.blog, using the code: E5MDKZNA
🔥 What you’ll learn:
✅ Hijacking traffic from competitors
✅ How to rank higher through backlinks
✅ What blog content can do to increase your reach
Don’t miss out on these actionable tips!
👉 Subscribe for more growth hacks
📈 Follow me on social media for daily insights: x.com/TomOesterlund
www.linkedin.com/in/tom-%C3%B6sterlund/
Get your blog boilerplate at a discount, at mystartup.blog, using the code: E5MDKZNA
มุมมอง: 47
วีดีโอ
Set up a NextJS blog using MyStartup.blog
มุมมอง 7014 วันที่ผ่านมา
Set up a blog for your startup in no-time, with this NextJS boilerplate. Get your blog at: mystartup.blog 00:00 Intro 00:17 How to set it up 00:44 Landing page and post view 02:13 The backend
How to Build a Todo Calendar Using Custom Components in Schedule-X
มุมมอง 8514 หลายเดือนก่อน
In this tutorial, I'll walk you through the process of customizing the Event Calendar Schedule-X with your own custom components. Whether you're looking to enhance your calendar's functionality or add a personal touch to the user interface, this video covers everything you need to know! Links: Schedule-X React docs: schedule-x.dev/docs/frameworks/react#custom-components Set up Schedule-X in Rea...
Create an Event Calendar in React Using Schedule-X | Step-by-Step Tutorial
มุมมอง 6K4 หลายเดือนก่อน
In this video, I'll walk you through the process of setting up a fully functional event calendar in React using the Schedule-X library. Whether you're building a project management tool, a booking system, or any application that needs calendar functionality, Schedule-X makes it easy to implement. What You'll Learn: - How to install and configure Schedule-X in your React project - Creating event...
Great and super helpful! ❤🔥
Glad to hear Bilal!
sir 1 question, do you by any chance also have a video about how we can combine our backend program with the frontend which was created ?
Read about API, API integration and http
I don't yet, but I might very well do so soon, since I got a few requests for this :) When you dynamically add events from a backend, you definitely want to use the events service plugin though. It's documented at schedule-x.dev
Wonderful video. thanks for sharing!
you are pro
Thank you so much you've got a new subscriber! I just started working with Next-js, my question is: can I implement it in my Next-js app or do I have to use react only?
Thanks :) you can use it in Nextjs! you will need to use useNextCalendarApp instead of useCalendarApp, and use the 'use client' directive, but other than that it should be the same
Hi, I am unable to set firstDayOfWeek to 0 for first day sunday, i set firstDayOfWeek to 7 its working but it shows weekday typescript error and unable to take build and deploy, and also i am unable to set the date picker format to dd/MM/yyyy without changin the locale to 'en-US' Could you please help me? I am using @schedule-x/react - 2.9.0 Typescript 5.5.3 React 18.3.1
Hi, After Watch these vide i tried to use the same library in current existing project. I used Yarn instead of npm, but during the rendering i was getting errors which was related to preact. I found out the these was used by schedule-x as replacement of react. How should i over come these
If you use yarn, you need to install peer dependencies manually. That goes for any software you install using yarn, not just Schedule-X. So you need to have a look at the peer dependencies of @schedule-x and install those
@@TomÖsterlund yaa i tried that. But the problem here it was saying to download @preact/signals which will cause entire disturbance in my codebase
hi im having trouble creating the event on the front end side? how would this be done? theres no alert or sidebar pop ups to create an event
Hey there! You can either create a form, or use the interactive event modal plugin. This can be found under the "plugins" section in the docs.
Strange enough using this code i and the one on t the doc it shows dates for 2023 only. if i create an event for today i dont see anything on the calendar.
thank you!
This is EXACTLY what I was looking for! My calendar items are completely customised and unusual, and I tried messing about with the styles in theme-default first before coming across this video. Thank you!
Glad to hear it helped you out:)
@TomÖsterlund If you don't mind me asking: My events come from an API fetched with Tanstack Query. Do I have to use the existing useEffect hook for the calendar to render the events on the grid? Whilst the data is being fetched, the useEffect causes the calendar to be empty on first render. I had to work around it using Suspense.
@@Proateen That's a great question. I haven't yet used Schedule-X with Tanstack query myself yet. Would be happy to see your solution if you're open to share it somehow :)
@@TomÖsterlund My comment with a link gets deleted. What I did was use useSuspenseQuery instead of useQuery. I also wrapped the calendar component in a Suspense. It's not a complete solution. There's still a bug on first render which can probably be fixed by wrapping the router element in Suspense instead of a component nested within the router element.
@@TomÖsterlund It's fixed now. I wrapped my Outlet component in a Suspense and combined that with the useSuspenseQuery within the actual component file that gets rendered in the 'main' area. I removed the useEffect block completely. The events array is now fully managed using React Query so no need for it, and the calendar should re-render when the data changes, but I haven't tested that yet lol
Is there a way to put a link into Calendar Event so that user can click and be directed to meeting quickly
You can create a custom component where you override the HTML of the event. I made another tutorial for how such custom events work here: th-cam.com/video/kz3i5btkOKM/w-d-xo.html
Great video short and easy ti understand. can you do another one with the option of user to add events (save in local storage)?
Really nice Project, I hope keep seeing new Videos! Subscribed!
thanks a lot :)
How to in integration state by data call API bro?
There is a plugin called the events service, with which you can add data after having rendered the calendar: schedule-x.dev/docs/calendar/plugins/events-service
Can we send the mail to candidates like Google Calendar?
This is a frontend component, so it does not deal with mailing or any other backend tasks
@@TomÖsterlund Got it. Thanks for the reply
On event click i want to open my custom model with my custom details what can i do? ?
In Schedule-X there is a feature called custom components, with which you can inject your own custom React components. It's documented here: schedule-x.dev/docs/frameworks/react#custom-components Using that feature you can create your own custom modal
this is what exactly i was looking for, also the todo follow up, thanks mate!
worked! and its very informative
Could you do one for adding events 🤔 I can’t seem to get the callbacks to work.. otherwise this is clean 💪
Which callbacks do you mean? Did you try adding events directly in the configuration object?
Can i have agenda view in this?
Yes! there is an agenda view. The function you need to import is called `createViewMonthAgenda`
@@TomÖsterlund I've already added this function, but in the I only see three views which is day, week and month I'm using Reactjs, I really need to implement agenda view, will you please help
@@TomÖsterlund I've already added this function, but in the UI I only see three views which is day, week and month I'm using Reactjs, I really need to implement agenda view, will you please help
@@AaishaDev I see! The month agenda view was initially thought to be the mobile version of the month view, so it is only visible by default when the calendar is not so wide. You can override this behavior by doing this: const agenda = createViewMonthAgenda() agenda.hasWideScreenCompat = true
@@TomÖsterlund Thankyou, it worked
and how to style event modal bro ?
You can either just write your custom style overrides for this, or you can even replace its content by using custom components. Custom components is a feature of the framework adapters (like for Vue, React, Angular etc.). Are you using any of those?
what about when i get data from backend and set to events is it work ?
Sure thing! You can achieve this with the events service plugin. It's documented under "plugins" in the docs
@@TomÖsterlund i wish you will make this kind of tutorial in the future (generate data schedule from an api). It will contribute your commiunity so much
@@PhuongNguyen-zf8wt any specific type of API you have in mind?
how can i change the detail of event when click on it? Tks
There is a callback option that you can add in the config called `callbacks.onEventClick`, which takes the the clicked event as it's only parameter.
Bro use dark theme mode 🥲
never 😃 I switched 3 years ago and just love working in light mode
Let's go! Looking forward to a consistent posting schedule :D
Great job Tom!! Subscribed!
Thank you so much! Means a lot coming from someone with your XP 🎉
Thank you so much, Tom. Very well Explained.
Glad you liked it!
I love your explaination, Tom. Keep these videos coming.
Thanks a lot! Glad you liked it 😊
how to change event color ?
For this you can use the "calendars" feature: schedule-x.dev/docs/calendar/calendars
how to catch the case when i click on event ?
2 and half after reading the doc i found the way you have to use callbacks this is the code ```jsx export const Calendar = () => { const onEventClick = useCallback((event) => { console.log('Event clicked:', event); // Add your custom logic here }, []); const calendar = useNextCalendarApp({ views: [createViewMonthGrid(), createViewMonthAgenda(), createViewDay(), createViewWeek()], events: [ { id: '1', title: 'Event 1', start: '2023-12-16 10:00', end: '2023-12-16 12:00', }, ], selectedDate: '2023-12-16', callbacks: { onEventClick, }, }) return ( <div className=""> <ScheduleXCalendar className="" calendarApp={calendar} /> </div> ); }; ```
You can add a `callbacks` section to the config object, and then add a callback `onEventClick`: schedule-x.dev/docs/calendar/configuration
thank you for the insightful tutorial! it really helped me get up and running with the calendar!👍👍👍
Glad to hear it was helpful! Hope the calendar can be of good use to you 🙂