Ejemplo n.º 1
0
        /// <summary>
        /// Will add time entry to corresponding parent or make new parent if required
        /// </summary>
        /// <param name="vm"></param>
        public void AddTimeEntryToList(TimeEntryViewModel vm)
        {
            //correspodning date collection
            var collection = TimeEntries?.FirstOrDefault(x => x.Date.Date.Equals(vm.StartTime.Date));

            if (collection == null)
            {
                collection = new TimeEntryListElementOverservableCollection(vm.StartTime.Date.Date);
            }


            //check if valid parent ticket exists and place child inside or make new one and place child inside if does not exist
            foreach (var entryParent in collection)
            {
                if (entryParent.Ticket != null && ((entryParent as TimeEntryParent)?.BillCustomer ==
                                                   vm.BillCustomer) &&
                    (string.IsNullOrEmpty(entryParent.Ticket?.uri) &&
                     entryParent.Ticket.ProjectURI.Equals(vm.Ticket?.ProjectURI) ||
                     (!string.IsNullOrEmpty(entryParent.Ticket?.uri) &&
                      entryParent.Ticket.uri.Equals(vm?.Ticket?.uri))))
                {
                    var castedParent = (entryParent as TimeEntryParent);
                    vm.parent = castedParent;
                    vm.OnTicketRequiresReorg += OnTicketRequiresReorg;
                    castedParent?.Entries.Add(vm);
                    //add new item to viewable list if the parent is already expanded
                    if (collection.Contains(castedParent.Entries.FirstOrDefault()))
                    {
                        collection.Insert(collection.IndexOf(castedParent) + 1, vm);
                    }

                    castedParent?.OnPropertyChanged(null);
                    return;
                }
            }

            //No valid parent yest on list
            //create new parent
            var newParent = new TimeEntryParent();

            newParent.Date = DateTime.Today;
            //add new time entry as the first item in the new parent's Entries list
            newParent.Entries = new List <TimeEntryViewModel>()
            {
                vm
            };
            //set the ticket for the parent
            newParent.Ticket = vm.Ticket;
            //set the parent of the entry to the newly created parent
            vm.parent = newParent;
            //set ticket changed delegate
            vm.OnTicketRequiresReorg += OnTicketRequiresReorg;

            // add to list
            TimeEntries.First().Insert(0, newParent);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Start or stop current job
 /// </summary>
 public void TimerClicked()
 {
     if (!CurrentTimeEntry.IsRunning)
     {
         CurrentTimeEntry.StartTimer();
     }
     else
     {
         CurrentTimeEntry.StopTimer();
         AddTimeEntryToList(CurrentTimeEntry);
         _currentTimeEntry = new TimeEntryViewModel();
         OnPropertyChanged(nameof(CurrentTimeEntry));
         CurrentTimeEntry.OnPropertyChanged(nameof(TimeEntryViewModel.Comments));
     }
 }
Ejemplo n.º 3
0
        private void OnTicketRequiresReorg(TimeEntryViewModel vm)
        {
            var collectionForDate = TimeEntries?.FirstOrDefault(x => x.Date.Date.Equals(vm?.StartTime.Date));

            //remove from list if item is being shown currently
            if (collectionForDate != null && collectionForDate.Contains(vm))
            {
                collectionForDate?.Remove(vm);
            }

            //detach from current parent
            if (vm.parent.Entries.Contains(vm))
            {
                vm.parent.Entries.Remove(vm);//remove from parent
                if (!vm.parent.Entries.Any())
                {
                    collectionForDate?.Remove(vm?.parent); //remove parent from view if no children left
                }
            }


            //place on list at correct location
            AddTimeEntryToList(vm);
        }
Ejemplo n.º 4
0
 public void ContinueRunningTimer(TimeEntryViewModel vm)
 {
     this.CurrentTimeEntry = vm;
 }