-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #988 from takenet/developer
Developer
- Loading branch information
Showing
85 changed files
with
1,810 additions
and
673 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,256 @@ | ||
import { useState } from 'react'; | ||
import { BdsButton, BdsCarousel, BdsCarouselItem, BdsGrid, BdsIllustration, BdsTypo } from '../dist/blip-ds-react'; | ||
|
||
export interface Props { | ||
event?: boolean; | ||
} | ||
|
||
const DATACAROUSEL = [ | ||
{ | ||
title: '1 - Título do Slide', | ||
subTitle: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent ipsum augue, pulvinar sit amet tincidunt non.', | ||
illustration: { | ||
type: 'spots', | ||
name: 'star', | ||
}, | ||
bgColor: '#e7f0ff', | ||
theme: 'light', | ||
}, | ||
{ | ||
title: '2 - Título do Slide', | ||
subTitle: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent ipsum augue, pulvinar sit amet tincidunt non.', | ||
illustration: { | ||
type: 'spots', | ||
name: 'check', | ||
}, | ||
bgColor: '#202d44', | ||
theme: 'dark', | ||
}, | ||
{ | ||
title: '3 - Título do Slide', | ||
subTitle: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent ipsum augue, pulvinar sit amet tincidunt non.', | ||
illustration: { | ||
type: 'spots', | ||
name: 'air-ballon', | ||
}, | ||
bgColor: '#e7f0ff', | ||
theme: 'light', | ||
}, | ||
{ | ||
title: '4 - Título do Slide', | ||
subTitle: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent ipsum augue, pulvinar sit amet tincidunt non.', | ||
illustration: { | ||
type: 'spots', | ||
name: 'air-ballon', | ||
}, | ||
bgColor: '#202d44', | ||
theme: 'dark', | ||
}, | ||
]; | ||
|
||
const Carousel = (props: Props) => { | ||
const eventAvalible = props.event; | ||
const [DATAITEMS, SETDATAITEMS] = useState(DATACAROUSEL); | ||
const eventChangeCarousel = (event) => { | ||
if (eventAvalible) { | ||
const input = document.getElementById('event-test') as HTMLInputElement; | ||
input.value = event.detail.value.id; | ||
} | ||
}; | ||
const nextSlide = async () => { | ||
const carouselElement = document.querySelector('bds-carousel'); | ||
await carouselElement.nextSlide(); | ||
}; | ||
const prevSlide = async () => { | ||
const carouselElement = document.querySelector('bds-carousel'); | ||
await carouselElement.prevSlide(); | ||
}; | ||
const setActivated = async (value: number) => { | ||
const carouselElement = document.querySelector('bds-carousel'); | ||
await carouselElement.setActivated(value); | ||
}; | ||
const pauseAutoplay = async () => { | ||
const carouselElement = document.querySelector('bds-carousel'); | ||
await carouselElement.pauseAutoplay(); | ||
}; | ||
const runAutoplay = async () => { | ||
const carouselElement = document.querySelector('bds-carousel'); | ||
await carouselElement.runAutoplay(); | ||
}; | ||
const buildCarousel = async () => { | ||
const carouselElement = document.querySelector('bds-carousel'); | ||
const NEWITEM = { | ||
title: `${DATAITEMS.length + 1} - Título do Slide`, | ||
subTitle: | ||
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent ipsum augue, pulvinar sit amet tincidunt non.', | ||
illustration: { | ||
type: 'spots', | ||
name: 'analytics-satisfaction', | ||
}, | ||
bgColor: '#e7f0ff', | ||
theme: 'light', | ||
}; | ||
SETDATAITEMS([...DATAITEMS, NEWITEM]); | ||
await carouselElement.buildCarousel(); | ||
}; | ||
return ( | ||
<> | ||
<button id="nextSlide" onClick={() => nextSlide()}> | ||
nextSlide | ||
</button> | ||
<button id="prevSlide" onClick={() => prevSlide()}> | ||
prevSlide | ||
</button> | ||
<button id="setActivated" onClick={() => setActivated(2)}> | ||
setActivated 2 | ||
</button> | ||
<button id="pauseAutoplay" onClick={() => pauseAutoplay()}> | ||
pauseAutoplay | ||
</button> | ||
<button id="runAutoplay" onClick={() => runAutoplay()}> | ||
runAutoplay | ||
</button> | ||
<button id="buildCarousel" onClick={() => buildCarousel()}> | ||
buildCarousel | ||
</button> | ||
<BdsCarousel | ||
autoplay={true} | ||
arrows="inside" | ||
bullets="inside" | ||
bulletsPosition="center" | ||
infiniteLoop={true} | ||
slidePerPage={1} | ||
gap="2" | ||
onBdsChangeCarousel={(ev) => eventChangeCarousel(ev)} | ||
dtSlideContent="slide-content" | ||
> | ||
{DATAITEMS.map((item, index) => { | ||
return ( | ||
<BdsCarouselItem key={index} bgColor={item.bgColor} theme={item.theme}> | ||
<BdsGrid padding="x-7" margin="y-6" alignItems="center"> | ||
<BdsGrid xxs="3" direction="column"> | ||
<BdsIllustration type={item.illustration.type} name={item.illustration.name}></BdsIllustration> | ||
</BdsGrid> | ||
<BdsGrid xxs="10" direction="column" gap="1"> | ||
<BdsTypo variant="fs-20" bold="bold" margin={false}> | ||
{item.title} | ||
</BdsTypo> | ||
<BdsTypo variant="fs-16">{item.subTitle}</BdsTypo> | ||
<BdsButton>Saiba mais</BdsButton> | ||
</BdsGrid> | ||
</BdsGrid> | ||
</BdsCarouselItem> | ||
); | ||
})} | ||
</BdsCarousel> | ||
{eventAvalible && <input id="event-test" />} | ||
</> | ||
); | ||
}; | ||
|
||
describe('Teste de Renderização Carousel', () => { | ||
// Teste de Renderização | ||
it('deve renderizar o Carousel com o bullets correto', () => { | ||
cy.mount(<Carousel event={false} />); | ||
cy.get('bds-carousel').should('have.attr', 'bullets', 'inside'); | ||
}); | ||
// Teste de Renderização | ||
it('deve renderizar o Carousel com o bullets-position correto', () => { | ||
cy.mount(<Carousel event={false} />); | ||
cy.get('bds-carousel').should('have.attr', 'bullets-position', 'center'); | ||
}); | ||
// Teste de Renderização | ||
it('deve renderizar o Carousel com o arrows correto', () => { | ||
cy.mount(<Carousel event={false} />); | ||
cy.get('bds-carousel').should('have.attr', 'arrows', 'inside'); | ||
}); | ||
}); | ||
|
||
describe('Teste de Eventos Carousel', () => { | ||
// Teste de Evento bdsClick | ||
it('deve chamar o evento onBdsChangeCarousel ao clicar', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id="nextSlide"]').click(); | ||
cy.get('input#event-test').should('have.value', '2'); | ||
}); | ||
}); | ||
|
||
describe('Teste de Acessibilidade Carousel', () => { | ||
// Teste de Acessibilidade com Tab | ||
it('deve ser possível navegar para o carousel usando a tecla Tab', () => { | ||
cy.mount(<Carousel event={false} />); | ||
cy.get('button[id=buildCarousel]').first().focus(); | ||
cy.wait(50); | ||
cy.realPress('Tab'); | ||
cy.wait(50); | ||
cy.get('bds-carousel').should('have.focus'); | ||
}); | ||
// Teste de Acessibilidade com ArrowRight | ||
it('deve ser possível navegar para o carousel usando a tecla ArrowRight', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id=buildCarousel]').first().focus(); | ||
cy.wait(50); | ||
cy.realPress('Tab'); | ||
cy.wait(50); | ||
cy.realPress('ArrowRight'); | ||
cy.get('input#event-test').should('have.value', '2'); | ||
}); | ||
// Teste de Acessibilidade com ArrowLeft | ||
it('deve ser possível navegar para o carousel usando a tecla ArrowLeft', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id=buildCarousel]').first().focus(); | ||
cy.wait(50); | ||
cy.realPress('Tab'); | ||
cy.wait(50); | ||
cy.realPress('ArrowLeft'); | ||
cy.get('input#event-test').should('have.value', '4'); | ||
}); | ||
// Teste de Acessibilidade método nextSlide | ||
it('Verificar se o método nextSlide esta sendo correspondido', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id="nextSlide"]').click(); | ||
cy.get('input#event-test').should('have.value', '2'); | ||
}); | ||
// Teste de Acessibilidade método prevSlide | ||
it('Verificar se o método prevSlide esta sendo correspondido', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id="prevSlide"]').click(); | ||
cy.get('input#event-test').should('have.value', '4'); | ||
}); | ||
// Teste de Acessibilidade método setActivated | ||
it('Verificar se o método setActivated esta sendo correspondido', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id="setActivated"]').click(); | ||
cy.get('input#event-test').should('have.value', '2'); | ||
}); | ||
// Teste de Acessibilidade método pauseAutoplay | ||
it('Verificar se o método pauseAutoplay esta sendo correspondido', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id="pauseAutoplay"]').click(); | ||
cy.get('bds-carousel') | ||
.shadow() | ||
.find('[data-test="slide-content"]') | ||
.should('have.class', 'carousel_slide_state_paused'); | ||
}); | ||
// Teste de Acessibilidade método runAutoplay | ||
it('Verificar se o método runAutoplay esta sendo correspondido', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id="runAutoplay"]').click(); | ||
cy.get('bds-carousel') | ||
.shadow() | ||
.find('[data-test="slide-content"]') | ||
.should('have.class', 'carousel_slide_state_running'); | ||
}); | ||
// Teste de Acessibilidade método buildCarousel | ||
it('Verificar se o método buildCarousel esta sendo correspondido', () => { | ||
cy.mount(<Carousel event={true} />); | ||
cy.get('button[id="buildCarousel"]').click(); | ||
cy.wait(1100); | ||
cy.get('button[id="prevSlide"]').click(); | ||
cy.get('input#event-test').should('have.value', '5'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import { BdsImage } from '../dist/blip-ds-react'; | ||
|
||
const Image = () => { | ||
const loadImage = async () => { | ||
const buttonElement = document.querySelector('bds-image'); | ||
await buttonElement.loadImage(); | ||
}; | ||
return ( | ||
<> | ||
<button id="loadImage" onClick={() => loadImage()}> | ||
Botão anterior | ||
</button> | ||
<BdsImage | ||
src="https://picsum.photos/300/200" | ||
alt="Example of a image" | ||
width="300px" | ||
height="200px" | ||
objectFit="cover" | ||
brightness={1} | ||
/> | ||
</> | ||
); | ||
}; | ||
|
||
describe('Teste de Renderização Image', () => { | ||
// Teste de Renderização src | ||
it('deve renderizar o button com o src correto', () => { | ||
cy.mount(<Image />); | ||
cy.get('bds-image').should('have.attr', 'src', 'https://picsum.photos/300/200'); | ||
}); | ||
// Teste de Renderização alt | ||
it('deve renderizar o button com o alt correto', () => { | ||
cy.mount(<Image />); | ||
cy.get('bds-image').should('have.attr', 'alt', 'Example of a image'); | ||
}); | ||
// Teste de Renderização width | ||
it('deve renderizar o button com o width correto', () => { | ||
cy.mount(<Image />); | ||
cy.get('bds-image').should('have.attr', 'width', '300px'); | ||
}); | ||
// Teste de Renderização height | ||
it('deve renderizar o button com o height correto', () => { | ||
cy.mount(<Image />); | ||
cy.get('bds-image').should('have.attr', 'height', '200px'); | ||
}); | ||
// Teste de Renderização object-fit | ||
it('deve renderizar o button com o object-fit correto', () => { | ||
cy.mount(<Image />); | ||
cy.get('bds-image').should('have.attr', 'object-fit', 'cover'); | ||
}); | ||
// Teste de Renderização brightness | ||
it('deve renderizar o button com o brightness correto', () => { | ||
cy.mount(<Image />); | ||
cy.get('bds-image').should('have.attr', 'brightness', '1'); | ||
}); | ||
}); | ||
|
||
describe('Teste de Acessibilidade Dropdown', () => { | ||
// Teste de Acessibilidade método loadImage | ||
it('Verificar se o método loadImage esta sendo correspondido', () => { | ||
cy.mount(<Image />); | ||
cy.get('button[id=loadImage]').click(); | ||
cy.get('bds-image').shadow().find('bds-skeleton'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { BdsLoadingSpinner } from '../dist/blip-ds-react'; | ||
|
||
const LoadingSpinner = () => { | ||
return ( | ||
<> | ||
<BdsLoadingSpinner size="standard" color="main"></BdsLoadingSpinner> | ||
</> | ||
); | ||
}; | ||
|
||
describe('Teste de Renderização LoadingSpinner', () => { | ||
// Teste de Renderização | ||
it('deve renderizar o button com o size correto', () => { | ||
cy.mount(<LoadingSpinner />); | ||
cy.get('bds-loading-spinner').should('have.attr', 'size', 'standard'); | ||
}); | ||
// Teste de Renderização | ||
it('deve renderizar o button com o color correto', () => { | ||
cy.mount(<LoadingSpinner />); | ||
cy.get('bds-loading-spinner').should('have.attr', 'color', 'main'); | ||
}); | ||
}); |
Oops, something went wrong.