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

Rebranding #16

Merged
merged 5 commits into from
Sep 11, 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@betha-plataforma/estrutura-componentes",
"version": "1.6.0",
"version": "1.7.0",
"description": "Coleção de Web Components para compor a estrutura de uma aplicação front-end da Betha Sistemas.",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
8 changes: 8 additions & 0 deletions src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@ export namespace Components {
"inline": boolean;
}
interface BthMarcaProduto {
/**
* Define a área de produtos.
*/
"area"?: string;
/**
* Configuração de autorização. É necessária para o componente poder se autentizar com os serviços.
*/
Expand Down Expand Up @@ -884,6 +888,10 @@ declare namespace LocalJSX {
"inline"?: boolean;
}
interface BthMarcaProduto {
/**
* Define a área de produtos.
*/
"area"?: string;
/**
* Configuração de autorização. É necessária para o componente poder se autentizar com os serviços.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/components/app/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ slot[name="container_contexto"] {
/**
* @prop --bth-app-menu-bg-color: Cor de fundo do menu horizontal
*/
background-color: var(--bth-app-menu-bg-color, #142c48);
background-color: var(--bth-app-menu-bg-color);
color: var(--bth-app-gray-light-40);
height: 40px;
grid-area: menu-horizontal;
Expand Down
2 changes: 1 addition & 1 deletion src/components/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
/**
* Permite customizar a cor de fundo da barra do menu. Por padrão segue a cor da linha dos produtos.
*/
@Prop() readonly menuBgColor: string = '#142c48';
@Prop() readonly menuBgColor: string;

/**
* Permite definir um banner que é exibido acima do menu
Expand Down Expand Up @@ -515,13 +515,13 @@

{this.possuiBanner() && ([
<div class="banner__icon">
<bth-icone icone={this.banner.icone ? this.banner.icone : this.banner.tipo === 'info' ? 'information' : 'alert'}></bth-icone>

Check warning on line 518 in src/components/app/app.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

This type is not allowed in the condition because it is a string. Allowed types are boolean, null-union, undefined-union, or boolean-or-undefined
</div>,
<div class="banner__content">
<span>{this.banner.texto}</span>
{!isNill(this.banner.link) && this.banner.link.trim() !== '' && (
<a href={this.banner.link} target={this.banner.target} title="Mais informações" rel="noreferrer">
{this.banner.labelLink ? this.banner.labelLink : 'Mais informações'}

Check warning on line 524 in src/components/app/app.tsx

View workflow job for this annotation

GitHub Actions / build-and-test

This type is not allowed in the condition because it is a string. Allowed types are boolean, null-union, undefined-union, or boolean-or-undefined
</a>
)}
{!isNill(this.banner.button) && (
Expand Down
3 changes: 2 additions & 1 deletion src/components/app/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ As opções do menu podem ser configuradas através de algumas propriedades
| Property | Attribute | Description | Type | Default |
| -------------- | --------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------- | ----------- |
| `banner` | -- | Permite definir um banner que é exibido acima do menu | `Banner` | `undefined` |
| `menuBgColor` | `menu-bg-color` | Permite customizar a cor de fundo da barra do menu. Por padrão segue a cor da linha dos produtos. | `string` | `'#142c48'` |
| `menuBgColor` | `menu-bg-color` | Permite customizar a cor de fundo da barra do menu. Por padrão segue a cor da linha dos produtos. | `string` | `undefined` |
| `menuVertical` | `menu-vertical` | Define se as opções do menu serão exibidas no formato "vertical", caso contrário serão exibidas no formato "horizontal" | `boolean` | `false` |
| `opcoes` | -- | Opções de navegação do menu | `OpcaoMenu[]` | `[]` |

Expand All @@ -108,6 +108,7 @@ As opções do menu podem ser configuradas através de algumas propriedades
| Event | Description | Type |
| ---------------------- | --------------------------------------------------------------------------------- | ---------------------------------------- |
| `bannerAlterado` | É emitido quando o componente de menu possuir alterações na propriedade de banner | `CustomEvent<MenuBannerAlteradoEvent>` |
| `botaoBannerAcionado` | É emitido quando o botão do banner é clicado | `CustomEvent<void>` |
| `opcaoMenuSelecionada` | É emitido quando alguma opção do menu for selecionada | `CustomEvent<OpcaoMenuSelecionadaEvent>` |


Expand Down
16 changes: 1 addition & 15 deletions src/components/app/test/app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('app', () => {
await page.setContent('<bth-app></bth-app>');

// Assert
expect(page.root).toEqualLightHtml('<bth-app style="--bth-app-menu-bg-color: #142c48;"></bth-app>');
expect(page.root).toEqualLightHtml('<bth-app></bth-app>');
});

it('renderiza conteudo slot "menu_marca_produto"', async () => {
Expand Down Expand Up @@ -252,20 +252,6 @@ describe('app', () => {
expect(app.style.getPropertyValue('--bth-app-menu-bg-color')).toBe(app.menuBgColor);
});

it('define cor da barra padrão caso "menuBgColor" não seja definido', async () => {
// Arrange
await page.setContent('<bth-app></bth-app>');

// Act
const app: HTMLBthAppElement = page.doc.querySelector('bth-app');
app.menuBgColor = undefined;
await page.waitForChanges();

// Assert
const corPadraoBetha = '#142c48';
expect(app.style.getPropertyValue('--bth-app-menu-bg-color')).toBe(corPadraoBetha);
});

it('recebe eventos de conteudo sinalizado no desktop', async () => {
// Arrange
await page.setContent('<bth-app></bth-app>');
Expand Down
Loading
Loading