
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
angular-sf-load
Advanced tools
Manage AngularJS scope load.
When it comes to load resources in an AngularJS scope, things are very repetitive. Indeed, you have to manage with loading/failed/loaded etc... states all the time.
angular-sf-load
allows to do it by simply adding a promise state in your
controller/components state load/actions handling. Here is a simple example of
how to use it in a simple component:
<h1>Heroes</h1>
<!-- Handle all states first load wait -->
<p ng-if="$ctrl.states._all.activating">
Loading...
</p>
<!-- Handle all states first load failure -->
<p ng-if="$ctrl.states._all.failed && !$ctrl.states._all.activated">
Unrecoverable error: {{ $ctrl.states._all.failed.code }}
</p>
<!-- States were loaded once -->
<div ng-if="$ctrl.states._all.activated" ng-repeat="hero in $ctrl.list">
<h2>{{ hero.name }}</h2>
<!-- Cannot delete an hero twice + giving feedback ;) -->
<button ng-click="$ctrl.deleteHero(hero)"
ng-disabled="$ctrl.actions['delete:' + hero._id].loading">
{{ $ctrl.actions['delete:' + hero._id].loading ? 'Delete' : 'Deleting' }}
</button>
</div>
<!-- Handle hero list reload wait -->
<p ng-if="$ctrl.states.heros.reloading">
Refreshing...
</p>
// Example stolen from the AngularJS documentation
angular
.module('myUserListComponent', ['sf.load'])
.component('heroList', {
template: `path/to/template.html`,
controller: HeroListController
});
function HeroListController(sfLoadService, herosService) {
var ctrl = this;
ctrl.deleteHero = deleteHero;
activate();
function activate() {
sfLoadService.loadState($scope, {
heros: herosService.list(),
categories: herosService.getCategories(),
}).then(({ heros, categories }) => {
ctrl.heros = heros;
ctrl.categories = categories;
});
}
function deleteHero(hero) {
sfLoadService.runState(
$scope,
'delete:' + hero._id,
herosService.delete(hero._id)
);
}
}
You can also see real world usage here.
FAQs
> Manage AngularJS scope load.
The npm package angular-sf-load receives a total of 1 weekly downloads. As such, angular-sf-load popularity was classified as not popular.
We found that angular-sf-load 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.