Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@tilde-nlp/ngx-cookie-consent
Advanced tools
Library is created so there would be single component for accepting cookies across multiple Tilde projects which use angular.
Library is created so there would be single component for accepting cookies across multiple Tilde projects which use angular.
npm i ngx-cookie-consent
.import {CookieConsentModule} from 'ngx-cookie-consent';
.....
@NgModule({
imports: [
....
CookieConsentModule.forRoot({show: true})
]
}
forRoot method adds provider for cookie consent settings and makes them injectable.
There might be cases when multiple projects are built from same repo and for one project cookie consent should be enabled, but for other it should be disabled. For such cases, you do not need to call forRoot method when importing module, but you need to create provider for CookieSettings configuration. Use specified token in app to create this provider. It is possible to change factory deps and use your own config provider.
import {CookieConsentModule, COOKIE_CONSENT_SETTINGS_TOKEN} from 'ngx-cookie-consent';
import { ConfigService } from '@ngx-config/core';
export function CookieConsentSettingsFactory(config: ConfigService): CookieConsentSettings{
const settings = config.getSettings<CookieConsentSettings>("cookieConsent");
return settings ?? {};
}
.....
@NgModule({
imports: [
....
CookieConsentModule,
....
],
providers:[
{
provide: COOKIE_CONSENT_SETTINGS_TOKEN,
useFactory: CookieConsentSettingsFactory,
deps: [ConfigService]
}
]
}
@use 'ngx-cookie-consent/src/lib/mixins/cookie-consent-theme.mixin.scss' as cookie-consent;
...
// Theme param is to make border-top in primary color and second param is used for background color
@include cookie-consent.color(your-border-top-color, your-background-color);
<tld-cookie-consent></tld-cookie-consent>
To make cookie consent appear only if it has not been accepted, you need to check showConsent
value from CookieConsentService. Use the following code:
<!-- your.component.html -->
<tld-cookie-consent *ngIf="showCookieConsent"></tld-cookie-consent>
// your.component.ts
import { CookieConsentService } from 'ngx-cookie-consent';
....
export class YourComponent{
get showCookieConsent(){return this.cookieConsent.showConsent};
constructor(private readonly cookieConsent: CookieConsentService) {}
}
This should be enough to get cookie consent displayed and running.
This package is using ngx translate - if you have it in your project then it should be straight forward, otherwise follow their documentation to get started. Translations should be put under key "COOKIE_CONSENT".
For listening to changes, subscribe to observable provided in CookieConsentService:
// using take(1) since cookie consent should close after user action.
this.cookieConsent.cookiePreferencesChanged$
.pipe(take(1))
.subscribe((preferences) => {
// Handle user action here. Enable additional cookies etc.
});
This library has dependency of @ngbracket/ngx-layout which is not mentioned in package json, so there would be no errors while installing it.
FAQs
Library is created so there would be single component for accepting cookies across multiple Tilde projects which use angular.
The npm package @tilde-nlp/ngx-cookie-consent receives a total of 1 weekly downloads. As such, @tilde-nlp/ngx-cookie-consent popularity was classified as not popular.
We found that @tilde-nlp/ngx-cookie-consent demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.