Exemple #1
0
func PrintProjectLog(project *Project) {
	printHeader := func(ty *time.Time) {
		headerStr := "           "
		if time.Now().Day() == ty.Day() {
			headerStr = fmt.Sprintf("%s%s \n", headerStr, "Today")
		} else {
			headerStr = fmt.Sprintf("%s%.2d/%.2d \n", headerStr, ty.Month(), ty.Day())
		}

		fmt.Print(util.Color("37", headerStr))
	}

	printTotal := func(total int64) {
		if total != 0 {
			hm := HmFromD(time.Duration(total))
			fmt.Printf("%18s\n", util.Color("32", hm.String()))
		}
	}

	var day int
	var total int64
	fmt.Println(util.Color("33", "\n #  Hours  Date | Description"))

	for i, entry := range project.Entries() {
		if i > 30 {
			break
		}
		ty, err := entry.EndedTime()
		if err == nil && day != ty.Day() {
			printTotal(total)
			printHeader(ty)
			day = ty.Day()
			total = 0
		}
		total = total + *entry.Duration
		fmt.Printf("%2d %s  %.54s", i, entry.HoursMins(), entry.GetContent())
		if len(entry.GetContent()) > 54 {
			fmt.Print("...")
		}
		fmt.Println("")
	}

	printTotal(total)
	fmt.Println()
}
Exemple #2
0
func PrintProjectStatus(month int) {
	statues := make(chan *ProjectStatus)
	var counter int
	now := time.Now()
	scoppedMonth = month
	for _, project := range DB.Projects() {
		counter++
		project.Status(statues)
	}

	// if no projects nothing to do
	if counter == 0 {
		return
	}

	if scoppedMonth > int(now.Month()) {
		scoppedYear = now.Year() - 1
	} else {
		scoppedYear = now.Year()
	}

	fmt.Print(util.Color("33", "\n Hours   Clock"),
		" | ",
		util.Color("34", fmt.Sprintln("Projects -", time.Month(scoppedMonth), scoppedYear)),
		"\n")

	for i := 0; i < counter; i++ {
		status := <-statues
		p := status.Project
		name := p.GetName()
		hm := p.hoursMins()

		fmt.Print(util.Color("36", fmt.Sprintf("%s ", hm)))
		if status.OnClock {
			fmt.Print(util.Color("35", fmt.Sprintf(" %s ", status.timer)))
		} else {
			fmt.Print("        ")
		}
		fmt.Print(util.Color("34", fmt.Sprintf("  %s\n", name)))
	}
	fmt.Println("")

}