mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	 078ce97c41
			
		
	
	
		078ce97c41
		
	
	
	
	
		
			
			This allows to you install a custom callback that can do anything with Role::Display data before it's returned by GJsonArrayModel::data().
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #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
 | |
| {
 | |
|     auto& field_spec = m_fields[index.column()];
 | |
|     auto& object = m_array.at(index.row()).as_object();
 | |
| 
 | |
|     if (role == GModel::Role::Display) {
 | |
|         auto& json_field_name = field_spec.json_field_name;
 | |
|         auto data = object.get(json_field_name);
 | |
|         if (field_spec.massage_for_display)
 | |
|             return field_spec.massage_for_display(data);
 | |
|         if (data.is_int())
 | |
|             return data.as_int();
 | |
|         if (data.is_uint())
 | |
|             return data.as_uint();
 | |
|         return object.get(json_field_name).to_string();
 | |
|     }
 | |
|     return {};
 | |
| }
 | |
| 
 | |
| void GJsonArrayModel::set_json_path(const String& json_path)
 | |
| {
 | |
|     if (m_json_path == json_path)
 | |
|         return;
 | |
| 
 | |
|     m_json_path = json_path;
 | |
|     update();
 | |
| }
 |