import puppeteer from "puppeteer";
import Good from "./Good";
import Merchant from "./Merchant";

export default class REI extends Merchant {
  public constructor() {
    super();
  }

  public get prettyName(): string {
    return "REI";
  }

  public async priceCheck(page: puppeteer.Page, good: Good): Promise<void> {
    await page.goto(good.URL).catch((err) => this.requestError(err, good));

    const priceString = await page
      .$eval("#buy-box-product-price", (el) => el.textContent)
      .catch(() => {
        this.handleNotFoundPrice(good);
        return;
      });

    if (!priceString) return;
    const price = this.parsePrice(priceString);

    this.handleFoundPrice(price, good);

    if (price < good.price) {
      await this.handleDiscount(price, good);
    }
    return;
  }
}
