added note ownerId
This commit is contained in:
parent
e9da6be78d
commit
db003f82d7
2 changed files with 310 additions and 291 deletions
|
@ -11,18 +11,16 @@ import java.util.Date;
|
||||||
/**
|
/**
|
||||||
* Created by JERLocal on 7/1/2016.
|
* Created by JERLocal on 7/1/2016.
|
||||||
*/
|
*/
|
||||||
public class Note implements Parcelable{
|
public class Note implements Parcelable {
|
||||||
|
|
||||||
protected int likes;
|
protected int likes;
|
||||||
protected ArrayList<String> tags;
|
protected ArrayList<String> tags;
|
||||||
protected float lat, lon;
|
protected float lat, lon;
|
||||||
protected String id, address, title, body, timestamp, avatar;
|
protected String id, address, title, body, timestamp, avatar, ownerId;
|
||||||
protected boolean isPublic;
|
protected boolean isPublic;
|
||||||
|
|
||||||
|
|
||||||
|
public Note(String id, float lat, float lon, String address, String title, String body, String timestamp, boolean isPublic, int likes, String avatar, String ownerId, ArrayList<String> tags) {
|
||||||
|
|
||||||
public Note(String id, float lat, float lon, String address, String title, String body, String timestamp, boolean isPublic, int likes,String avatar, ArrayList<String> tags) {
|
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.lat = lat;
|
this.lat = lat;
|
||||||
this.lon = lon;
|
this.lon = lon;
|
||||||
|
@ -33,12 +31,12 @@ public class Note implements Parcelable{
|
||||||
this.timestamp = timestamp;
|
this.timestamp = timestamp;
|
||||||
this.isPublic = isPublic;
|
this.isPublic = isPublic;
|
||||||
this.likes = likes;
|
this.likes = likes;
|
||||||
this.tags = tags;
|
this.tags = tags;
|
||||||
this.avatar = avatar;
|
this.avatar = avatar;
|
||||||
|
this.ownerId = ownerId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
protected Note(Parcel in) {
|
protected Note(Parcel in) {
|
||||||
likes = in.readInt();
|
likes = in.readInt();
|
||||||
tags = in.createStringArrayList();
|
tags = in.createStringArrayList();
|
||||||
|
@ -51,6 +49,7 @@ public class Note implements Parcelable{
|
||||||
body = in.readString();
|
body = in.readString();
|
||||||
timestamp = in.readString();
|
timestamp = in.readString();
|
||||||
avatar = in.readString();
|
avatar = in.readString();
|
||||||
|
ownerId = in.readString();
|
||||||
isPublic = in.readByte() != 0;
|
isPublic = in.readByte() != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,18 +65,21 @@ public class Note implements Parcelable{
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Note{" +
|
return "Note{" +
|
||||||
"id=" + id +
|
"id=" + id +
|
||||||
", lat=" + lat +
|
", lat=" + lat +
|
||||||
", lon=" + lon +
|
", lon=" + lon +
|
||||||
|
|
||||||
", address='" + address + '\'' +
|
", address='" + address + '\'' +
|
||||||
", title='" + title + '\'' +
|
", title='" + title + '\'' +
|
||||||
", body='" + body + '\'' +
|
", body='" + body + '\'' +
|
||||||
", timestamp=" + timestamp +
|
", timestamp=" + timestamp +
|
||||||
", isPublic=" + isPublic +
|
", isPublic=" + isPublic +
|
||||||
", avatar=" + avatar+
|
", avatar=" + avatar +
|
||||||
|
", ownerId=" + ownerId +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,8 +148,9 @@ public class Note implements Parcelable{
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getLocationAndTime() {
|
public String getLocationAndTime() {
|
||||||
return getTimestamp()+" at "+ getAddress();
|
return getTimestamp() + " at " + getAddress();
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getLikes() {
|
public int getLikes() {
|
||||||
return likes;
|
return likes;
|
||||||
}
|
}
|
||||||
|
@ -163,9 +166,23 @@ public class Note implements Parcelable{
|
||||||
public void setTags(ArrayList<String> tags) {
|
public void setTags(ArrayList<String> tags) {
|
||||||
this.tags = tags;
|
this.tags = tags;
|
||||||
}
|
}
|
||||||
public String getAvatar() {return avatar;}
|
|
||||||
|
|
||||||
public void setAvatar(String avatar) {this.avatar = avatar; }
|
public String getAvatar() {
|
||||||
|
return avatar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAvatar(String avatar) {
|
||||||
|
this.avatar = avatar;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getOwnerId() {
|
||||||
|
return ownerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOwnerId(String ownerId) {
|
||||||
|
this.ownerId = ownerId;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int describeContents() {
|
public int describeContents() {
|
||||||
|
@ -184,6 +201,7 @@ public class Note implements Parcelable{
|
||||||
dest.writeString(body);
|
dest.writeString(body);
|
||||||
dest.writeString(timestamp);
|
dest.writeString(timestamp);
|
||||||
dest.writeString(avatar);
|
dest.writeString(avatar);
|
||||||
|
dest.writeString(ownerId);
|
||||||
dest.writeByte((byte) (isPublic ? 1 : 0));
|
dest.writeByte((byte) (isPublic ? 1 : 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,173 +47,173 @@ import java.util.List;
|
||||||
*/
|
*/
|
||||||
public class PersonalFragment extends Fragment {
|
public class PersonalFragment extends Fragment {
|
||||||
|
|
||||||
protected ListView noteList;
|
protected ListView noteList;
|
||||||
private final int FINE_PERM = 0;
|
private final int FINE_PERM = 0;
|
||||||
private final String BASE_URL = "http://thesocialnotework-api.appspot.com/api";
|
private final String BASE_URL = "http://thesocialnotework-api.appspot.com/api";
|
||||||
private GPSUtils gpsUtils;
|
private GPSUtils gpsUtils;
|
||||||
private List<Note> listOfNotes;
|
private List<Note> listOfNotes;
|
||||||
private ListAdapter noteListAdapter;
|
private ListAdapter noteListAdapter;
|
||||||
private String userId;
|
private String userId;
|
||||||
private final String TAG = "[TSN/PersonalFragment]";
|
private final String TAG = "[TSN/PersonalFragment]";
|
||||||
private MainActivity activity;
|
private MainActivity activity;
|
||||||
|
|
||||||
public PersonalFragment() {
|
public PersonalFragment() {
|
||||||
// Required empty public constructor
|
// Required empty public constructor
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||||||
Bundle savedInstanceState) {
|
Bundle savedInstanceState) {
|
||||||
View view = inflater.inflate(R.layout.fragment_personal, container, false);
|
View view = inflater.inflate(R.layout.fragment_personal, container, false);
|
||||||
// Inflate the layout for this fragment
|
// Inflate the layout for this fragment
|
||||||
activity = (MainActivity) getActivity();
|
activity = (MainActivity) getActivity();
|
||||||
Bundle bundle = getArguments();
|
Bundle bundle = getArguments();
|
||||||
this.userId = activity.getUserId();
|
this.userId = activity.getUserId();
|
||||||
Log.d(TAG, "onCreateView: userID: " + userId);
|
Log.d(TAG, "onCreateView: userID: " + userId);
|
||||||
//check for permission
|
//check for permission
|
||||||
ActivityCompat.requestPermissions(activity, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, FINE_PERM);
|
ActivityCompat.requestPermissions(activity, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, FINE_PERM);
|
||||||
|
|
||||||
|
|
||||||
this.noteList = (ListView) view.findViewById(R.id.ps_list_listview);
|
this.noteList = (ListView) view.findViewById(R.id.ps_list_listview);
|
||||||
gpsUtils = activity.getGPSUtils();
|
gpsUtils = activity.getGPSUtils();
|
||||||
gpsUtils.getLocation();
|
gpsUtils.getLocation();
|
||||||
listOfNotes = new ArrayList<>();
|
listOfNotes = new ArrayList<>();
|
||||||
noteListAdapter = new ListAdapter(getContext(), listOfNotes);
|
noteListAdapter = new ListAdapter(getContext(), listOfNotes);
|
||||||
noteList.setAdapter(noteListAdapter);
|
noteList.setAdapter(noteListAdapter);
|
||||||
noteList.setOnItemClickListener(new ItemClickedListener());
|
noteList.setOnItemClickListener(new ItemClickedListener());
|
||||||
Utils.showLoadingDialog(getActivity(), "Fetching..", "getting your notes");
|
Utils.showLoadingDialog(getActivity(), "Fetching..", "getting your notes");
|
||||||
getAllNotes();
|
getAllNotes();
|
||||||
|
|
||||||
//https://thesocialnotework-api.appspot.com/api/note/all?uid=<USER_ID>
|
//https://thesocialnotework-api.appspot.com/api/note/all?uid=<USER_ID>
|
||||||
// The New "Add Button"
|
// The New "Add Button"
|
||||||
FloatingActionButton fab = (FloatingActionButton) view.findViewById(R.id.fab);
|
FloatingActionButton fab = (FloatingActionButton) view.findViewById(R.id.fab);
|
||||||
fab.setOnClickListener(addNewNoteDialog);
|
fab.setOnClickListener(addNewNoteDialog);
|
||||||
|
|
||||||
return view;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onAttach(Context context) {
|
|
||||||
super.onAttach(context);
|
|
||||||
Utils.dismissLoadingDialog();
|
|
||||||
Log.d(TAG, "onAttach");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onDetach() {
|
|
||||||
super.onDetach();
|
|
||||||
Utils.dismissLoadingDialog();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void getAllNotes() {
|
|
||||||
Log.d(TAG, "url: " + BASE_URL + "/note/all?uid=" + userId);
|
|
||||||
VolleyUtilSingleton.getInstance(getActivity()).get(BASE_URL + "/note/all?uid=" + userId, getNotesSuccessListener, Utils.genericErrorListener);
|
|
||||||
}
|
|
||||||
|
|
||||||
private View.OnClickListener addNewNoteDialog = new View.OnClickListener() {
|
|
||||||
public void onClick(View v) {
|
|
||||||
|
|
||||||
//create and configure dialog
|
|
||||||
final Dialog dialog = new Dialog(getActivity());
|
|
||||||
dialog.setContentView(R.layout.note_view_full);
|
|
||||||
dialog.setTitle("New Note");
|
|
||||||
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
|
|
||||||
lp.copyFrom(dialog.getWindow().getAttributes());
|
|
||||||
lp.width = WindowManager.LayoutParams.MATCH_PARENT;
|
|
||||||
lp.height = WindowManager.LayoutParams.MATCH_PARENT;
|
|
||||||
dialog.setCancelable(false);
|
|
||||||
dialog.show();
|
|
||||||
dialog.getWindow().setAttributes(lp);
|
|
||||||
|
|
||||||
|
|
||||||
//get note_view_full layout elements
|
|
||||||
final Switch permissionSwitch = (Switch) dialog.findViewById(R.id.nvf_note_permission);
|
|
||||||
final EditText newTitle = (EditText) dialog.findViewById(R.id.nvf_note_title);
|
|
||||||
final EditText newBody = (EditText) dialog.findViewById(R.id.nvf_note_content);
|
|
||||||
Button saveBtn = (Button) dialog.findViewById(R.id.nvf_note_submit_btn);
|
|
||||||
Button cancelBtn = (Button) dialog.findViewById(R.id.nvf_note_cancel_btn);
|
|
||||||
|
|
||||||
cancelBtn.setOnClickListener(new View.OnClickListener() {
|
|
||||||
public void onClick(View v) {
|
|
||||||
dialog.dismiss();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
saveBtn.setOnClickListener(new View.OnClickListener() {
|
|
||||||
public void onClick(View v) {
|
|
||||||
|
|
||||||
//title too short
|
|
||||||
if (newTitle.getText().length() == 0) {
|
|
||||||
Toast toast = Toast.makeText(getActivity(), "Title too short.", Toast.LENGTH_LONG);
|
|
||||||
toast.show();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
//title too long
|
|
||||||
if (newTitle.getText().length() > 20) {
|
|
||||||
Toast toast = Toast.makeText(getActivity(), "Title too long.\n Use up to 20 notes.", Toast.LENGTH_LONG);
|
|
||||||
toast.show();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
//volley post
|
|
||||||
final JSONObject noteJson = new JSONObject();
|
|
||||||
try {
|
|
||||||
|
|
||||||
//TODO need to get owner id from login screen
|
|
||||||
noteJson.put("owner_id", userId);
|
|
||||||
noteJson.put("title", newTitle.getText());
|
|
||||||
noteJson.put("lat", gpsUtils.getLatitude());
|
|
||||||
noteJson.put("lng", gpsUtils.getLongitude());
|
|
||||||
noteJson.put("address", gpsUtils.getAddress());
|
|
||||||
noteJson.put("body", newBody.getText());
|
|
||||||
noteJson.put("is_public", permissionSwitch.isChecked());
|
|
||||||
// noteJson.put("tags",);
|
|
||||||
Log.d(TAG, "Json: " + noteJson.toString());
|
|
||||||
|
|
||||||
|
|
||||||
} catch (Exception e) {
|
|
||||||
Log.d(TAG, "saveBtn: " + e.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
//send request and close dialog
|
|
||||||
VolleyUtilSingleton.getInstance(getActivity()).post(BASE_URL + "/note/upsert", noteJson, newNoteSuccessListener, Utils.genericErrorListener);
|
|
||||||
dialog.dismiss();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
//change text of switch according to state.
|
|
||||||
permissionSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
|
||||||
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
|
||||||
if (isChecked)
|
|
||||||
permissionSwitch.setText(R.string.nvf_public_label);
|
|
||||||
else
|
|
||||||
permissionSwitch.setText(R.string.nvf_private_label);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
return view;
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
|
||||||
//response listener for adding new note
|
|
||||||
Response.Listener<JSONObject> newNoteSuccessListener = new Response.Listener<JSONObject>() {
|
|
||||||
@Override
|
@Override
|
||||||
public void onResponse(JSONObject response) {
|
public void onAttach(Context context) {
|
||||||
Log.d(TAG, "newNoteSuccess: response - " + response.toString());
|
super.onAttach(context);
|
||||||
try {
|
Utils.dismissLoadingDialog();
|
||||||
Date time = new Date();
|
Log.d(TAG, "onAttach");
|
||||||
JSONObject noteObject = response.getJSONObject("note");
|
|
||||||
time.setTime(noteObject.getLong("created_at"));
|
|
||||||
addNoteFromJsonObj(noteObject, time);
|
|
||||||
noteList.setAdapter(noteListAdapter);
|
|
||||||
} catch (Exception e) {
|
|
||||||
Log.e(TAG, "newNoteSuccess:" + e.getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
@Override
|
||||||
|
public void onDetach() {
|
||||||
|
super.onDetach();
|
||||||
|
Utils.dismissLoadingDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void getAllNotes() {
|
||||||
|
Log.d(TAG, "url: " + BASE_URL + "/note/all?uid=" + userId);
|
||||||
|
VolleyUtilSingleton.getInstance(getActivity()).get(BASE_URL + "/note/all?uid=" + userId, getNotesSuccessListener, Utils.genericErrorListener);
|
||||||
|
}
|
||||||
|
|
||||||
|
private View.OnClickListener addNewNoteDialog = new View.OnClickListener() {
|
||||||
|
public void onClick(View v) {
|
||||||
|
|
||||||
|
//create and configure dialog
|
||||||
|
final Dialog dialog = new Dialog(getActivity());
|
||||||
|
dialog.setContentView(R.layout.note_view_full);
|
||||||
|
dialog.setTitle("New Note");
|
||||||
|
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
|
||||||
|
lp.copyFrom(dialog.getWindow().getAttributes());
|
||||||
|
lp.width = WindowManager.LayoutParams.MATCH_PARENT;
|
||||||
|
lp.height = WindowManager.LayoutParams.MATCH_PARENT;
|
||||||
|
dialog.setCancelable(false);
|
||||||
|
dialog.show();
|
||||||
|
dialog.getWindow().setAttributes(lp);
|
||||||
|
|
||||||
|
|
||||||
|
//get note_view_full layout elements
|
||||||
|
final Switch permissionSwitch = (Switch) dialog.findViewById(R.id.nvf_note_permission);
|
||||||
|
final EditText newTitle = (EditText) dialog.findViewById(R.id.nvf_note_title);
|
||||||
|
final EditText newBody = (EditText) dialog.findViewById(R.id.nvf_note_content);
|
||||||
|
Button saveBtn = (Button) dialog.findViewById(R.id.nvf_note_submit_btn);
|
||||||
|
Button cancelBtn = (Button) dialog.findViewById(R.id.nvf_note_cancel_btn);
|
||||||
|
|
||||||
|
cancelBtn.setOnClickListener(new View.OnClickListener() {
|
||||||
|
public void onClick(View v) {
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
saveBtn.setOnClickListener(new View.OnClickListener() {
|
||||||
|
public void onClick(View v) {
|
||||||
|
|
||||||
|
//title too short
|
||||||
|
if (newTitle.getText().length() == 0) {
|
||||||
|
Toast toast = Toast.makeText(getActivity(), "Title too short.", Toast.LENGTH_LONG);
|
||||||
|
toast.show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//title too long
|
||||||
|
if (newTitle.getText().length() > 20) {
|
||||||
|
Toast toast = Toast.makeText(getActivity(), "Title too long.\n Use up to 20 notes.", Toast.LENGTH_LONG);
|
||||||
|
toast.show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//volley post
|
||||||
|
final JSONObject noteJson = new JSONObject();
|
||||||
|
try {
|
||||||
|
|
||||||
|
//TODO need to get owner id from login screen
|
||||||
|
noteJson.put("owner_id", userId);
|
||||||
|
noteJson.put("title", newTitle.getText());
|
||||||
|
noteJson.put("lat", gpsUtils.getLatitude());
|
||||||
|
noteJson.put("lng", gpsUtils.getLongitude());
|
||||||
|
noteJson.put("address", gpsUtils.getAddress());
|
||||||
|
noteJson.put("body", newBody.getText());
|
||||||
|
noteJson.put("is_public", permissionSwitch.isChecked());
|
||||||
|
// noteJson.put("tags",);
|
||||||
|
Log.d(TAG, "Json: " + noteJson.toString());
|
||||||
|
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.d(TAG, "saveBtn: " + e.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
//send request and close dialog
|
||||||
|
VolleyUtilSingleton.getInstance(getActivity()).post(BASE_URL + "/note/upsert", noteJson, newNoteSuccessListener, Utils.genericErrorListener);
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
//change text of switch according to state.
|
||||||
|
permissionSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||||
|
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||||
|
if (isChecked)
|
||||||
|
permissionSwitch.setText(R.string.nvf_public_label);
|
||||||
|
else
|
||||||
|
permissionSwitch.setText(R.string.nvf_private_label);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
//response listener for adding new note
|
||||||
|
Response.Listener<JSONObject> newNoteSuccessListener = new Response.Listener<JSONObject>() {
|
||||||
|
@Override
|
||||||
|
public void onResponse(JSONObject response) {
|
||||||
|
Log.d(TAG, "newNoteSuccess: response - " + response.toString());
|
||||||
|
try {
|
||||||
|
Date time = new Date();
|
||||||
|
JSONObject noteObject = response.getJSONObject("note");
|
||||||
|
time.setTime(noteObject.getLong("created_at"));
|
||||||
|
addNoteFromJsonObj(noteObject, time);
|
||||||
|
noteList.setAdapter(noteListAdapter);
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e(TAG, "newNoteSuccess:" + e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
// //response Error listener for adding new note
|
// //response Error listener for adding new note
|
||||||
|
@ -225,29 +225,29 @@ public class PersonalFragment extends Fragment {
|
||||||
// };
|
// };
|
||||||
|
|
||||||
|
|
||||||
//response listener for getting all user notes
|
//response listener for getting all user notes
|
||||||
Response.Listener<JSONObject> getNotesSuccessListener = new Response.Listener<JSONObject>() {
|
Response.Listener<JSONObject> getNotesSuccessListener = new Response.Listener<JSONObject>() {
|
||||||
@Override
|
@Override
|
||||||
public void onResponse(JSONObject response) {
|
public void onResponse(JSONObject response) {
|
||||||
Log.d(TAG, "getNotesSuccessListener: " + response.toString());
|
Log.d(TAG, "getNotesSuccessListener: " + response.toString());
|
||||||
Utils.dismissLoadingDialog();
|
Utils.dismissLoadingDialog();
|
||||||
try {
|
try {
|
||||||
//need to get all notes and add to listOfNotes
|
//need to get all notes and add to listOfNotes
|
||||||
JSONArray noteObjectsArray = response.getJSONArray("notes");
|
JSONArray noteObjectsArray = response.getJSONArray("notes");
|
||||||
Date time = new Date();
|
Date time = new Date();
|
||||||
for (int i = 0; i < noteObjectsArray.length(); i++) {
|
for (int i = 0; i < noteObjectsArray.length(); i++) {
|
||||||
JSONObject noteObject = noteObjectsArray.getJSONObject(i);
|
JSONObject noteObject = noteObjectsArray.getJSONObject(i);
|
||||||
time.setTime(noteObject.getLong("created_at"));
|
time.setTime(noteObject.getLong("created_at"));
|
||||||
|
|
||||||
|
addNoteFromJsonObj(noteObject, time);
|
||||||
|
}
|
||||||
|
noteList.setAdapter(noteListAdapter);
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e(TAG, "newNoteSuccess:" + e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
addNoteFromJsonObj(noteObject, time);
|
|
||||||
}
|
}
|
||||||
noteList.setAdapter(noteListAdapter);
|
};
|
||||||
} catch (Exception e) {
|
|
||||||
Log.e(TAG, "newNoteSuccess:" + e.getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// //response ErrorListener for getting all user notes
|
// //response ErrorListener for getting all user notes
|
||||||
|
@ -270,125 +270,126 @@ public class PersonalFragment extends Fragment {
|
||||||
// };
|
// };
|
||||||
|
|
||||||
|
|
||||||
private ArrayList<String> jsonArrayToStringArray(JSONArray jArray) {
|
private ArrayList<String> jsonArrayToStringArray(JSONArray jArray) {
|
||||||
ArrayList<String> stringArray = new ArrayList<String>();
|
ArrayList<String> stringArray = new ArrayList<String>();
|
||||||
for (int i = 0, count = jArray.length(); i < count; i++) {
|
for (int i = 0, count = jArray.length(); i < count; i++) {
|
||||||
try {
|
try {
|
||||||
JSONObject jsonObject = jArray.getJSONObject(i);
|
JSONObject jsonObject = jArray.getJSONObject(i);
|
||||||
stringArray.add(jsonObject.toString());
|
stringArray.add(jsonObject.toString());
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
return stringArray;
|
||||||
}
|
}
|
||||||
return stringArray;
|
|
||||||
}
|
|
||||||
|
|
||||||
Response.Listener<JSONObject> deleteNoteSuccessListener = new Response.Listener<JSONObject>() {
|
Response.Listener<JSONObject> deleteNoteSuccessListener = new Response.Listener<JSONObject>() {
|
||||||
@Override
|
@Override
|
||||||
public void onResponse(JSONObject response) {
|
public void onResponse(JSONObject response) {
|
||||||
Log.d(TAG, "deleteNoteSuccessListener: " + response.toString());
|
Log.d(TAG, "deleteNoteSuccessListener: " + response.toString());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
private void addNoteFromJsonObj(JSONObject noteObject, Date time) throws JSONException {
|
||||||
|
Note addNote = new Note(
|
||||||
|
noteObject.getString("id"),
|
||||||
|
Float.parseFloat(noteObject.getJSONObject("location").getString("lat")),
|
||||||
|
Float.parseFloat(noteObject.getJSONObject("location").getString("lng")),
|
||||||
|
noteObject.getJSONObject("location").getString("address"),
|
||||||
|
noteObject.getString("title"),
|
||||||
|
noteObject.getString("body"),
|
||||||
|
time.toString(),
|
||||||
|
noteObject.getBoolean("is_public"),
|
||||||
|
noteObject.getInt("likes"),
|
||||||
|
noteObject.getString("avatar"),
|
||||||
|
noteObject.getString("owner_id"),
|
||||||
|
jsonArrayToStringArray(noteObject.getJSONArray("tags"))
|
||||||
|
);
|
||||||
|
listOfNotes.add(addNote);
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
|
||||||
private void addNoteFromJsonObj(JSONObject noteObject, Date time) throws JSONException {
|
// click on listView item
|
||||||
Note addNote = new Note(
|
class ItemClickedListener implements AdapterView.OnItemClickListener {
|
||||||
noteObject.getString("id"),
|
@Override
|
||||||
Float.parseFloat(noteObject.getJSONObject("location").getString("lat")),
|
public void onItemClick(AdapterView<?> parent, View view, final int position, long id) {
|
||||||
Float.parseFloat(noteObject.getJSONObject("location").getString("lng")),
|
//create and configure dialog
|
||||||
noteObject.getJSONObject("location").getString("address"),
|
final Note note = listOfNotes.get(position);
|
||||||
noteObject.getString("title"),
|
final Dialog noteViewDialog = new Dialog(getActivity());
|
||||||
noteObject.getString("body"),
|
noteViewDialog.setContentView(R.layout.note_display_full);
|
||||||
time.toString(),
|
noteViewDialog.setTitle("You wrote...");
|
||||||
noteObject.getBoolean("is_public"),
|
|
||||||
noteObject.getInt("likes"),
|
|
||||||
noteObject.getString("avatar"),
|
|
||||||
jsonArrayToStringArray(noteObject.getJSONArray("tags"))
|
|
||||||
);
|
|
||||||
listOfNotes.add(addNote);
|
|
||||||
|
|
||||||
}
|
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
|
||||||
|
lp.copyFrom(noteViewDialog.getWindow().getAttributes());
|
||||||
// click on listView item
|
lp.width = WindowManager.LayoutParams.MATCH_PARENT;
|
||||||
class ItemClickedListener implements AdapterView.OnItemClickListener {
|
lp.height = WindowManager.LayoutParams.MATCH_PARENT;
|
||||||
@Override
|
noteViewDialog.show();
|
||||||
public void onItemClick(AdapterView<?> parent, View view, final int position, long id) {
|
|
||||||
//create and configure dialog
|
|
||||||
final Note note = listOfNotes.get(position);
|
|
||||||
final Dialog noteViewDialog = new Dialog(getActivity());
|
|
||||||
noteViewDialog.setContentView(R.layout.note_display_full);
|
|
||||||
noteViewDialog.setTitle("You wrote...");
|
|
||||||
|
|
||||||
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
|
|
||||||
lp.copyFrom(noteViewDialog.getWindow().getAttributes());
|
|
||||||
lp.width = WindowManager.LayoutParams.MATCH_PARENT;
|
|
||||||
lp.height = WindowManager.LayoutParams.MATCH_PARENT;
|
|
||||||
noteViewDialog.show();
|
|
||||||
// dialog.getWindow().setAttributes(lp);
|
// dialog.getWindow().setAttributes(lp);
|
||||||
|
|
||||||
|
|
||||||
//get note_view_full layout elements
|
//get note_view_full layout elements
|
||||||
final TextView title = (TextView) noteViewDialog.findViewById(R.id.ndf_title_textview);
|
final TextView title = (TextView) noteViewDialog.findViewById(R.id.ndf_title_textview);
|
||||||
final TextView body = (TextView) noteViewDialog.findViewById(R.id.ndf_body_textview);
|
final TextView body = (TextView) noteViewDialog.findViewById(R.id.ndf_body_textview);
|
||||||
final TextView time = (TextView) noteViewDialog.findViewById(R.id.ndf_time_textview);
|
final TextView time = (TextView) noteViewDialog.findViewById(R.id.ndf_time_textview);
|
||||||
final TextView location = (TextView) noteViewDialog.findViewById(R.id.ndf_address_textview);
|
final TextView location = (TextView) noteViewDialog.findViewById(R.id.ndf_address_textview);
|
||||||
final TextView likes = (TextView) noteViewDialog.findViewById(R.id.ndf_likes_textview);
|
final TextView likes = (TextView) noteViewDialog.findViewById(R.id.ndf_likes_textview);
|
||||||
final TextView tags = (TextView) noteViewDialog.findViewById(R.id.ndf_tags_textview);
|
final TextView tags = (TextView) noteViewDialog.findViewById(R.id.ndf_tags_textview);
|
||||||
final TextView permission = (TextView) noteViewDialog.findViewById(R.id.ndf_permission_textview);
|
final TextView permission = (TextView) noteViewDialog.findViewById(R.id.ndf_permission_textview);
|
||||||
final ImageButton deleteBtn = (ImageButton) noteViewDialog.findViewById(R.id.ndf_delete_imagebutton);
|
final ImageButton deleteBtn = (ImageButton) noteViewDialog.findViewById(R.id.ndf_delete_imagebutton);
|
||||||
|
|
||||||
|
|
||||||
title.setText(note.getTitle());
|
title.setText(note.getTitle());
|
||||||
body.setText(note.getBody());
|
body.setText(note.getBody());
|
||||||
time.setText(note.getTimestamp());
|
time.setText(note.getTimestamp());
|
||||||
location.setText("Tags: " + note.getAddress());
|
location.setText("Tags: " + note.getAddress());
|
||||||
likes.setText("Likes: " + note.getLikes());
|
likes.setText("Likes: " + note.getLikes());
|
||||||
tags.setText(note.getTags().toString());
|
tags.setText(note.getTags().toString());
|
||||||
permission.setText("Permission: " + (note.isPublic() ? "Public" : "Private"));
|
permission.setText("Permission: " + (note.isPublic() ? "Public" : "Private"));
|
||||||
|
|
||||||
deleteBtn.setOnClickListener(new View.OnClickListener() {
|
deleteBtn.setOnClickListener(new View.OnClickListener() {
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
//Put up the Yes/No message box
|
//Put up the Yes/No message box
|
||||||
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
||||||
builder
|
builder
|
||||||
.setTitle("Delete Note")
|
.setTitle("Delete Note")
|
||||||
.setMessage("Are you sure you want to delete the note?")
|
.setMessage("Are you sure you want to delete the note?")
|
||||||
.setIcon(android.R.drawable.ic_dialog_alert)
|
.setIcon(android.R.drawable.ic_dialog_alert)
|
||||||
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
|
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
//Yes button clicked, do something
|
//Yes button clicked, do something
|
||||||
Toast.makeText(getActivity(), "Item Deleted!",
|
Toast.makeText(getActivity(), "Item Deleted!",
|
||||||
Toast.LENGTH_SHORT).show();
|
Toast.LENGTH_SHORT).show();
|
||||||
//TODO send delete
|
//TODO send delete
|
||||||
JSONObject delNote = new JSONObject();
|
JSONObject delNote = new JSONObject();
|
||||||
try {
|
try {
|
||||||
delNote.put("uid", userId);
|
delNote.put("uid", userId);
|
||||||
delNote.put("nid", note.getId());
|
delNote.put("nid", note.getId());
|
||||||
VolleyUtilSingleton.getInstance(getActivity()).post(BASE_URL + "/note/delete", delNote, deleteNoteSuccessListener, Utils.genericErrorListener);
|
VolleyUtilSingleton.getInstance(getActivity()).post(BASE_URL + "/note/delete", delNote, deleteNoteSuccessListener, Utils.genericErrorListener);
|
||||||
listOfNotes.remove(position);
|
listOfNotes.remove(position);
|
||||||
|
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
Toast.makeText(getActivity(), "Something went wrong.\n Failed to delete note...", Toast.LENGTH_LONG).show();
|
Toast.makeText(getActivity(), "Something went wrong.\n Failed to delete note...", Toast.LENGTH_LONG).show();
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
noteList.setAdapter(noteListAdapter);
|
||||||
|
noteViewDialog.dismiss();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.setNegativeButton("No", new DialogInterface.OnClickListener() {
|
||||||
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
|
//Yes button clicked, do something
|
||||||
|
Toast.makeText(getActivity(), "Canceled",
|
||||||
|
Toast.LENGTH_SHORT).show();
|
||||||
|
noteViewDialog.dismiss();
|
||||||
|
}
|
||||||
|
}) //Do nothing on no
|
||||||
|
.show();
|
||||||
}
|
}
|
||||||
noteList.setAdapter(noteListAdapter);
|
});
|
||||||
noteViewDialog.dismiss();
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.setNegativeButton("No", new DialogInterface.OnClickListener() {
|
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
|
||||||
//Yes button clicked, do something
|
|
||||||
Toast.makeText(getActivity(), "Canceled",
|
|
||||||
Toast.LENGTH_SHORT).show();
|
|
||||||
noteViewDialog.dismiss();
|
|
||||||
}
|
|
||||||
}) //Do nothing on no
|
|
||||||
.show();
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue