-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiário de Estudos
executable file
·66 lines (52 loc) · 1.74 KB
/
Diário de Estudos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env ruby
require 'io/console'
require_relative 'lib/options'
require_relative 'lib/table_file'
require_relative 'lib/study_item'
require_relative 'lib/study_diary_methods'
include Options
include StudyDiaryMethods
REGISTER = '1'
VIEW_NOT_CONCLUDED = '2'
SEARCH = '3'
LIST_BY_CATEGORY = '4'
DELETE = '5'
MARK_AS_CONCLUDED = '6'
VIEW_CONCLUDED = '7'
OPTIONS = '8'
EXIT = '9'
$stdout.clear_screen
TableFile.new unless TableFile.exist?
puts 'Bem-vindo ao Diário de Estudos, seu companheiro para estudar!'
loop do
puts <<~MENU
[#{REGISTER}] Cadastrar um item para estudar
[#{VIEW_NOT_CONCLUDED}] Ver todos os itens não concluídos
[#{SEARCH}] Buscar um item de estudo
[#{LIST_BY_CATEGORY}] Listar por categoria
[#{DELETE}] Apagar um item
[#{MARK_AS_CONCLUDED}] Marcar um item como concluído
[#{VIEW_CONCLUDED}] Ver todos os itens concluídos
[#{OPTIONS}] Opções
[#{EXIT}] Sair
MENU
print 'Escolha uma opção: '
option = gets.chomp
case option
when REGISTER then StudyItem.register
when VIEW_NOT_CONCLUDED then StudyItem.view_not_concluded
when SEARCH then StudyItem.search
when LIST_BY_CATEGORY then StudyItem.list_by_category
when DELETE then StudyItem.delete
when MARK_AS_CONCLUDED then StudyItem.mark_as_concluded
when VIEW_CONCLUDED then StudyItem.view_concluded
when OPTIONS then options
when EXIT then break
else puts 'Opção inválida'
end
any_key_to_continue unless option == OPTIONS
$stdout.clear_screen
puts '============================================================='
end
puts 'Obrigado por usar o Diário de Estudos', ''
sleep(0.5)