removing everything not working

This commit is contained in:
Jon Lambson 2017-10-24 12:58:35 -06:00
bovenliggende dd5b5c666c
commit 6a2843d95f
8 gewijzigde bestanden met toevoegingen van 79 en 44 verwijderingen

Bestand weergeven

@ -44,7 +44,7 @@
<!-- Services -->
<script src="/assets/oauth3.org/oauth3.ng.js" charset="utf-8"></script>
<script src="/js/services/auth-service.js" charset="utf-8"></script>
<script src="/js/services/shows-service.js" charset="utf-8"></script>
<script src="/js/services/websites-service.js" charset="utf-8"></script>
<!-- Controllers -->
<script src="/js/controllers/login-controller.js" charset="utf-8"></script>
<script src="/js/controllers/profile-controller.js" charset="utf-8"></script>

Bestand weergeven

@ -113,7 +113,7 @@ app.config(['$stateProvider', '$urlRouterProvider', 'localStorageServiceProvider
}
})
.state('app.websites', {
url: 'shows',
url: 'websites',
views: {
'content@': {
templateUrl: 'templates/websites.html',
@ -124,7 +124,7 @@ app.config(['$stateProvider', '$urlRouterProvider', 'localStorageServiceProvider
.state('app.websites.detail', {
url: '/detail/:id',
templateUrl: 'templates/websites-detail.html',
controller: 'websitesDetailCtrl as vm'
controller: 'websiteCtrl as vm'
})
.state('app.dns', {
url: 'dns',

Bestand weergeven

@ -68,8 +68,8 @@ app.directive('notificationBar', [function () {
}]);
app.controller('websiteCtrl', [
'$scope', '$q', 'Auth', 'azp@oauth3.org', '$timeout', '$sce'
, function ($scope, $q, Auth, Oauth3, $timeout, $sce) {
'$scope', '$q', 'Auth', 'azp@oauth3.org', '$timeout', '$sce','$stateParams', 'websitesService',
function ($scope, $q, Auth, Oauth3, $timeout, $sce, $stateParams, websitesService) {
var vm = this;
var angular = window.angular;
@ -88,6 +88,9 @@ app.controller('websiteCtrl', [
return r.verifiedAt || r.mode;
}
// vm.selectedShow = websitesService.find($stateParams.id);
// vm.shows = websitesService.list();
Auth.api = function (apiname, opts) {
var els = [];
@ -703,6 +706,7 @@ app.controller('websiteCtrl', [
// console.log('[listSites] sites:');
// console.log(sites);
vm.sites = sites;
vm.shows = sites;
vm.sites.forEach(function(site) {
site.urlSafeDomain = "https://" + site.domain;
site.urlSafeDomain = $sce.trustAsResourceUrl(site.urlSafeDomain);
@ -710,6 +714,11 @@ app.controller('websiteCtrl', [
});
};
vm.websiteSelected = function (x) {
vm.selectedShow = x;
debugger;
};
//vm.getDomains();
Auth.api('domains.list', {}).then(function (els) {
// console.log('[init] domains.list els:');

Bestand weergeven

@ -1,29 +0,0 @@
app.factory('ShowsService',function(){
var shows = [{
id: 1,
name: 'Walking Dead',
description: 'The Walking Dead is an American post-apocalyptic horror drama television series developed by Frank Darabont. It is based on the comic book series of the same name by Robert Kirkman, Tony Moore, and Charlie Adlard. It stars Andrew Lincoln as sheriff\'s deputy Rick Grimes, who awakens from a coma to find a post-apocalyptic world dominated by flesh-eating zombies.'
},
{
id: 2,
name: 'Breaking Bad',
description: 'Breaking Bad is an American crime drama television series created and produced by Vince Gilligan. The show originally aired on the AMC network for five seasons, from January 20, 2008 to September 29, 2013. The main character is Walter White (Bryan Cranston), a struggling high school chemistry teacher who is diagnosed with inoperable lung cancer at the beginning of the series.'
},
{
id: 3,
name: '7D',
description: 'The 7D is an American animated television series produced by Disney Television Animation, and broadcast on Disney XD starting in July 7, 2014. It is a re-imagining of the titular characters from the 1937 film Snow White and the Seven Dwarfs by Walt Disney Productions'
}];
return {
list: function(){
return shows;
},
find: function(id){
return _.find(shows, function(show){
return show.id == id;
});
}
};
});

Bestand weergeven

@ -0,0 +1,60 @@
app.factory('websitesService',[
'$q', 'Auth', 'azp@oauth3.org', '$timeout', '$sce', '$stateParams',
function($q, Auth, Oauth3, $timeout, $sce, $stateParams){
// var shows = [];
// var shows = [{
// id: 1,
// name: 'Walking Dead',
// description: 'The Walking Dead is an American post-apocalyptic horror drama television series developed by Frank Darabont. It is based on the comic book series of the same name by Robert Kirkman, Tony Moore, and Charlie Adlard. It stars Andrew Lincoln as sheriff\'s deputy Rick Grimes, who awakens from a coma to find a post-apocalyptic world dominated by flesh-eating zombies.'
// },
// {
// id: 2,
// name: 'Breaking Bad',
// description: 'Breaking Bad is an American crime drama television series created and produced by Vince Gilligan. The show originally aired on the AMC network for five seasons, from January 20, 2008 to September 29, 2013. The main character is Walter White (Bryan Cranston), a struggling high school chemistry teacher who is diagnosed with inoperable lung cancer at the beginning of the series.'
// },
// {
// id: 3,
// name: '7D',
// description: 'The 7D is an American animated television series produced by Disney Television Animation, and broadcast on Disney XD starting in July 7, 2014. It is a re-imagining of the titular characters from the 1937 film Snow White and the Seven Dwarfs by Walt Disney Productions'
// }];
var sites = [];
listSites = function () {
var sites = [];
return $q.all(Auth.sessions.map(function (session) {
return Auth.get(session).then(function (oauth3) {
var pkg = oauth3.pkg('www@daplie.com');
return pkg.list().then(function (result) {
var _sites = result.data;
if (Array.isArray(_sites)) {
sites = _sites.concat(sites);
return;
}
// console.error('_sites is not an array');
// console.error(_sites);
}, function (err) {
console.error('_sites had an error');
console.error(err);
});
});
})).then(function () {
var sitez;
sitez = sites;
return sitez;
console.log('[listSites] sites:');
console.log(sites);
});
};
return {
list: function(){
console.log('asdf');
// return sites;
},
find: function(id){
return _.find(sites, function(site){
return site.id == id;
});
}
};
}]);

Bestand weergeven

@ -115,7 +115,7 @@
<li class="cards__item" ng-repeat="r in vm.sites">
<div class="card">
<div class="card__image card__image--fence avoid-clicks">
<!-- <iframe src="{{ r.urlSafeDomain }}" width="350" height="350"></iframe> -->
<iframe src="{{ r.urlSafeDomain }}" width="350" height="350"></iframe>
</div>
<div class="card__content">
<div class="card__title text-center"><a ng-href="https://{{ r.domain }}" target="_blank" ng-bind="r.domain">example.com</a></div>

Bestand weergeven

@ -1,4 +1,6 @@
<h3>{{ vm.selectedShow.name }}</h3>
<h1>hello - {{ vm.blah }}</h1>
<h3 style="red">{{ vm.selectedShow }}</h3>
<h3>{{ vm.selectedShow.id }}</h3>
<p>
{{ vm.selectedShow.description }}
{{ vm.selectedShow.domain }}
</p>

Bestand weergeven

@ -1,7 +0,0 @@
<ul>
<li ui-sref-active="selected" ng-repeat="show in vm.shows">
<a ui-sref=".detail({ id: show.id })">{{ show.name }}</a>
</li>
</ul>
<div class="detail" ui-view></div>