Records in docs rendering

This commit is contained in:
Chadtech 2021-04-24 18:06:41 -04:00
parent d5c729b817
commit 0a42a04765
2 changed files with 98 additions and 1 deletions

View file

@ -1,8 +1,9 @@
use crate::docs::TypeAnnotation::{Apply, BoundVariable, TagUnion}; use crate::docs::TypeAnnotation::{Apply, BoundVariable, Record, TagUnion};
use inlinable_string::InlinableString; use inlinable_string::InlinableString;
use roc_module::ident::ModuleName; use roc_module::ident::ModuleName;
use roc_module::symbol::IdentIds; use roc_module::symbol::IdentIds;
use roc_parse::ast; use roc_parse::ast;
use roc_parse::ast::AssignedField;
use roc_region::all::Located; use roc_region::all::Located;
// Documentation generation requirements // Documentation generation requirements
@ -41,6 +42,16 @@ pub enum TypeAnnotation {
name: String, name: String,
parts: Vec<TypeAnnotation>, parts: Vec<TypeAnnotation>,
}, },
Record {
fields: Vec<RecordField>,
},
}
#[derive(Debug, Clone)]
pub struct RecordField {
pub name: String,
pub optional: bool,
pub type_annotation: TypeAnnotation,
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
@ -227,6 +238,35 @@ fn type_to_docs(type_annotation: ast::TypeAnnotation) -> Option<TypeAnnotation>
Some(Apply { name, parts }) Some(Apply { name, parts })
} }
ast::TypeAnnotation::Record {
fields,
ext: _,
final_comments: _,
} => {
let mut doc_fields = Vec::new();
let mut any_fields_include_private_tags = false;
let mut index = 0;
while index < fields.len() && !any_fields_include_private_tags {
let field = fields[index];
match record_field_to_doc(field.value) {
None => {
any_fields_include_private_tags = true;
}
Some(doc_field) => {
doc_fields.push(doc_field);
index = index + 1;
}
}
}
Some(Record { fields: doc_fields })
}
ast::TypeAnnotation::SpaceBefore(&sub_type_ann, _) => type_to_docs(sub_type_ann),
ast::TypeAnnotation::SpaceAfter(&sub_type_ann, _) => type_to_docs(sub_type_ann),
_ => { _ => {
// TODO "Implement type to docs") // TODO "Implement type to docs")
@ -235,6 +275,35 @@ fn type_to_docs(type_annotation: ast::TypeAnnotation) -> Option<TypeAnnotation>
} }
} }
fn record_field_to_doc<'a>(
field: ast::AssignedField<'a, ast::TypeAnnotation>,
) -> Option<RecordField> {
match field {
AssignedField::RequiredValue(name, _, type_ann) => {
type_to_docs(type_ann.value).map(|type_ann_docs| RecordField {
name: name.value.to_string(),
type_annotation: type_ann_docs,
optional: false,
})
}
AssignedField::SpaceBefore(&sub_field, _) => record_field_to_doc(sub_field),
AssignedField::SpaceAfter(&sub_field, _) => record_field_to_doc(sub_field),
AssignedField::OptionalValue(name, _, type_ann) => {
type_to_docs(type_ann.value).map(|type_ann_docs| RecordField {
name: name.value.to_string(),
type_annotation: type_ann_docs,
optional: true,
})
}
AssignedField::LabelOnly(label) => Some(RecordField {
name: label.value.to_string(),
type_annotation: BoundVariable(label.value.to_string()),
optional: false,
}),
AssignedField::Malformed(_) => None,
}
}
// The Option here represents if it is private. Private tags // The Option here represents if it is private. Private tags
// evaluate to `None`. // evaluate to `None`.
fn tag_to_doc(tag: ast::Tag) -> Option<Tag> { fn tag_to_doc(tag: ast::Tag) -> Option<Tag> {

View file

@ -342,6 +342,34 @@ fn type_annotation_to_html(indent_level: usize, buf: &mut String, type_ann: &Typ
buf.push(')'); buf.push(')');
} }
} }
TypeAnnotation::Record { fields } => {
buf.push_str("<br>");
let record_indent = indent_level + 1;
indent(buf, record_indent);
buf.push('{');
buf.push_str("<br>");
let next_indent_level = record_indent + 1;
for (index, field) in fields.iter().enumerate() {
indent(buf, next_indent_level);
buf.push_str(field.name.as_str());
let separator = if field.optional { " ? " } else { " : " };
buf.push_str(separator);
type_annotation_to_html(next_indent_level, buf, &field.type_annotation);
if index < (fields.len() - 1) {
buf.push(',');
}
buf.push_str("<br>");
}
indent(buf, record_indent);
buf.push('}');
}
} }
} }