2020-04-02 08:38:00 +03:00
|
|
|
class Renderer {
|
|
|
|
|
2020-04-08 13:33:12 +03:00
|
|
|
constructor(wrapper)
|
2020-04-06 11:16:18 +03:00
|
|
|
{
|
2020-04-08 12:33:34 +03:00
|
|
|
this.wrapper = wrapper;
|
2020-04-02 08:38:00 +03:00
|
|
|
}
|
|
|
|
|
2020-04-06 11:16:18 +03:00
|
|
|
render(buttonConfig)
|
|
|
|
{
|
2020-04-02 08:38:00 +03:00
|
|
|
|
|
|
|
paypal.Buttons(
|
|
|
|
buttonConfig
|
2020-04-08 12:33:34 +03:00
|
|
|
).render(this.wrapper);
|
2020-04-02 08:38:00 +03:00
|
|
|
}
|
|
|
|
|
2020-04-06 11:16:18 +03:00
|
|
|
hideButtons()
|
|
|
|
{
|
2020-04-08 12:33:34 +03:00
|
|
|
document.querySelector(this.wrapper).style.display = 'none';
|
2020-04-02 08:38:00 +03:00
|
|
|
}
|
|
|
|
|
2020-04-06 11:16:18 +03:00
|
|
|
showButtons()
|
|
|
|
{
|
2020-04-08 12:33:34 +03:00
|
|
|
document.querySelector(this.wrapper).style.display = 'block';
|
2020-04-02 08:38:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Renderer;
|