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
const webpush = require('web-push'); | |
const pushSubscription = { | |
endpoint: '< Push Subscription URL >', | |
keys: { | |
p256dh: '< User Public Encryption Key >', | |
auth: '< User Auth Secret >' | |
} | |
}; |
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
const payload = { | |
title: 'Nova Notificação', | |
body: 'Mensagem da Notificação', | |
icon: 'src/assets/img/cat-icon.png', | |
badge: 'src/assets/img/cat-badge.png', | |
image: 'src/assets/img/wallpaper.jpg', | |
sound: 'src/sound/notification.mp3' | |
}; | |
webpush.sendNotification(pushSubscription, payload); |
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
const payload = { | |
title: 'Título da notificação', | |
body: 'Corpo da notificação', | |
requireInteraction: true, | |
tag: 'message-1', | |
renotify: true, | |
timestamp: Date.parse('01 Jan 2021 00:00:00') | |
}; | |
webpush.sendNotification(pushSubscription, payload); |
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
const payload = { | |
title: 'Novo Comentário!', | |
body: 'Você recebeu um incrível comentário. O que deseja fazer?', | |
icon: 'src/assets/img/cat-icon.png', | |
actions: [ | |
{ | |
action: 'like', | |
title: '👍 Like', | |
}, | |
{ |
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
const payload = { | |
title: 'Nova Mensagem de João', | |
body: 'olá, tudo bem?', | |
icon: 'https://cdn3.iconfinder.com/data/icons/business-avatar-1/512/8_avatar-256.png', | |
badge: 'src/assets/img/cat-badge.png', | |
actions: [ | |
{ | |
action: 'reply', | |
title: 'Responder', | |
type: 'text', |
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
export class VendaService { | |
constructor(private usuarioService: UsuarioService) {} | |
public listar() { | |
if (this.usuarioService.admin) { | |
return this.listagemAdmin(); | |
} | |
return this.listagemComercial(); | |
} | |
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
export abstract class VendaService { | |
abstract listar(); | |
abstract detalhar(venda: Venda); | |
} |
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
export class VendaAdminService extends VendaService { | |
public listar() { | |
// Retorna a listagem do Admin | |
} | |
public detalhar(venda: Venda) { | |
// Detalha a venda com o perfil Admin | |
} | |
} |
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
@Component({ | |
selector: 'app-venda-listagem', | |
templateUrl: './venda-listagem.component.html', | |
styleUrls: ['./venda-listagem.component.css'] | |
}) | |
export class VendaListagemComponent { | |
constructor(private vendaService: VendaService) {} | |
ngOnInit() { |
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
@NgModule({ | |
imports: [ | |
VendaModule | |
] | |
providers: [ | |
VendaAdminService, | |
{ | |
provide: VendaService, | |
useClass: VendaAdminService | |
} |