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

feat: #654 Implement Toast component #703

Merged
merged 2 commits into from
Mar 24, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 packages/elements/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"papaparse": "^5.1.1",
"pell": "^1.0.6",
"prop-types": "^15.7.2",
"rc-notification": "^4.0.0",
"react-datasheet": "^1.4.0",
"react-datepicker": "^2.9.6",
"react-google-map": "^3.1.1",
Expand Down Expand Up @@ -83,4 +84,3 @@
"react-router-dom": "^5.1.2"
}
}

149 changes: 149 additions & 0 deletions packages/elements/src/components/Notification/__tests__/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
import React from 'react'
import ReactDOM from 'react-dom'
import NotificationApi, { getPlacementStyle } from '../'

describe('Notification', () => {
beforeAll(() => {
jest.useFakeTimers()
})

afterAll(() => {
jest.useRealTimers()
})

afterEach(() => {
NotificationApi.destroy()
})

describe('NotificationApi', () => {
it('not duplicate create holder', () => {
const originRender = ReactDOM.render
const argsList = []
const spyRender = jest.spyOn(ReactDOM, 'render').mockImplementation((...args) => {
argsList.push(args as never)
})
for (let i = 0; i < 5; i += 1) {
NotificationApi.open({
message: 'Notification Title',
duration: 0,
prefixCls: 'additional-holder',
})
}

argsList.forEach(args => {
originRender(args[0], args[1], args[2])
})

const count = document.querySelectorAll('.additional-holder').length
expect(count).toEqual(1)

spyRender.mockRestore()
})
})

it('should be able to hide manually', async () => {
NotificationApi.open({
message: 'Notification Title',
duration: 0,
key: '1',
})
NotificationApi.open({
message: 'Notification Title',
duration: 0,
key: '2',
})

await Promise.resolve()
expect(document.querySelectorAll('.reapit-notification-notice').length).toBe(2)
NotificationApi.close('1')
await Promise.resolve()
jest.runAllTimers()
expect(document.querySelectorAll('.reapit-notification-notice').length).toBe(1)
NotificationApi.close('2')
await Promise.resolve()
jest.runAllTimers()
expect(document.querySelectorAll('.reapit-notification-notice').length).toBe(0)
})

it('should be able to destroy globally', async () => {
NotificationApi.open({
message: 'Notification Title',
duration: 0,
})
NotificationApi.open({
message: 'Notification Title',
duration: 0,
})
await Promise.resolve()
expect(document.querySelectorAll('.reapit-notification').length).toBe(1)
expect(document.querySelectorAll('.reapit-notification-notice').length).toBe(2)
NotificationApi.destroy()
await Promise.resolve()
expect(document.querySelectorAll('.reapit-notification').length).toBe(0)
expect(document.querySelectorAll('.reapit-notification-notice').length).toBe(0)
})

it('should be able to destroy after config', () => {
NotificationApi.config({
bottom: 100,
})
NotificationApi.destroy()
})

it('trigger onClick', () => {
NotificationApi.open({
message: 'Notification Title',
duration: 0,
})
expect(document.querySelectorAll('.reapit-notification').length).toBe(1)
})

it('support closeIcon', () => {
NotificationApi.open({
message: 'Notification Title',
duration: 0,
closeIcon: <span className="test-customize-icon" />,
})
expect(document.querySelectorAll('.test-customize-icon').length).toBe(1)
})

it('support config closeIcon', () => {
NotificationApi.config({
closeIcon: <span className="test-customize-icon" />,
})
NotificationApi.open({
message: 'Notification Title',
duration: 0,
closeIcon: <span className="test-customize-icon" />,
})
expect(document.querySelectorAll('.test-customize-icon').length).toBe(1)
})

describe('getPlacementStyle', () => {
it('should run correctly', () => {
expect(getPlacementStyle('topLeft', 10, 20)).toEqual({
left: 0,
top: 10,
bottom: 'auto',
})

expect(getPlacementStyle('topRight', 10, 20)).toEqual({
right: 0,
top: 10,
bottom: 'auto',
})

expect(getPlacementStyle('bottomLeft', 10, 20)).toEqual({
left: 0,
bottom: 20,
top: 'auto',
})

expect(getPlacementStyle('bottomRight', 10, 20)).toEqual({
right: 0,
bottom: 20,
top: 'auto',
})
})
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import React from 'react'
import { mount } from 'enzyme'
import NotificationApi from '../'

describe('notification.hooks', () => {
beforeAll(() => {
jest.useFakeTimers()
})

afterAll(() => {
jest.useRealTimers()
})

afterEach(() => {
NotificationApi.destroy()
})

it('should run correctly', () => {
const Context = React.createContext('light')

const Demo = () => {
const [api, holder] = NotificationApi.useNotification()

return (
<Context.Provider value="bamboo">
<button
type="button"
onClick={() => {
api.open({
message: (
<Context.Consumer>{name => <span className="hook-test-result">{name}</span>}</Context.Consumer>
),
duration: 0,
})
}}
/>
{holder}
</Context.Provider>
)
}

const wrapper = mount(<Demo />)
wrapper.find('button').simulate('click')
expect(document.querySelectorAll('.reapit-notification-notice').length).toBe(1)
const messageEl = document.querySelector('.hook-test-result')
expect(messageEl?.innerHTML).toEqual('bamboo')
})
})
Loading