Browse Source

desktopapp: edit project added

master
nau 7 years ago
parent
commit
a152fd84db
11 changed files with 43 additions and 6 deletions
  1. +15
    -0
      desktopapp/controllers.js
  2. BIN
      desktopapp/img/apibrowser.png
  3. BIN
      desktopapp/img/browser.png
  4. BIN
      desktopapp/img/codetags.png
  5. BIN
      desktopapp/img/diagram.png
  6. BIN
      desktopapp/img/edit.png
  7. BIN
      desktopapp/img/monitor.png
  8. BIN
      desktopapp/img/smartphone.png
  9. BIN
      desktopapp/img/statistics.png
  10. BIN
      desktopapp/img/tablet.png
  11. +28
    -6
      desktopapp/index.html

+ 15
- 0
desktopapp/controllers.js

@ -32,16 +32,31 @@ angular.module('workApp', [])
id: $scope.projects[$scope.projects.length-1].id+1
};
};
$scope.editingIndex="";
$scope.editProject = function(index){
$scope.editingIndex=index;
$scope.editingProject=angular.copy($scope.projects[index]);
};
$scope.cancelEditProject = function(){
$scope.editingProject=false;
};
$scope.updateProject = function(){
$scope.projects[$scope.editingIndex]=angular.copy($scope.editingProject);
$scope.currentproject=angular.copy($scope.editingProject);
$scope.editingProject=false;
};
$scope.removeProject = function(index){
$scope.projects.splice(index, 1);
localStorage.setItem("w_l_projects", angular.toJson($scope.projects));
};
$scope.projectSelect = function(index){
$scope.btnStop();
$scope.currentproject=$scope.projects[index];
};
var interval;
$scope.currentStrike=0;
$scope.btnWork = function(){
$scope.editingProject=false;
$scope.working=true;
$scope.currentStrike=0;
interval = $interval(function(){

BIN
desktopapp/img/apibrowser.png

Before After
Width: 512  |  Height: 512  |  Size: 17 KiB

BIN
desktopapp/img/browser.png

Before After
Width: 512  |  Height: 512  |  Size: 12 KiB

BIN
desktopapp/img/codetags.png

Before After
Width: 512  |  Height: 512  |  Size: 12 KiB

BIN
desktopapp/img/diagram.png

Before After
Width: 512  |  Height: 512  |  Size: 12 KiB

BIN
desktopapp/img/edit.png

Before After
Width: 32  |  Height: 32  |  Size: 710 B

BIN
desktopapp/img/monitor.png

Before After
Width: 512  |  Height: 512  |  Size: 8.9 KiB

BIN
desktopapp/img/smartphone.png

Before After
Width: 512  |  Height: 512  |  Size: 11 KiB

BIN
desktopapp/img/statistics.png

Before After
Width: 512  |  Height: 512  |  Size: 14 KiB

BIN
desktopapp/img/tablet.png

Before After
Width: 512  |  Height: 512  |  Size: 13 KiB

+ 28
- 6
desktopapp/index.html

@ -51,16 +51,21 @@
<span class="card-title">Projects</span>
<div class="collection">
<a href="#!" ng-click="projectSelect($index)" ng-repeat="project in projects" class="collection-item avatar blue-grey lighten-4">
<div class="waves-effect waves-light btn-floating blue-grey lighten-2 right" ng-click="removeProject($index)">
<i class="material-icons"><img src="img/trash.png" class="o_trash_icon" /></i>
</div>
<img ng-src="img/coding/{{project.icon}}.png" class="circle"/>
<div class="right">
<div class="waves-effect waves-light btn-floating blue-grey lighten-2" ng-click="editProject($index)">
<i class="material-icons"><img src="img/edit.png" class="o_trash_icon" /></i>
</div>
<div class="waves-effect waves-light btn-floating blue-grey lighten-2" ng-click="removeProject($index)">
<i class="material-icons"><img src="img/trash.png" class="o_trash_icon" /></i>
</div>
</div>
<img ng-src="img/{{project.icon}}.png" class="circle"/>
<span class="title">{{project.title}}</span>
<p class="grey-text">{{project.totaltime | secondsToDateTime | date:'HH:mm:ss'}}</p>
</a>
</div>
</div>
<div class="card-action">
<div class="card-action" ng-show="!editingProject">
<div class="input-field col s6">
<input ng-model="newproject.title" id="newprojectname" type="text" class="validate">
<label for="newprojectname">New project name</label>
@ -71,12 +76,24 @@
</div>
<a ng-click="addNewProject()" class="waves-effect waves-light btn blue-grey lighten-1 right">Add new project</a>
</div>
<div class="card-action" ng-show="editingProject">
<div class="input-field col s6">
<input ng-model="editingProject.title" id="newprojectname" value=" " type="text" class="validate">
<label for="newprojectname">New project name</label>
</div>
<div class="input-field col s6">
<input ng-model="editingProject.icon" id="icon" value=" " type="text" class="validate">
<label for="icon">icon</label>
</div>
<a ng-click="cancelEditProject()" class="waves-effect waves-light btn red lighten-2">Cancel</a>
<a ng-click="updateProject()" class="waves-effect waves-light btn blue lighten-2 right">Update project</a>
</div>
</div>
<div ng-show="currentproject.title" class="card blue-grey lighten-4 col s12 m7 l7">
<div class="card-content">
<span class="card-title">
<img ng-src="img/coding/{{currentproject.icon}}.png" class="o_project_title_img"/>
<img ng-src="img/{{currentproject.icon}}.png" class="o_project_title_img"/>
{{currentproject.title}}
</span>
<p>
@ -94,6 +111,11 @@
<!--<a class="waves-effect waves-light btn deep-orange lighten-2">Stop working!</a>-->
</div>
</div>
<div ng-show="!currentproject.title" class="card blue-grey lighten-4 col s12 m7 l7" style="height: 200px;">
<span class="card-title">
Select a project
</span>
</div>
</div>

Loading…
Cancel
Save