<div t-redux-scroller get-next="$ctrl.getNext" done="$ctrl.done" trigger-selector=".trigger-class">
<div ng-repeat="data in $ctrl.data">
<template data="data"></template>
</div>
<div class="trigger-class"></div>
</div>The current PR can be broken up into 4-6 different PRs, with varying degree of independence:
-
Scroll
- Ensure that when needed, functions are called internally
- Given a specific API, should work in isolation
-
Reducers
- Notification Duck logic
- Given a specific API, should work in isolation
If you are using a Windows machine, you can use choco to install:
choco install haskell-stack
Or you can look at this site for more instructions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component, Inject, Input } from 'core/decorators'; | |
| import { actions, Notification } from 'core/store/ducks/notifications'; | |
| import { ReduxProvider } from 'core/store/utilities/provider'; | |
| import './notification.item.scss'; | |
| @Component({ | |
| selector: 'notificationItem', | |
| template: require('./notification.item.html') | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Contact has Contact Information that | |
| has Contact Type equal to Person | |
| and | |
| Contact has Relationship to {Licensee} that | |
| has Type equal to Customer or Prospect | |
| is with Org Item that | |
| has Field equal to Commercial | |
| has Net Worth greater than $2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Input | |
| const data = [ | |
| { | |
| calcFieldValue: 3, | |
| id: '50346a2e-8421-e811-a2bc-000c29878c3f', | |
| idFieldValue: null, | |
| primaryCurrencyCalcFieldValue: 4, | |
| productFolder: 'Personal', | |
| productTypeName: 'DDAs', | |
| fields: [], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Stop all containers | |
| docker stop $(docker ps -a -q) | |
| # Delete all containers | |
| docker rm $(docker ps -a -q) | |
| # Delete all images | |
| docker rmi $(docker images -q) |