In this example, a class called ReachMeasurementOperation
is defined in a worklet and is registered using SharedStorageWorkletGlobalScope.register()
with the name reach-measurement
. SharedStorageRunOperation
defines the structure to which this class must conform, essentially defining the parameters required for the run()
method. Other than this requirement, the functionality of the class can be defined flexibly.
// reach-measurement-worklet.js
const SCALE_FACTOR = 65536;
function convertContentIdToBucket(contentId) {
return BigInt(contentId);
}
class ReachMeasurementOperation {
async run(data) {
const { contentId } = data;
// Read from Shared Storage
const key = "has-reported-content";
const hasReportedContent = (await this.sharedStorage.get(key)) === "true";
// Do not report if a report has been sent already
if (hasReportedContent) {
return;
}
// Generate the aggregation key and the aggregatable value
const bucket = convertContentIdToBucket(contentId);
const value = 1 * SCALE_FACTOR;
// Send an aggregatable report via the Private Aggregation API
privateAggregation.sendHistogramReport({ bucket, value });
// Set the report submission status flag
await this.sharedStorage.set(key, true);
}
}
// Register the operation
register("reach-measurement", ReachMeasurementOperation);
Note: It is possible to define and register multiple operations in the same shared storage worklet module script with different names. See SharedStorageOperation
for an example.
In the main browsing context, the reach-measurement
operation is invoked using the WindowSharedStorage.run()
method:
async function measureUniqueReach() {
// Load the Shared Storage worklet
await window.sharedStorage.worklet.addModule("reach-measurement-worklet.js");
// Run the reach measurement operation
await window.sharedStorage.run("reach-measurement", {
data: { contentId: "1234" },
});
}
measureUniqueReach();
For more details about this example, see Unique reach measurement. See Shared Storage API for more examples.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4