Giter Club home page Giter Club logo

Comments (5)

fromm1990 avatar fromm1990 commented on June 2, 2024

Have you added your domain to the NgcCookieConsentConfig object?

{
    "cookie": {
        "domain": "your domain here"
    },
    ...
}

Also, remember to inject the NgcCookieConsentService in your AppComponent.

from ngx-cookieconsent.

Waniusza avatar Waniusza commented on June 2, 2024

Had same annoying issue.

Added below code in main component

   this.statusChangeSubscription = this.ccService.statusChange$.subscribe(
      (event: NgcStatusChangeEvent) => {
        if (event.status === 'allow') {
          this.cookieService.set(IS_COOKIE_ALLOWED, 'true');
          this.ccService.destroy();
        } else {
          this.cookieService.delete(IS_COOKIE_ALLOWED);
        }
      });
    let isCookieAllowed = this.cookieService.get(IS_COOKIE_ALLOWED);
    if (isCookieAllowed == 'true') {
      this.ccService.destroy();
    }

Note:
there is cookieService imported (ngx-cookie-service in our project)
there is const IS_COOKIE_ALLOWED: string defined whenever you want (defined and exported in cookie.conf.ts in our project)

from ngx-cookieconsent.

rajeshkumaryadavdotcom avatar rajeshkumaryadavdotcom commented on June 2, 2024

I have two domains rajeshyadav.net and rajeshkumaryadav.com in the domain I set .com site which works fine but when I open .net site I click got it and refresh page again it shows, can we pass two domains ?

from ngx-cookieconsent.

fromm1990 avatar fromm1990 commented on June 2, 2024

@rajeshyadavdotnet I think this answers your question #36 (comment) it's not a detailed answer, but should get you started.

from ngx-cookieconsent.

tinesoft avatar tinesoft commented on June 2, 2024

Thanks @fromm1990: your comments do indeed answer @chiraggmodi and @rajeshyadavdotnet's questions (which are unrelated by the way)

Closing for now

from ngx-cookieconsent.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.