A tiny package that tracks idleness in a web application.
A simple usage example:
import 'package:idle_tracker/idle_tracker.dart';
void main() {
new IdleTracker(
timeout: const Duration(seconds: 5),
periodicIdleCall: true,
startsAsIdle: true,
onIdle: () => print('Hey, are you there?'),
onActive: () => print('Welcome back!'))
..start();
}
Please file feature requests and bugs at the issue tracker.
example/example.dart
import 'dart:html';
import 'package:idle_tracker/idle_tracker.dart';
void main() {
new IdleTracker(
timeout: const Duration(seconds: 5),
periodicIdleCall: true,
startsAsIdle: true,
onIdle: onIdle,
onActive: onActive)
..start();
}
var count = 0;
final output = document.querySelector('#output');
void log(String message) {
if (output.children.length >= 40) {
output.innerHtml = '';
}
output.append(new DivElement()..text = message);
}
void onActive() {
count = 0;
log('Welcome back!');
}
void onIdle() {
if (count++ < 10) log('Hey, are you there?');
}
Add this to your package's pubspec.yaml file:
dependencies:
idle_tracker: "^0.0.1"
You can install packages from the command line:
with pub:
$ pub get
Alternatively, your editor might support pub get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:idle_tracker/idle_tracker.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.0.1 | Dec 2, 2017 |
|
|
We analyzed this package on Apr 9, 2018, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
26 | / 100 |
Health:
Code health derived from static analysis.
[more]
|
100 | / 100 |
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100 | / 100 |
Overall score:
Weighted score of the above.
[more]
|
63 |
Detected platforms: web
Primary library:
package:idle_tracker/idle_tracker.dart
with components:html
.
The description is too short.
Add more detail about the package, what it does and what is its target use case. Try to write at least 60 characters.
Package is pre-v1 release.
While there is nothing inherently wrong with versions of
0.*.*
, it usually means that the author is still experimenting with the general direction API.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=1.20.1 <2.0.0 | ||
Dev dependencies | |||
browser | any |