Skip to content

Instantly share code, notes, and snippets.

View robzlabz's full-sized avatar
🐳
Working from home

Robbyn Rahmandaru robzlabz

🐳
Working from home
  • RobzLabz Software Technology
  • Yogyakarta, Indonesia
View GitHub Profile
@robzlabz
robzlabz / install_laravel_svelte_inertia_vite.md
Last active November 1, 2023 18:17
Laravel + Svelte + Inertia + Vite

Install Laravel + Svelte + Inertia + Vite Right Way

Install Inertia Composer dependency

composer require inertiajs/inertia-laravel

Setup Middleware

php artisan inertia:middleware

@robzlabz
robzlabz / LivewireMedia.php
Created June 2, 2021 05:40
Spatie Media Library with Livewire Trait
<?php
namespace App\Traits;
trait LivewireMedia
{
public function addMediaTo($media, $collectionName)
{
$this->addMedia($media->getRealPath())
->usingName(pathinfo($media->getClientOriginalName(), PATHINFO_BASENAME))
const FunctionalComponent = () => {
React.useEffect(() => {
return () => {
console.log("dadaaaah");
};
}, []);
return <h1>Selamat tinggal</h1>;
};
import React from "react";
// di functional component menggunakan useEffect dengan argumen kedua [] array kosong
const FunctionalComponent = () => {
React.useEffect(() => {
console.log("Aku Dijalankan");
}, []);
return <h1>Halo, Selamat Pagi</h1>;
};
onClick={() =>
this.setState((state) => {
return {
...state,
count: state.count + 1
};
})
}
class CounterComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
count: 0
};
}
render() {
return (
@robzlabz
robzlabz / HandlingStateFunctionalComponent.jsx
Created January 7, 2021 05:36
Handling State di Functional Component
const CounterComponent = () => {
const [count, setCount] = React.useState(0);
return (
<div>
<p>Sudah di click: {count} kali</p>
<button onClick={() => setCount(count + 1)}>Click Saya</button>
</div>
);
};
class Card extends React.Component {
render() {
const { name } = this.props;
return <h1>Hello, { name }</h1>;
}
// atau 👇
render() {
return <h1>Hello, { this.props.name }</h1>;
// Pemanggilan
<Card name="Agus"/>
const Card = (props) => {
return <h1>Hai, {props.name}</h1>;
};
// atau bisa di pecah langsung menggunakan object desctructure
// jadi kita bisa langsung memanggil 'name' tanpa variable props
import React, { Component } from "react";
class ClassComponent extends Component {
render() {
return <h1>JSX di dalam fungsi render component</h1>;
}
}
/// atau 👇