27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
| import { type SharedOptions, rest } from 'msw';
 | |
| 
 | |
| export const onUnhandledRequest = ((req, print) => {
 | |
| 	if (req.url.hostname !== 'localhost' || /^\/(?:client-assets\/|fluent-emojis?\/|iframe.html$|node_modules\/|src\/|sb-|static-assets\/|vite\/)/.test(req.url.pathname)) {
 | |
| 		return
 | |
| 	}
 | |
| 	print.warning()
 | |
| }) satisfies SharedOptions['onUnhandledRequest'];
 | |
| 
 | |
| export const commonHandlers = [
 | |
| 	rest.get('/fluent-emoji/:codepoints.png', async (req, res, ctx) => {
 | |
| 		const { codepoints } = req.params;
 | |
| 		const value = await fetch(`https://raw.githubusercontent.com/misskey-dev/emojis/main/dist/${codepoints}.png`).then((response) => response.blob());
 | |
| 		return res(ctx.set('Content-Type', 'image/png'), ctx.body(value));
 | |
| 	}),
 | |
| 	rest.get('/fluent-emojis/:codepoints.png', async (req, res, ctx) => {
 | |
| 		const { codepoints } = req.params;
 | |
| 		const value = await fetch(`https://raw.githubusercontent.com/misskey-dev/emojis/main/dist/${codepoints}.png`).then((response) => response.blob());
 | |
| 		return res(ctx.set('Content-Type', 'image/png'), ctx.body(value));
 | |
| 	}),
 | |
| 	rest.get('/twemoji/:codepoints.svg', async (req, res, ctx) => {
 | |
| 		const { codepoints } = req.params;
 | |
| 		const value = await fetch(`https://unpkg.com/@discordapp/twemoji@14.1.2/dist/svg/${codepoints}.svg`).then((response) => response.blob());
 | |
| 		return res(ctx.set('Content-Type', 'image/svg+xml'), ctx.body(value));
 | |
| 	}),
 | |
| ];
 |