package com.example.citrusclient.views; import android.app.Activity; import android.content.Context; import android.graphics.Color; import android.os.Bundle; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.fragment.app.Fragment; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModelProvider; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.CheckBox; import android.widget.ImageButton; import com.example.citrusclient.Citrus; import com.example.citrusclient.R; import com.example.citrusclient.models.Book; import com.example.citrusclient.models.Schedule; import com.example.citrusclient.models.Todo; import com.example.citrusclient.viewmodels.BooksViewModel; import com.example.citrusclient.viewmodels.ScheduleViewModel; import com.example.citrusclient.viewmodels.TodosViewModel; import com.google.android.material.floatingactionbutton.FloatingActionButton; import java.time.LocalDate; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.time.format.DateTimeParseException; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; /** * A simple {@link Fragment} subclass. * Use the {@link OtherHomeFragment#newInstance} factory method to * create an instance of this fragment. */ public class OtherHomeFragment extends Fragment { // TODO: Rename parameter arguments, choose names that match // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER private static final String ARG_PARAM1 = "param1"; private static final String ARG_PARAM2 = "param2"; // TODO: Rename and change types of parameters private String mParam1; private String mParam2; public OtherHomeFragment() { // Required empty public constructor } /** * Use this factory method to create a new instance of * this fragment using the provided parameters. * * @param param1 Parameter 1. * @param param2 Parameter 2. * @return A new instance of fragment OtherHomeFragment. */ // TODO: Rename and change types and number of parameters public static OtherHomeFragment newInstance(String param1, String param2) { OtherHomeFragment fragment = new OtherHomeFragment(); Bundle args = new Bundle(); args.putString(ARG_PARAM1, param1); args.putString(ARG_PARAM2, param2); fragment.setArguments(args); return fragment; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); if (getArguments() != null) { mParam1 = getArguments().getString(ARG_PARAM1); mParam2 = getArguments().getString(ARG_PARAM2); } Citrus citrus = (Citrus)(getActivity().getApplication()); year = citrus.getCurYear(); month = citrus.getCurMonth(); day = citrus.getCurDay(); modo = "todoSchedule"; todosViewModel = new ViewModelProvider(this).get(TodosViewModel.class); scheduleViewModel = new ViewModelProvider(this).get(ScheduleViewModel.class); booksViewModel = new ViewModelProvider(this).get(BooksViewModel.class); } @Override public void onSaveInstanceState(@NonNull Bundle outState) { super.onSaveInstanceState(outState); outState.putInt("year", year); outState.putInt("month", month); outState.putInt("day", day); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment return inflater.inflate(R.layout.fragment_other_home, container, false); } BooksViewModel booksViewModel; TodosViewModel todosViewModel; ScheduleViewModel scheduleViewModel; private Book book; private List<Todo> todoList; private List<Schedule> scheduleList; LocalDate curDate; int year ; int month; int day; String modo; public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); Citrus citrus = (Citrus)(getActivity().getApplication()); String token = citrus.getToken(); String accountId = citrus.getCurLookingAccountId(); int curBookId = citrus.getCurLookingBookId(); System.out.println(token); curDate = LocalDate.of(year, month, day); todoList = new ArrayList<>(); scheduleList = new ArrayList<>(); int todoWidth = 140; int scheduleWidth = 170; int modoButtonWidth = 180; int wholeButtonWidth = 370; Button curDateButton = view.findViewById(R.id.date_button); curDateButton.setText(year + "年" + month + "月" + day + "日"); //TodoAdapter設定 RecyclerView todoRecyclerView = view.findViewById(R.id.my_todos_list); todoRecyclerView.setHasFixedSize(true); RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(view.getContext()); todoRecyclerView.setLayoutManager(layoutManager); MyOtherTodoshelfAdapter todoAdapter = new MyOtherTodoshelfAdapter(todoList, book, todosViewModel, getActivity()); todoRecyclerView.setAdapter(todoAdapter); todoAdapter.setItemWidth(dpToPx(todoWidth)); //ScheduleAdapter設定 RecyclerView scheduleRecyclerView = view.findViewById(R.id.my_schedule_list); scheduleRecyclerView.setHasFixedSize(true); RecyclerView.LayoutManager scheduleLayoutManager = new LinearLayoutManager(view.getContext()); scheduleRecyclerView.setLayoutManager(scheduleLayoutManager); MyOtherScheduleshelfAdapter scheduleAdapter = new MyOtherScheduleshelfAdapter(scheduleList, book, curDate, getActivity()); scheduleRecyclerView.setAdapter(scheduleAdapter); scheduleAdapter.setItemWidth(dpToPx(scheduleWidth)); Button dateButton = view.findViewById(R.id.date_button); dateButton.setOnClickListener(v -> { ((MainActivity) getActivity()).showFragment(new OtherCalendarFragment(year, month)); }); Button modoTodoButton = view.findViewById(R.id.modo_todo_button); Button modoScheduleButton = view.findViewById(R.id.modo_schedule_button); View verticalLine = view.findViewById(R.id.vertical_line); // IDを指定して取得 //上のTodoButtonを押したときTodoだけを表示 modoTodoButton.setOnClickListener(v -> { ViewGroup.LayoutParams todoButtonParams = modoTodoButton.getLayoutParams(); ViewGroup.LayoutParams todoRecyclerViewLayoutParams = todoRecyclerView.getLayoutParams(); if(modo == "todoSchedule") { modoScheduleButton.setVisibility(View.GONE); scheduleRecyclerView.setVisibility(View.GONE); todoButtonParams.width = dpToPx(wholeButtonWidth); // 幅を全体に modoTodoButton.setLayoutParams(todoButtonParams); todoRecyclerViewLayoutParams.width = dpToPx(wholeButtonWidth); todoRecyclerView.setLayoutParams(todoRecyclerViewLayoutParams); todoAdapter.setItemWidth(dpToPx(330)); verticalLine.setVisibility(View.GONE); modo = "todo"; } else if(modo == "todo"){ todoButtonParams.width = dpToPx(modoButtonWidth); // 幅を全体に modoTodoButton.setLayoutParams(todoButtonParams); todoRecyclerViewLayoutParams.width = dpToPx(modoButtonWidth); todoRecyclerView.setLayoutParams(todoRecyclerViewLayoutParams); modoScheduleButton.setVisibility(View.VISIBLE); scheduleRecyclerView.setVisibility(View.VISIBLE); todoAdapter.setItemWidth(dpToPx(todoWidth)); verticalLine.setVisibility(View.VISIBLE); modo = "todoSchedule"; } }); //上のScheduleButtonを押したときScheduleだけを表示 modoScheduleButton.setOnClickListener(v -> { ViewGroup.LayoutParams scheuleButtonParams = modoScheduleButton.getLayoutParams(); ViewGroup.LayoutParams scheduleRecyclerViewLayoutParams = scheduleRecyclerView.getLayoutParams(); if(modo == "todoSchedule") { modoTodoButton.setVisibility(View.GONE); todoRecyclerView.setVisibility(View.GONE); scheuleButtonParams.width = dpToPx(wholeButtonWidth); // 幅を全体に modoScheduleButton.setLayoutParams(scheuleButtonParams); scheduleRecyclerViewLayoutParams.width = dpToPx(wholeButtonWidth); scheduleRecyclerView.setLayoutParams(scheduleRecyclerViewLayoutParams); scheduleAdapter.setItemWidth(dpToPx(360)); verticalLine.setVisibility(View.GONE); modo = "schedule"; } else if(modo == "schedule"){ scheuleButtonParams.width = dpToPx(modoButtonWidth); // 幅を全体に modoScheduleButton.setLayoutParams(scheuleButtonParams); scheduleRecyclerViewLayoutParams.width = dpToPx(modoButtonWidth); scheduleRecyclerView.setLayoutParams(scheduleRecyclerViewLayoutParams); modoTodoButton.setVisibility(View.VISIBLE); todoRecyclerView.setVisibility(View.VISIBLE); scheduleAdapter.setItemWidth(dpToPx(scheduleWidth)); verticalLine.setVisibility(View.VISIBLE); modo = "todoSchedule"; } }); ImageButton prevBotton = view.findViewById(R.id.prev_day_button); prevBotton.setOnClickListener(v -> { curDate = curDate.minusDays(1); year = curDate.getYear(); month = curDate.getMonthValue(); day = curDate.getDayOfMonth(); curDateButton.setText(year + "年" + month + "月" + day + "日"); scheduleList.clear(); scheduleAdapter.updateCurDate(curDate); clearTodoSchedule(todoAdapter, scheduleAdapter); updateTodoSchedule(book); }); ImageButton nextBotton = view.findViewById(R.id.next_day_button); nextBotton.setOnClickListener(v -> { curDate = curDate.plusDays(1); year = curDate.getYear(); month = curDate.getMonthValue(); day = curDate.getDayOfMonth(); curDateButton.setText(year + "年" + month + "月" + day + "日"); scheduleAdapter.updateCurDate(curDate); clearTodoSchedule(todoAdapter, scheduleAdapter); updateTodoSchedule(book); }); ImageButton backButton = view.findViewById(R.id.back_button); backButton.setOnClickListener(v -> { ((MainActivity) getActivity()).backFragment(); }); booksViewModel.loadBook(accountId, token, curBookId); // todosViewModel.loadTodosByDay(accountId, curBookId, year, month, day, token); // scheduleViewModel.updateSchedulesByDayAndBookId(accountId, year, month, day, token, curBookId); booksViewModel.getBook().observe(getViewLifecycleOwner(), new Observer<Book>() { @Override public void onChanged(Book book) { clearTodoSchedule(todoAdapter, scheduleAdapter); updateTodoSchedule(book); } }); todosViewModel.getTodosByDayLiveData().observe(getViewLifecycleOwner(), new Observer<HashMap<Integer, Todo>>() { @Override public void onChanged(HashMap<Integer, Todo> idTodoHashMap) { if(idTodoHashMap != null) { todoList = new ArrayList<>(idTodoHashMap.values()); todoAdapter.setTodos(todoList, book); } else { todoAdapter.setTodos(todoList, book); } } }); scheduleViewModel.getSchedulesByDay().observe(getViewLifecycleOwner(), new Observer<HashMap<Integer, Schedule>>() { @Override public void onChanged(HashMap<Integer, Schedule> idScheduleHashMap) { if(idScheduleHashMap != null) { scheduleList = new ArrayList<>(idScheduleHashMap.values()); scheduleAdapter.setSchedules(scheduleList, book); } else { scheduleList = new ArrayList<>(); scheduleAdapter.setSchedules(scheduleList, book); } } }); } private void updateTodoSchedule(Book book) { Citrus citrus = (Citrus)(getActivity().getApplication()); String token = citrus.getToken(); String accountId = citrus.getCurLookingAccountId(); int curBookId = citrus.getCurLookingBookId(); if (book != null) { this.book = book; } todosViewModel.loadTodosByDay(accountId, curBookId, year, month, day, token); scheduleViewModel.updateSchedulesByDay(accountId, year, month, day, token); } private void clearTodoSchedule(MyOtherTodoshelfAdapter todoAdapter, MyOtherScheduleshelfAdapter scheduleAdapter) { todoList.clear(); todoAdapter.setTodos(todoList, book); scheduleList.clear(); scheduleAdapter.setSchedules(scheduleList, book); } // dp を px に変換するためのメソッド private int dpToPx(int dp) { return Math.round(dp * getResources().getDisplayMetrics().density); } @Override public void onStop() { super.onStop(); booksViewModel.getBookLiveData().removeObservers(getViewLifecycleOwner()); } } class MyOtherTodoshelfAdapter extends RecyclerView.Adapter<MyOtherTodoshelfAdapter.MyTodoViewHolder> { private List<Todo> todoList; private Book book; private TodosViewModel todosViewModel; private Context context; private int itemWidth; // アイテムの幅を保持 MyOtherTodoshelfAdapter(List<Todo> todos, Book book, TodosViewModel todosViewModel, Context context) { this.todoList = todos; this.todosViewModel = todosViewModel; this.book = book; this.context = context; } public void setTodos(List<Todo> todos ,Book book) { this.todoList = todos; this.book = book; sortTodosById(); notifyDataSetChanged(); } @NonNull @Override public MyTodoViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.a_todo, parent, false); return new MyTodoViewHolder(view); } @Override public void onBindViewHolder(@NonNull MyTodoViewHolder holder, int position) { // Activity activity = (Activity) context; // Citrus citrus = (Citrus)(activity.getApplication()); // String token = citrus.getToken(); // String accountId = citrus.getCurLookingAccountId(); // アイテムの幅を設定 ViewGroup.LayoutParams params = holder.todoButton.getLayoutParams(); params.width = itemWidth; // 動的に設定した幅を使用 holder.todoButton.setLayoutParams(params); Todo todoData = this.todoList.get(position); holder.todoButton.setText(todoData.getTitle()); holder.todoCheckBox.setChecked(todoData.getCheck()); holder.todoCheckBox.setEnabled(false); int red = Integer.parseInt(book.getColor().substring(1, 3), 16); int green = Integer.parseInt(book.getColor().substring(3, 5), 16); int blue = Integer.parseInt(book.getColor().substring(5, 7), 16); holder.todoButton.setBackgroundColor(Color.rgb(red, green, blue)); holder.todoButton.setTextColor(Color.rgb(255 - red, 255 - green, 255 - blue)); // holder.todoButton.setOnClickListener(v -> { // ((MainActivity) activity).showFragment(new CreateTodoFragment(todoData, book)); // }); // // holder.todoCheckBox.setOnCheckedChangeListener((buttonView, isChecked) -> { // // チェック状態が変更された時の処理を記述 // if (isChecked) { // // チェックされた時の処理 // todosViewModel.setCheck(accountId, book.getBookId(), todoData.getYear(), todoData.getMonth(), todoData.getDay(), todoData.getTodoId(), true, token); // } else { // // チェックが外された時の処理 // todosViewModel.setCheck(accountId, book.getBookId(), todoData.getYear(), todoData.getMonth(), todoData.getDay(), todoData.getTodoId(), false, token); // } // }); } private void sortTodosById() { Collections.sort(todoList, new Comparator<Todo>() { @Override public int compare(Todo todo1, Todo todo2) { int bookComparison = Integer.compare(todo1.getBookId(), todo2.getBookId()); if (bookComparison != 0) { return bookComparison; // bookIdでの比較 } return Integer.compare(todo1.getTodoId(), todo2.getTodoId()); // 同じbookIdの場合、todoIdで比較 } }); } public void setItemWidth(int width) { this.itemWidth = width; notifyDataSetChanged(); // 幅が変更されたことを通知 } @Override public int getItemCount() { return todoList.size(); } static class MyTodoViewHolder extends RecyclerView.ViewHolder { Button todoButton; CheckBox todoCheckBox; public MyTodoViewHolder(@NonNull View itemView) { super(itemView); todoButton = itemView.findViewById(R.id.todo_button); todoCheckBox = itemView.findViewById(R.id.todo_checkBox); } } } class MyOtherScheduleshelfAdapter extends RecyclerView.Adapter<MyOtherScheduleshelfAdapter.MyScheduleViewHolder> { private List<Schedule> scheduleList; Book book; private Context context; private LocalDate curDate; private int itemWidth; // アイテムの幅を保持 MyOtherScheduleshelfAdapter(List<Schedule> schedules, Book book, LocalDate curDate, Context context) { this.scheduleList = schedules; this.book = book; this.curDate = curDate; this.context = context; } public void setSchedules(List<Schedule> schedules, Book book) { scheduleList = schedules; this.book = book; sortScheduleByTime(); notifyDataSetChanged(); } @NonNull @Override public MyScheduleViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.a_schedule, parent, false); return new MyScheduleViewHolder(view); } @Override public void onBindViewHolder(@NonNull MyScheduleViewHolder holder, int position) { // Activity activity = (Activity) context; // アイテムの幅を設定 ViewGroup.LayoutParams params = holder.scheduleButton.getLayoutParams(); params.width = itemWidth; // 動的に設定した幅を使用 holder.scheduleButton.setLayoutParams(params); int red = 169; int green = 169; int blue = 169; Schedule scheduleData = this.scheduleList.get(position); holder.scheduleButton.setText(scheduleData.getTitle()); holder.scheduleButton.setText(scheduleData.getTitle() + "\n" + extractionTime(scheduleData.getStartTime(), curDate) + " ~ " + extractionTime(scheduleData.getEndTime(), curDate)); if(book.getBookId() == scheduleData.getBookId()) { red = Integer.parseInt(book.getColor().substring(1, 3), 16); green = Integer.parseInt(book.getColor().substring(3, 5), 16); blue = Integer.parseInt(book.getColor().substring(5, 7), 16); } holder.scheduleButton.setBackgroundColor(Color.rgb(red, green, blue)); holder.scheduleButton.setTextColor(Color.rgb(255 - red, 255 - green, 255 - blue)); // holder.scheduleButton.setOnClickListener(v -> { // ((MainActivity) activity).showFragment(new CreateScheduleFragment(scheduleData, book)); // }); } private void sortScheduleByTime() { Collections.sort(scheduleList, new Comparator<Schedule>() { @Override public int compare(Schedule schedule1, Schedule schedule2) { long start = convertTimeInteger(schedule1.getStartTime()); long end = convertTimeInteger(schedule2.getStartTime()); return Long.compare(start, end); } }); notifyDataSetChanged(); // データ変更をアダプタに通知 } private static long convertTimeInteger(String scheduleTime) { try { // フォーマッタを定義 DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm"); // StringをLocalDateTimeに変換 LocalDateTime dateTime = LocalDateTime.parse(scheduleTime, formatter); // 年、月、日、時、分を抽出 long year = dateTime.getYear(); long month = dateTime.getMonthValue(); long day = dateTime.getDayOfMonth(); long hour = dateTime.getHour(); long minute = dateTime.getMinute(); // 必要に応じて整数を組み合わせる(例: YYYYMMDDHHMM) long result = year *100000000 +month * 1000000 + day * 10000 + hour * 100 + minute; return result; } catch (DateTimeParseException e) { e.printStackTrace(); return -1; // エラーが発生した場合は-1を返す } } private static String extractionTime(String scheduleTime, LocalDate curDate) { int year = curDate.getYear(); int month = curDate.getMonthValue(); int day = curDate.getDayOfMonth(); long yearMonthDay = year * 10000 + month * 100 + day; long scheduleYMD = convertTimeInteger(scheduleTime) / 10000; // long scheduleYearMonth = extractUpperDigits(convertTimeInteger(scheduleTime), 8); if(yearMonthDay > scheduleYMD) { return "00:00"; } else if(yearMonthDay < scheduleYMD) { return "23:59"; } else { return scheduleTime.substring(scheduleTime.length() - 5); } } // public static long extractUpperDigits(long number, int digitCount) { // // 10の累乗を計算 // long divisor = (long) Math.pow(10, String.valueOf(number).length() - digitCount); // return number / divisor; // 上位の桁を抽出 // } // curDateを更新するメソッドを追加 public void updateCurDate(LocalDate newCurDate) { this.curDate = newCurDate; notifyDataSetChanged(); // 必要に応じてアダプターをリフレッシュ } public void setItemWidth(int width) { this.itemWidth = width; notifyDataSetChanged(); // 幅が変更されたことを通知 } @Override public int getItemCount() { return scheduleList.size(); } static class MyScheduleViewHolder extends RecyclerView.ViewHolder { Button scheduleButton; public MyScheduleViewHolder(@NonNull View itemView) { super(itemView); scheduleButton = itemView.findViewById(R.id.schedule_button); } } }