Skip to content

Commit 67fb158

Browse files
authored
Merge branch 'master' into patch-2
2 parents fbc2c14 + 469c282 commit 67fb158

11 files changed

+15019
-10001
lines changed

.github/workflows/main.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [16.x]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Use Node.js ${{ matrix.node-version }}
20+
uses: actions/setup-node@v2
21+
with:
22+
node-version: ${{ matrix.node-version }}
23+
- run: npm ci
24+
- run: npm run build --if-present
25+
- run: npm test

.prettierrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"arrowParens": "always",
33
"singleQuote": true,
4+
"trailingComma": "none",
45
"semi": false
56
}

.travis.yml

-4
This file was deleted.

package-lock.json

+14,934-9,927
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+19-18
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"name": "react-tweet-embed",
3-
"version": "1.2.2",
3+
"version": "2.0.0",
44
"description": "react component that takes tweet id in props and renders tweet embed, nothing more",
55
"main": "dist/tweet-embed.js",
6+
"types": "dist/tweet-embed.d.ts",
67
"module": "dist/tweet-embed.es.js",
78
"unpkg": "dist/tweet-embed.umd.js",
89
"source": "src/tweet-embed.tsx",
910
"scripts": {
1011
"test": "ava",
1112
"testu": "ava -u",
12-
"build": "microbundle",
13+
"build": "microbundle --jsx React.createElement",
1314
"dev": "microbundle watch",
1415
"prepublish": "npm test && npm run build"
1516
},
@@ -24,33 +25,33 @@
2425
},
2526
"homepage": "https://github.com/capaj/react-tweet-embed#readme",
2627
"peerDependencies": {
27-
"react": ">0.14.0"
28+
"react": ">=17"
2829
},
2930
"devDependencies": {
30-
"@types/prop-types": "^15.7.0",
31-
"@types/react": "^16.8.8",
32-
"ava": "^1.4.0",
33-
"enzyme": "^3.9.0",
34-
"husky": "^1.3.1",
35-
"jsdom": "^14.0.0",
36-
"microbundle": "^0.11.0",
37-
"prettier": "^1.16.4",
38-
"pretty-quick": "^1.10.0",
39-
"prop-types": "^15.7.2",
40-
"react": "^16.8.5",
41-
"rimraf": "^2.6.3",
42-
"ts-node": "^8.0.3",
43-
"typescript": "^3.3.4000"
31+
"@types/prop-types": "^15.7.4",
32+
"@types/react": "^17.0.39",
33+
"ava": "^3.15.0",
34+
"enzyme": "^3.11.0",
35+
"husky": "^7.0.4",
36+
"jsdom": "^17.0.0",
37+
"microbundle": "^0.14.2",
38+
"prettier": "^2.5.1",
39+
"pretty-quick": "^3.1.3",
40+
"prop-types": "^15.8.1",
41+
"react": "^17.0.2",
42+
"rimraf": "^3.0.2",
43+
"ts-node": "^10.5.0",
44+
"typescript": "^4.5.5"
4445
},
4546
"files": [
4647
"dist"
4748
],
4849
"ava": {
49-
"compileEnhancements": false,
5050
"files": [
5151
"**/*.spec.tsx"
5252
],
5353
"extensions": [
54+
"ts",
5455
"tsx"
5556
],
5657
"require": [

readme.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@ npm i react-tweet-embed
88

99
## Quickstart [![Edit react-tweet-embed](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/74rn3r9k0?fontsize=14)
1010

11-
```javascript
11+
```tsx
12+
import React from 'react'
1213
import TweetEmbed from 'react-tweet-embed'
13-
;<TweetEmbed id="692527862369357824" />
14+
15+
export const App = () => {
16+
return <TweetEmbed tweetId="692527862369357824" />
17+
}
1418
```
1519

1620
You don't have to put `//platform.twitter.com/widgets.js` script in your index.html as this lib will put it there if `twttr` is not found on `window`.
@@ -31,4 +35,5 @@ Key-value pairs from the [embedded tweet parameter reference](https://developer.
3135
```html
3236
<TweetEmbed id='783943172057694208' options={{cards: 'hidden' }}/>
3337
<TweetEmbed id='771763270273294336' options={{theme: 'dark' }}/>
38+
3439
```

src/tweet-embed.spec.js.md

-28
This file was deleted.

src/tweet-embed.spec.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ import TweetEmbed from './tweet-embed'
33
import React from 'react'
44

55
test('renders', (t) => {
6-
t.snapshot(<TweetEmbed id="692527862369357824" className="tweet" />)
6+
t.snapshot(<TweetEmbed tweetId="692527862369357824" className="tweet" />)
77
})
88

99
test.cb('calls twttr api', (t) => {
1010
global['window'] = {
11+
// @ts-expect-error
1112
twttr: {
1213
widgets: {
1314
createTweetEmbed: (...args) => {
@@ -18,9 +19,9 @@ test.cb('calls twttr api', (t) => {
1819
}
1920
}
2021
}
21-
22+
// @ts-expect-error
2223
global['window'].twttr.ready = () => Promise.resolve(global['window'].twttr)
2324

24-
const comp = new TweetEmbed({ id: 'tweet_id', options: { myOption: 1 } })
25+
const comp = new TweetEmbed({ tweetId: 'tweet_id', options: { myOption: 1 } })
2526
comp.componentDidMount()
2627
})

src/tweet-embed.spec.tsx.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,18 @@
22

33
The actual snapshot is saved in `tweet-embed.spec.tsx.snap`.
44

5-
Generated by [AVA](https://ava.li).
5+
Generated by [AVA](https://avajs.dev).
6+
7+
## renders
8+
9+
> Snapshot 1
10+
11+
<TweetEmbed⍟
12+
className="tweet"
13+
options={{}}
14+
protocol="https:"
15+
tweetId="692527862369357824"
16+
/>
617

718
## calls twttr api
819

@@ -15,14 +26,3 @@ Generated by [AVA](https://ava.li).
1526
myOption: 1,
1627
},
1728
]
18-
19-
## renders
20-
21-
> Snapshot 1
22-
23-
<TweetEmbed⍟
24-
className="tweet"
25-
id="692527862369357824"
26-
options={{}}
27-
protocol="https:"
28-
/>

src/tweet-embed.spec.tsx.snap

-2 Bytes
Binary file not shown.

src/tweet-embed.tsx

+17-7
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function addScript(src: string, cb: () => any) {
1616
}
1717

1818
interface ITweetEmbedProps {
19-
id: string
19+
tweetId: string
2020
options?: object
2121
placeholder?: string | React.ReactNode
2222
protocol?: string
@@ -32,8 +32,9 @@ interface ITweetEmbedState {
3232
class TweetEmbed extends React.Component<ITweetEmbedProps> {
3333
_div?: HTMLDivElement
3434
static propTypes = {
35-
id: PropTypes.string,
35+
tweetId: PropTypes.string,
3636
options: PropTypes.object,
37+
placeholder: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
3738
protocol: PropTypes.string,
3839
onTweetLoadSuccess: PropTypes.func,
3940
onTweetLoadError: PropTypes.func,
@@ -60,7 +61,7 @@ class TweetEmbed extends React.Component<ITweetEmbedProps> {
6061

6162
const { options, onTweetLoadSuccess, onTweetLoadError } = props
6263
widgets
63-
.createTweetEmbed(this.props.id, this._div, options)
64+
.createTweetEmbed(this.props.tweetId, this._div, options)
6465
.then((twitterWidgetElement) => {
6566
this.setState({
6667
isLoading: false
@@ -91,23 +92,32 @@ class TweetEmbed extends React.Component<ITweetEmbedProps> {
9192
nextState: ITweetEmbedState
9293
) {
9394
return (
94-
this.props.id !== nextProps.id ||
95+
this.props.tweetId !== nextProps.tweetId ||
9596
this.props.className !== nextProps.className
9697
)
9798
}
9899

99100
componentWillUpdate(nextProps, nextState) {
100-
if (this.props.id !== nextProps.id) {
101+
if (this.props.tweetId !== nextProps.tweetId) {
101102
this.loadTweetForProps(nextProps)
102103
}
103104
}
104105

105106
render() {
106107
const { props, state } = this
107-
108+
const {
109+
tweetId,
110+
onTweetLoadError,
111+
onTweetLoadSuccess,
112+
options,
113+
children,
114+
placeholder,
115+
protocol,
116+
...restProps
117+
} = props
108118
return (
109119
<div
110-
className={this.props.className}
120+
{...restProps}
111121
ref={(c) => {
112122
this._div = c
113123
}}

0 commit comments

Comments
 (0)