triple-frontend icon indicating copy to clipboard operation
triple-frontend copied to clipboard

Monorepo for Triple Frontend Components and Libraries

Results 70 triple-frontend issues
Sort by recently updated
recently updated
newest added

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@graphql-codegen/cli](https://togithub.com/dotansimha/graphql-code-generator) | devDependencies | major | [`4.0.1` -> `5.0.2`](https://renovatebot.com/diffs/npm/@graphql-codegen%2fcli/4.0.1/5.0.2) | | [@graphql-codegen/typescript-generic-sdk](https://togithub.com/dotansimha/graphql-code-generator-community) |...

## 선결 과제 - [x] #1822 - [x] #1799 - [ ] #1821 ## 설명 네비게이션 관련 코드는 모두 router 패키지가 담당하고 react-contexts에서 네비게이션 관련 로직을 모두 제거합니다.

## PR 설명 ## 변경 내역 ## 체크리스트 ## 스크린샷 & URL

## PR 설명 ## 변경 내역 ## 체크리스트 ## 스크린샷 & URL

chat

## PR 설명 ## 변경 내역 ## 체크리스트 ## 스크린샷 & URL

chat

`useTripleClientMetadata`와 `useTripleClientActions`를 합쳐서 `useTripleNativeApp`과 같은 context로 합치는 게 어떨까요? ## 현재의 문제점 `useTripleClientMetadata`로 제공되는 모든 함수는 optional인데 사실 `useTripleClientMetadata`의 값인 app의 존재여부에 달려있습니다. 2개의 context는 서로 의존적이지만 각각 제공되고 있고,...

enhancement

[esm과 commonJS를 모두 지원하는 방법도 있나봅니다.](https://gist.github.com/aelbore/65a4d2e86c3326f36607db111a7b6887) swc가 워낙 빠르니 tsc가 작업을 끝내기 전에 두 번 빌드해서 두 방식을 모두 지원하면 어떨까요? 얻을 수 있는 장점은 다음과 같습니다. - 트리쉐이킹이 가능해집니다....

bodyType같은 이름의 파라미터를 새로 만들고 이 값으로 body의 타입 (json, FormData 등등..)을 명시하면 좋겠습니다.

good first issue
Breaking Change

as-is ```ts const someContext = createContext({ stringValue: '', functionValue: noop, }) function useSomeContext() { const context = useContext(someContext) return context } ``` to-be ```ts const someContext = createContext(undefined) function useSomeContext()...

Breaking Change

https://github.com/titicacadev/triple-frontend/blob/9382d73a562ecbeb57e7e1cf992586f54fba6e60/packages/fetcher/src/auth-guarded-methods.ts#L9 `authGuardedFetchers`는 로그인 실패시 재시도 로직을 내장한 fetch 함수 모음입니다. 그래서 인증이 필요없는 API도 사용할 수 있는데, 이름에 "가드"라는 의미가 들어가 인증이 필요할 때만 쓸 수 있다는 인상을 줍니다. 따라서...

Breaking Change