Skip to content

Instantly share code, notes, and snippets.

View truongluu's full-sized avatar
🏠
Working from home

Lưu Xuân Trường truongluu

🏠
Working from home
View GitHub Profile
@truongluu
truongluu / mock-csv.test.ts
Last active September 23, 2024 13:55
Mock CSV file in Vitest
import { vi, describe, test, expect } from 'vitest';
// Mock CSV content
const mockCSVContent = `id,name,age
1,John Doe,30
2,Jane Smith,25
3,Bob Johnson,45`;
describe('CSV File Object Creation', () => {
test('creates a File object with CSV content', () => {
@truongluu
truongluu / memory-router-testing.ts
Created November 2, 2024 06:27
Memory Router Testing
// src/test/test-utils.tsx
import { render } from '@testing-library/react'
import { MemoryRouter, Routes, Route } from 'react-router-dom'
// Enhanced render utility that accepts route configuration
interface RenderWithRouterOptions {
route?: string
initialEntries?: string[]
initialIndex?: number
}
@truongluu
truongluu / file-reader-inversity.ts
Created December 26, 2024 08:50
Example Using Inversityjs lib
import { Container, inject, injectable, named } from "inversify";
import { readFile } from "node:fs/promises";
import * as path from "node:path";
interface IParser<T = string> {
parse(data: string): T;
}
@injectable()
class JsonParser implements IParser<JSONType> {
@truongluu
truongluu / Laravel Alpine JS Modal
Created August 27, 2025 12:19 — forked from MatinMN/Laravel Alpine JS Modal
Laravel Modal Component
// open modal from livewire component
$this->dispatch('open-modal', name: 'user-details');
// close modal
$this->dispatch('close-modal');
@truongluu
truongluu / Calendar.php
Created August 28, 2025 04:15 — forked from yelocode/Calendar.php
Full Calendar JS Livewire example
<?php
namespace App\Livewire;
use App\Models\Event;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Validator;
use Livewire\Attributes\Rule;
use Livewire\Component;