Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update bod monorepo to ^5.21.5 #582

Merged
merged 2 commits into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion notes/Web/CSS/CSSDesignNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ body {
#### React Design Variants

```tsx
import React, { ButtonHTMLAttributes } from 'react'
import type { ButtonHTMLAttributes } from 'react'

type ButtonVariant = 'filled' | 'outlined'

Expand Down
6 changes: 2 additions & 4 deletions notes/Web/JavaScript/JavaScriptDevOpsNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ React server side rendering `start.server.js`
```tsx
import Koa from 'koa'
import koaStatic from 'koa-static'
import React from 'react'
import { renderToString } from 'react-dom/server'
import { Provider } from 'react-redux'
import { renderRoutes } from 'react-router-config'
Expand Down Expand Up @@ -438,7 +437,6 @@ React client side hydration `start.client.js`
- 执行服务端未执行的 lifecycle hooks: `beforeMount()`/`onMounted()`.

```tsx
import React from 'react'
import ReactDOM from 'react-dom'
import { Provider } from 'react-redux'
import { renderRoutes } from 'react-router-config'
Expand Down Expand Up @@ -2441,8 +2439,8 @@ module.exports = {
const resource = module.nameForCondition?.()
return resource
? topLevelFrameworkPaths.some(pkgPath =>
resource.startsWith(pkgPath)
)
resource.startsWith(pkgPath)
)
: false
},
priority: 40,
Expand Down
1 change: 0 additions & 1 deletion notes/Web/JavaScript/JavaScriptTestingNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,6 @@ module.exports = reactDom

```ts
// gatsby.js
import React from 'react'
const gatsby = jest.requireActual('gatsby')

module.exports = {
Expand Down
2 changes: 0 additions & 2 deletions notes/Web/JavaScript/TypeScriptBasicNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3484,8 +3484,6 @@ logger(user) // Oops! `user.isSuperAdmin` is undefined.
- Type-safe React router advanced [types](https://speakerdeck.com/zoontek/advanced-typescript-how-we-made-our-router-typesafe).

```tsx
import React from 'react'

type PathSegments<Path extends string> =
Path extends `${infer SegmentA}/${infer SegmentB}`
? ParamOnly<SegmentA> | PathSegments<SegmentB>
Expand Down
6 changes: 3 additions & 3 deletions notes/Web/React/ReactAdvancedNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2621,9 +2621,9 @@ function commitLayoutEffectOnFiber(
= finishedWork.elementType === finishedWork.type
? current.memoizedProps
: resolveDefaultProps(
finishedWork.type,
current.memoizedProps
)
finishedWork.type,
current.memoizedProps
)
const prevState = current.memoizedState

instance.componentDidUpdate(
Expand Down
45 changes: 17 additions & 28 deletions notes/Web/React/ReactBasicNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,6 @@ const HTMLButtonElement = {
- [New JSX transform](https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html).

```ts
import React from 'react'

function App() {
return React.createElement('h1', null, 'Hello world')
}
Expand Down Expand Up @@ -749,7 +747,7 @@ class App extends React.Component<{ data: object }> {

#### Forward Refs

不能在函数式组件上使用`ref`属性,
Before React 19, 不能在函数式组件上使用`ref`属性,
因为它们没有实例, 但可以在函数式组件内部使用`ref`.
Ref forwarding 是一个特性,
它允许一些组件获取接收到 ref 对象并将它进一步传递给子组件.
Expand All @@ -764,6 +762,7 @@ function Button({ children }: { children: ReactElement }, ref) {
)
}

// eslint-disable-next-line react/no-forward-ref -- In React 19, 'forwardRef' is no longer necessary.
const ButtonElement = React.forwardRef(Button)

// Create ref to the DOM button:
Expand All @@ -788,6 +787,7 @@ function Button({ children }: Props, ref: Ref) {
)
}

// eslint-disable-next-line react/no-forward-ref -- In React 19, 'forwardRef' is no longer necessary.
const FancyButton = React.forwardRef<Ref, Props>(Button)

export default FancyButton
Expand Down Expand Up @@ -913,7 +913,6 @@ export default RadioImageForm

```tsx
import type { CSSProperties, ReactNode } from 'react'
import React from 'react'

interface Props {
children: ReactNode
Expand Down Expand Up @@ -1542,7 +1541,6 @@ class MyComponent extends React.Component<{
```

```tsx
import React from 'react'
import Button from './Button'

type Props = typeof ButtonCounter.defaultProps & {
Expand All @@ -1555,6 +1553,7 @@ type State = Readonly<typeof initialState>
class ButtonCounter extends React.Component<Props, State> {
readonly state: State = initialState

// eslint-disable-next-line react/no-default-props
static defaultProps = {
name: 'count',
}
Expand Down Expand Up @@ -2324,7 +2323,7 @@ Context 中只定义被大多数组件所共用的属性
增加 `render` 次数, 从而导致性能问题.

```tsx
import React, { createContext, useContext, useMemo, useState } from 'react'
import { createContext, useContext, useMemo, useState } from 'react'
import { fakeAuth } from './app/services/auth'

const authContext = createContext()
Expand Down Expand Up @@ -2358,15 +2357,15 @@ export default function AuthProvider({ children }: { children: ReactElement }) {
}
}, [user, signIn, signOut])

return <authContext.Provider value={auth}>{children}</authContext.Provider>
return <authContext value={auth}>{children}</authContext>
}
```

#### Context Refs

```tsx
// Context.js
import React, { Component, createContext } from 'react'
import { Component, createContext } from 'react'

// React team — thanks for Context API 👍
const context = createContext()
Expand Down Expand Up @@ -2403,7 +2402,6 @@ class Provider extends Component<{ children: ReactElement }> {

```tsx
// TextArea.jsx
import React from 'react'
import { Consumer } from './Context'

export default function TextArea() {
Expand Down Expand Up @@ -2843,7 +2841,7 @@ export function AppProvider({ children }: AppProviderProps) {
Lazy loading and code splitting:

```tsx
import React, { lazy, Suspense } from 'react'
import { lazy, Suspense } from 'react'

const Product = lazy(() => import('./ProductHandler'))

Expand Down Expand Up @@ -3376,7 +3374,7 @@ the same result given the same props and state,
use `React.PureComponent`/`React.memo` for a performance boost in some cases.

```tsx
import React, { PureComponent } from 'react'
import { PureComponent } from 'react'

function Unstable({ value }: { value: string }) {
console.log(' Rendered Unstable component ')
Expand Down Expand Up @@ -3414,7 +3412,7 @@ export default App
```

```tsx
import React, { Component } from 'react'
import { Component } from 'react'

function Unstable({ value }: { value: string }) {
console.log(' Rendered this component ')
Expand Down Expand Up @@ -3620,7 +3618,7 @@ export default function App2(items) {

```tsx
import { Formik } from 'formik'
import React, { Component } from 'react'
import { Component } from 'react'
import * as Yup from 'yup'

const formValidator = Yup.object().shape({
Expand All @@ -3635,7 +3633,7 @@ export default class Form extends Component {
```

```tsx
import React, { Component } from 'react'
import { Component } from 'react'

export default class App extends Component {
constructor() {
Expand Down Expand Up @@ -3764,7 +3762,6 @@ npm i -D enzyme enzyme-adapter-react-16 @types/enzyme
```tsx
import { configure, shallow } from 'enzyme'
import Adapter from 'enzyme-adapter-react-16'
import React from 'react'
import { DataTable } from './components'

configure({ adapter: new Adapter() })
Expand Down Expand Up @@ -3860,8 +3857,6 @@ npm i -D @testing-library/react @testing-library/dom @testing-library/jest-dom @
### React Testing Library Basis

```tsx
import React from 'react'

/**
* render: render the component
* screen: finding elements along with user
Expand Down Expand Up @@ -3894,8 +3889,6 @@ describe('Welcome should', () => {

```tsx
import { fireEvent, render, wait } from '@testing-library/react'
import React from 'react'

import { api } from './api'
import { App } from './App'

Expand Down Expand Up @@ -3946,7 +3939,6 @@ npm i -D @testing-library/user-event @testing-library/dom
```tsx
import { render, screen } from '@testing-library/react'
import userEvent from '@testing-library/user-event'
import React from 'react'

test('click', () => {
render(
Expand Down Expand Up @@ -4001,7 +3993,7 @@ test('should reset counter to updated initial value', () => {
#### Async Hook Testing

```ts
import React, { useCallback, useContext, useState } from 'react'
import { useCallback, useContext, useState } from 'react'

export default function useCounter(initialValue = 0) {
const [count, setCount] = useState(initialValue)
Expand Down Expand Up @@ -4031,7 +4023,7 @@ test('should increment counter after delay', async () => {
#### Error Hook Testing

```ts
import React, { useCallback, useContext, useState } from 'react'
import { useCallback, useContext, useState } from 'react'

export default function useCounter(initialValue = 0) {
const [count, setCount] = useState(initialValue)
Expand Down Expand Up @@ -4325,8 +4317,7 @@ export default function App() {
### Shared CSS Styles

```tsx
// Import React.js, styled-components and css
import React from 'react'
// Import styled-components and css
import styled, { css } from 'styled-components'
const container = document.querySelector('.container')

Expand Down Expand Up @@ -4395,8 +4386,7 @@ ReactDOM.createRoot(container).render(<WrapperContainer />)
### Styled Component Extension

```tsx
// Import React.js and styled-components
import React from 'react'
// Import styled-components
import styled from 'styled-components'

const container = document.querySelector('.container')
Expand Down Expand Up @@ -4440,8 +4430,7 @@ ReactDOM.createRoot(container).render(<WrapperContainer />)
### Styled Component Props

```tsx
// Import React.js, styled-components and css
import React from 'react'
// Import styled-components and css
import styled, { css } from 'styled-components'

const container = document.querySelector('.container')
Expand Down
10 changes: 5 additions & 5 deletions notes/Web/React/ReactHooksNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -1339,7 +1339,7 @@ import { forwardRef, useImperativeHandle, useRef } from 'react'

interface Props {}

const MyInput = forwardRef((props: Props, ref) => {
function MyInput({ ref, ...props }: Props) {
const realInputRef = useRef(null)
useImperativeHandle(ref, () => ({
// Only expose focus and nothing else
Expand All @@ -1348,7 +1348,7 @@ const MyInput = forwardRef((props: Props, ref) => {
},
}))
return <input {...props} ref={realInputRef} />
})
}

export default function Form() {
const inputRef = useRef(null)
Expand Down Expand Up @@ -1572,7 +1572,7 @@ export default function CountProvider(props) {
}
}, [count, setCount])

return <CountContext.Provider value={value} {...props} />
return <CountContext value={value} {...props} />
}

function useCount() {
Expand Down Expand Up @@ -2560,7 +2560,7 @@ Migrate from `useState` + `useEffect` + `useRef` to `useSyncExternalStore`
for 3rd external stores libraries (e.g `Redux`):

```tsx
import React, { useCallback, useEffect, useState } from 'react'
import { useCallback, useEffect, useState } from 'react'
import { useSyncExternalStore } from 'use-sync-external-store/shim'

function createStore(initialState) {
Expand Down Expand Up @@ -4050,7 +4050,7 @@ export default function FriendListItem({ friend }: Props) {

```ts
import axios from 'axios'
import React, { Fragment, useEffect, useState } from 'react'
import { Fragment, useEffect, useState } from 'react'

function useDataApi(initialUrl, initialData) {
const [data, setData] = useState(initialData)
Expand Down
11 changes: 1 addition & 10 deletions notes/Web/React/ReactRouterBasicNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,11 +418,6 @@ interface Props {
}

class Link extends Component<Props> {
static propTypes = {
to: PropTypes.string.isRequired,
replace: PropTypes.bool,
}

handleClick = (event) => {
const { replace, to } = this.props
event.preventDefault()
Expand All @@ -446,15 +441,11 @@ class Link extends Component<Props> {

```tsx
class Redirect extends Component {
// eslint-disable-next-line react/no-default-props
static defaultProps = {
push: false,
}

static propTypes = {
to: PropTypes.string.isRequired,
push: PropTypes.bool.isRequired,
}

componentDidMount() {
const { to, push } = this.props

Expand Down
Loading
Loading