| 
									
										
										
										
											2019-08-10 10:29:46 +02:00
										 |  |  | #include <AK/JsonObject.h>
 | 
					
						
							|  |  |  | #include <LibCore/CFile.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GJsonArrayModel.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void GJsonArrayModel::update() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     CFile file(m_json_path); | 
					
						
							|  |  |  |     if (!file.open(CIODevice::ReadOnly)) { | 
					
						
							|  |  |  |         dbg() << "Unable to open " << file.filename(); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto json = JsonValue::from_string(file.read_all()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ASSERT(json.is_array()); | 
					
						
							|  |  |  |     m_array = json.as_array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     did_update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GModel::ColumnMetadata GJsonArrayModel::column_metadata(int column) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ASSERT(column < m_fields.size()); | 
					
						
							|  |  |  |     return { 100, m_fields[column].text_alignment }; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GVariant GJsonArrayModel::data(const GModelIndex& index, Role role) const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-08-10 11:06:29 +02:00
										 |  |  |     auto& field_spec = m_fields[index.column()]; | 
					
						
							| 
									
										
										
										
											2019-08-10 10:29:46 +02:00
										 |  |  |     auto& object = m_array.at(index.row()).as_object(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (role == GModel::Role::Display) { | 
					
						
							| 
									
										
										
										
											2019-08-10 11:06:29 +02:00
										 |  |  |         auto& json_field_name = field_spec.json_field_name; | 
					
						
							| 
									
										
										
										
											2019-08-10 10:29:46 +02:00
										 |  |  |         auto data = object.get(json_field_name); | 
					
						
							| 
									
										
										
										
											2019-08-10 11:06:29 +02:00
										 |  |  |         if (field_spec.massage_for_display) | 
					
						
							| 
									
										
										
										
											2019-08-10 15:06:29 +02:00
										 |  |  |             return field_spec.massage_for_display(object); | 
					
						
							| 
									
										
										
										
											2019-08-10 10:29:46 +02:00
										 |  |  |         if (data.is_int()) | 
					
						
							|  |  |  |             return data.as_int(); | 
					
						
							|  |  |  |         if (data.is_uint()) | 
					
						
							|  |  |  |             return data.as_uint(); | 
					
						
							|  |  |  |         return object.get(json_field_name).to_string(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-08-12 11:54:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (role == GModel::Role::Sort) { | 
					
						
							|  |  |  |         if (field_spec.massage_for_sort) | 
					
						
							|  |  |  |             return field_spec.massage_for_sort(object); | 
					
						
							|  |  |  |         return data(index, Role::Display); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-08-14 20:30:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (role == GModel::Role::Custom) { | 
					
						
							|  |  |  |         if (field_spec.massage_for_custom) | 
					
						
							|  |  |  |             return field_spec.massage_for_custom(object); | 
					
						
							|  |  |  |         return {}; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 10:29:46 +02:00
										 |  |  |     return {}; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-08-10 11:06:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | void GJsonArrayModel::set_json_path(const String& json_path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_json_path == json_path) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_json_path = json_path; | 
					
						
							|  |  |  |     update(); | 
					
						
							|  |  |  | } |