
Security News
Python Adopts Standard Lock File Format for Reproducible Installs
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.
aurelia-watch-decorator
Advanced tools
A plugin to declaratively handle observation in your custom element or custom attribute
npm install aurelia-watch-decorator
Use @watch
decorator on a custom element, or a custom attribute class:
import { watch } from 'aurelia-watch-decorator';
@watch(...)
class Abc {}
Or a method of a class:
import { watch } from 'aurelia-watch-decorator';
class Abc {
@watch(...)
log() {}
}
// on class
@watch(expressionOrPropertyAccessFn, changeHandlerOrCallback)
class MyClass {}
// on method
class MyClass {
@watch(expressionOrPropertyAccessFn)
someMethod() {}
}
Name | Type | Description |
---|---|---|
expressionOrPropertyAccessFn | string | IPropertyAccessFn | Watch expression specifier. If a normal function or an arrow function is given, the function body will converted to string and parsed as watch expression |
changeHandlerOrCallback | string | IWatcherCallback | The callback that will be invoked when the value evaluated from watch expression has changed. If a name is given, it will be used to resolve the callback ONCE . This callback will be called with 3 parameters: (1st) new value from the watched expression. (2nd) old value from the watched expression (3rd) the watched instance. And the context of the function call will be the instance, same with the 3rd parameter. |
There is one main exports of this plugin: watch
. watch
is a decorator that can be used per following examples:
@watch('counter', (newValue, oldValue, app) => app.log(newValue))
class App {
counter = 0;
log(whatToLog) {
console.log(whatToLog);
}
}
❗❗❗❗ method name will be used to resolve the function
ONCE
, which means changing method after the instance has been created will not be recognised.
@watch('counter', 'log')
class App {
counter = 0;
log(whatToLog) {
console.log(whatToLog);
}
}
@watch('counter', function(newValue, oldValue, app) {
app.log(newValue);
// or use this, it will point to the instance of this class
this.log(newValue);
})
class App {
counter = 0;
log(whatToLog) {
console.log(whatToLog);
}
}
@watch(function (abc) { return counter }, (newValue, oldValue, app) => app.log(newValue))
class App {
counter = 0;
log(whatToLog) {
console.log(whatToLog);
}
}
@watch(abc => abc.counter, (newValue, oldValue, app) => app.log(newValue))
class App {
counter = 0;
log(whatToLog) {
console.log(whatToLog);
}
}
class App {
counter = 0;
@watch('counter')
log(whatToLog) {
console.log(whatToLog);
}
}
class App {
counter = 0;
@watch(function(abc) { return abc.counter })
log(whatToLog) {
console.log(whatToLog);
}
}
class App {
counter = 0;
@watch(abc => abc.counter)
log(whatToLog) {
console.log(whatToLog);
}
}
FAQs
A plugin to declaratively handle observation in your custom element or custom attribute
The npm package aurelia-watch-decorator receives a total of 119 weekly downloads. As such, aurelia-watch-decorator popularity was classified as not popular.
We found that aurelia-watch-decorator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.
Security News
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.