├── .babelrc ├── .github └── workflows │ ├── ci.yml │ └── update_dependencies.yml ├── .gitignore ├── .mergify.yml ├── .npmignore ├── README.md ├── app ├── README.md ├── bootstrap │ ├── README.md │ ├── bootstrap.js │ └── ngmodule.js ├── contacts │ ├── README.md │ ├── contactDetail.component.js │ ├── contactList.component.js │ ├── contactView.component.js │ ├── contacts.component.js │ ├── contacts.module.js │ ├── contacts.states.js │ └── editContact.component.js ├── global │ ├── README.md │ ├── appConfig.service.js │ ├── auth.service.js │ ├── dataSources.service.js │ ├── dialog.directive.js │ ├── dialog.service.js │ ├── global.module.js │ ├── loadingIndicator.hook.js │ ├── loadingIndicator.service.js │ └── requiresAuth.hook.js ├── main │ ├── README.md │ ├── app.component.js │ ├── app.config.js │ ├── app.states.js │ ├── home.component.js │ ├── login.component.js │ ├── main.module.js │ └── welcome.component.js ├── mymessages │ ├── README.md │ ├── compose.component.js │ ├── directives │ │ ├── folderList.component.js │ │ ├── messageTable.component.js │ │ └── sortMessages.directive.js │ ├── filters │ │ └── messageBody.filter.js │ ├── message.component.js │ ├── messageList.component.js │ ├── mymessages.component.js │ ├── mymessages.module.js │ ├── mymessages.states.js │ └── services │ │ └── messagesListUI.service.js ├── prefs │ ├── README.md │ ├── prefs.component.js │ ├── prefs.module.js │ └── prefs.states.js └── util │ ├── README.md │ ├── ga.js │ ├── sessionStorage.js │ └── util.js ├── cypress.config.js ├── cypress ├── e2e │ └── sample_app.cy.js ├── fixtures │ └── example.json ├── plugins │ └── index.js └── support │ ├── commands.js │ └── e2e.js ├── data ├── README.md ├── contacts.json ├── corpora │ ├── 2nd-treatise.txt.gz │ ├── beatles.txt.gz │ ├── beowulf.txt.gz │ ├── bsdfaq.txt.gz │ ├── cat-in-the-hat.txt.gz │ ├── comm_man.txt.gz │ ├── elflore.txt.gz │ ├── flatland.txt.gz │ ├── green-eggs.txt.gz │ ├── macbeth.txt.gz │ ├── palin.txt.gz │ ├── rfc2549.txt.gz │ ├── rfc7230.txt.gz │ ├── sneetches.txt.gz │ └── two-cities.txt.gz ├── fetch.sh ├── folders.json ├── generate.js ├── generate.sh └── messages.json ├── dependencies.yml ├── index.html ├── package.json ├── styles └── app.css ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/update_dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/.github/workflows/update_dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/README.md -------------------------------------------------------------------------------- /app/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/bootstrap/README.md -------------------------------------------------------------------------------- /app/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /app/bootstrap/ngmodule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/bootstrap/ngmodule.js -------------------------------------------------------------------------------- /app/contacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/contacts/README.md -------------------------------------------------------------------------------- /app/contacts/contactDetail.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/contacts/contactDetail.component.js -------------------------------------------------------------------------------- /app/contacts/contactList.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/contacts/contactList.component.js -------------------------------------------------------------------------------- /app/contacts/contactView.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/contacts/contactView.component.js -------------------------------------------------------------------------------- /app/contacts/contacts.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/contacts/contacts.component.js -------------------------------------------------------------------------------- /app/contacts/contacts.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/contacts/contacts.module.js -------------------------------------------------------------------------------- /app/contacts/contacts.states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/contacts/contacts.states.js -------------------------------------------------------------------------------- /app/contacts/editContact.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/contacts/editContact.component.js -------------------------------------------------------------------------------- /app/global/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/README.md -------------------------------------------------------------------------------- /app/global/appConfig.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/appConfig.service.js -------------------------------------------------------------------------------- /app/global/auth.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/auth.service.js -------------------------------------------------------------------------------- /app/global/dataSources.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/dataSources.service.js -------------------------------------------------------------------------------- /app/global/dialog.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/dialog.directive.js -------------------------------------------------------------------------------- /app/global/dialog.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/dialog.service.js -------------------------------------------------------------------------------- /app/global/global.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/global.module.js -------------------------------------------------------------------------------- /app/global/loadingIndicator.hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/loadingIndicator.hook.js -------------------------------------------------------------------------------- /app/global/loadingIndicator.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/loadingIndicator.service.js -------------------------------------------------------------------------------- /app/global/requiresAuth.hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/global/requiresAuth.hook.js -------------------------------------------------------------------------------- /app/main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/main/README.md -------------------------------------------------------------------------------- /app/main/app.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/main/app.component.js -------------------------------------------------------------------------------- /app/main/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/main/app.config.js -------------------------------------------------------------------------------- /app/main/app.states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/main/app.states.js -------------------------------------------------------------------------------- /app/main/home.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/main/home.component.js -------------------------------------------------------------------------------- /app/main/login.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/main/login.component.js -------------------------------------------------------------------------------- /app/main/main.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/main/main.module.js -------------------------------------------------------------------------------- /app/main/welcome.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/main/welcome.component.js -------------------------------------------------------------------------------- /app/mymessages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/README.md -------------------------------------------------------------------------------- /app/mymessages/compose.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/compose.component.js -------------------------------------------------------------------------------- /app/mymessages/directives/folderList.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/directives/folderList.component.js -------------------------------------------------------------------------------- /app/mymessages/directives/messageTable.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/directives/messageTable.component.js -------------------------------------------------------------------------------- /app/mymessages/directives/sortMessages.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/directives/sortMessages.directive.js -------------------------------------------------------------------------------- /app/mymessages/filters/messageBody.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/filters/messageBody.filter.js -------------------------------------------------------------------------------- /app/mymessages/message.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/message.component.js -------------------------------------------------------------------------------- /app/mymessages/messageList.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/messageList.component.js -------------------------------------------------------------------------------- /app/mymessages/mymessages.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/mymessages.component.js -------------------------------------------------------------------------------- /app/mymessages/mymessages.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/mymessages.module.js -------------------------------------------------------------------------------- /app/mymessages/mymessages.states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/mymessages.states.js -------------------------------------------------------------------------------- /app/mymessages/services/messagesListUI.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/mymessages/services/messagesListUI.service.js -------------------------------------------------------------------------------- /app/prefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/prefs/README.md -------------------------------------------------------------------------------- /app/prefs/prefs.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/prefs/prefs.component.js -------------------------------------------------------------------------------- /app/prefs/prefs.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/prefs/prefs.module.js -------------------------------------------------------------------------------- /app/prefs/prefs.states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/prefs/prefs.states.js -------------------------------------------------------------------------------- /app/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/util/README.md -------------------------------------------------------------------------------- /app/util/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/util/ga.js -------------------------------------------------------------------------------- /app/util/sessionStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/util/sessionStorage.js -------------------------------------------------------------------------------- /app/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/app/util/util.js -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/sample_app.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/cypress/e2e/sample_app.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/README.md -------------------------------------------------------------------------------- /data/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/contacts.json -------------------------------------------------------------------------------- /data/corpora/2nd-treatise.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/2nd-treatise.txt.gz -------------------------------------------------------------------------------- /data/corpora/beatles.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/beatles.txt.gz -------------------------------------------------------------------------------- /data/corpora/beowulf.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/beowulf.txt.gz -------------------------------------------------------------------------------- /data/corpora/bsdfaq.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/bsdfaq.txt.gz -------------------------------------------------------------------------------- /data/corpora/cat-in-the-hat.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/cat-in-the-hat.txt.gz -------------------------------------------------------------------------------- /data/corpora/comm_man.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/comm_man.txt.gz -------------------------------------------------------------------------------- /data/corpora/elflore.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/elflore.txt.gz -------------------------------------------------------------------------------- /data/corpora/flatland.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/flatland.txt.gz -------------------------------------------------------------------------------- /data/corpora/green-eggs.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/green-eggs.txt.gz -------------------------------------------------------------------------------- /data/corpora/macbeth.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/macbeth.txt.gz -------------------------------------------------------------------------------- /data/corpora/palin.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/palin.txt.gz -------------------------------------------------------------------------------- /data/corpora/rfc2549.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/rfc2549.txt.gz -------------------------------------------------------------------------------- /data/corpora/rfc7230.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/rfc7230.txt.gz -------------------------------------------------------------------------------- /data/corpora/sneetches.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/sneetches.txt.gz -------------------------------------------------------------------------------- /data/corpora/two-cities.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/corpora/two-cities.txt.gz -------------------------------------------------------------------------------- /data/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/fetch.sh -------------------------------------------------------------------------------- /data/folders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/folders.json -------------------------------------------------------------------------------- /data/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/generate.js -------------------------------------------------------------------------------- /data/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/generate.sh -------------------------------------------------------------------------------- /data/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/data/messages.json -------------------------------------------------------------------------------- /dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/dependencies.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/package.json -------------------------------------------------------------------------------- /styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/styles/app.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ui-router/sample-app-angularjs/HEAD/yarn.lock --------------------------------------------------------------------------------