Skip to content

Instantly share code, notes, and snippets.

View Tsugami's full-sized avatar

Yslan Ramos Tsugami

  • Brazil
  • 22:51 (UTC -03:00)
View GitHub Profile
/*
dado o seguinte cenário, um objeto que pode ter valores aninhados até 2 níveis,
deve-se remover a chave do primeiro nível se alguma das chaves aninhadas
for (undefined ou {} ou '' ou null) - 0 não conta
*/
const isObject = (v) => typeof v === 'object' && !Array.isArray(v)
const isEmptyObject = (obj) => isObject(obj) && (Object.keys(obj).length === 0)
const isNull = (v) => v === '' || v === null || v === undefined;
@Tsugami
Tsugami / Dockerfile
Created August 31, 2021 03:02
monorepo dockerfile
FROM node:lts as builder
ENV NODE_ENV=production
WORKDIR /app
COPY package.json /app
COPY yarn.lock /app
COPY tsconfig.base.json /app
COPY /apps /app/apps
@Tsugami
Tsugami / index.html
Created September 17, 2021 23:01
chartjs testing
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
@Tsugami
Tsugami / ShortMediaStylePagination.ts
Last active September 29, 2021 14:25
custom pagination for apollo cache
import { FieldPolicy } from '@apollo/client';
type TExistingShortMedia<TNode> = {
edges: TNode[];
_search: string;
totalCount: number;
count: number;
totalPages: number;
hasNextPage: boolean;
};
@Tsugami
Tsugami / MongooseNextAuthAdapter.ts
Created October 15, 2021 21:40
MongooseNextAuthAdapter.
import mongoose, { Types, Document } from 'mongoose';
import {
Adapter,
AdapterUser,
AdapterSession,
VerificationToken as AdapterVerificationToken,
} from 'next-auth/adapters';
import { Account as AdapterAccount } from 'next-auth';
@Tsugami
Tsugami / README.md
Last active November 1, 2021 21:42
Learn Programming With Discord Bots - DiscordJS
@Tsugami
Tsugami / i18next-types.ts
Last active June 10, 2022 16:42
i18next types
type TokenTranslation<Namespaces, R extends boolean = false> = Extract<
keyof {
[Key in Extract<keyof Namespaces, string> as Namespaces[Key] extends
| string
| number
? `${Key}`
: `${Key}${R extends true ? "." : ":"}${TokenTranslation<
Namespaces[Key],
true
>}`]: unknown;
@Tsugami
Tsugami / follow-mutation.test.ts
Last active November 3, 2021 17:34
follow mutation test
import { makeID, mutate } from '../../../../../tests/app';
import { clearDatabase, closeDatabase, connectDatabase } from '../../../../../tests/mongo';
import ERRORS from '../../../../errors';
import { createUserFixture, createUserFixtureAndToken } from '../../../../../tests/user.factory';
import folllowModel from '../../folllow.model';
beforeAll(async () => await connectDatabase());
beforeEach(async () => {
await clearDatabase();