mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
Approach fix differently
This commit is contained in:
parent
f589d3c795
commit
cd30fac050
@ -10,6 +10,7 @@ pub struct Get;
|
||||
#[derive(Deserialize)]
|
||||
pub struct GetArgs {
|
||||
member: ColumnPath,
|
||||
rest: Vec<ColumnPath>,
|
||||
}
|
||||
|
||||
impl WholeStreamCommand for Get {
|
||||
@ -117,10 +118,13 @@ pub fn get_column_path(
|
||||
}
|
||||
|
||||
pub fn get(
|
||||
GetArgs { member }: GetArgs,
|
||||
GetArgs {
|
||||
member,
|
||||
rest: fields,
|
||||
}: GetArgs,
|
||||
RunnableContext { input, .. }: RunnableContext,
|
||||
) -> Result<OutputStream, ShellError> {
|
||||
trace!("get {:?}", member);
|
||||
trace!("get {:?} {:?}", member, fields);
|
||||
|
||||
let stream = input
|
||||
.values
|
||||
@ -129,7 +133,12 @@ pub fn get(
|
||||
|
||||
let member = vec![member.clone()];
|
||||
|
||||
for path in member {
|
||||
let column_paths = vec![&member, &fields]
|
||||
.into_iter()
|
||||
.flatten()
|
||||
.collect::<Vec<&ColumnPath>>();
|
||||
|
||||
for path in column_paths {
|
||||
let res = get_column_path(&path, &item);
|
||||
|
||||
match res {
|
||||
|
@ -23,11 +23,20 @@ enum TableMode {
|
||||
|
||||
impl TableView {
|
||||
fn merge_descriptors(values: &[Tagged<Value>]) -> Vec<String> {
|
||||
let mut ret = vec![];
|
||||
let mut ret: Vec<String> = vec![];
|
||||
let value_column = "<value>".to_string();
|
||||
for value in values {
|
||||
for desc in value.data_descriptors() {
|
||||
if !ret.contains(&desc) {
|
||||
ret.push(desc);
|
||||
let descs = value.data_descriptors();
|
||||
|
||||
if descs.len() == 0 {
|
||||
if !ret.contains(&value_column) {
|
||||
ret.push("<value>".to_string());
|
||||
}
|
||||
} else {
|
||||
for desc in value.data_descriptors() {
|
||||
if !ret.contains(&desc) {
|
||||
ret.push(desc);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -48,23 +57,59 @@ impl TableView {
|
||||
let mut entries = vec![];
|
||||
|
||||
for (idx, value) in values.iter().enumerate() {
|
||||
let mut row: Vec<(String, &'static str)> = match value {
|
||||
Tagged {
|
||||
item: Value::Row(..),
|
||||
..
|
||||
} => headers
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|(i, d)| {
|
||||
let data = value.get_data(d);
|
||||
return (
|
||||
data.borrow().format_leaf(Some(&headers[i])),
|
||||
data.borrow().style_leaf(),
|
||||
);
|
||||
})
|
||||
.collect(),
|
||||
x => vec![(x.format_leaf(None), x.style_leaf())],
|
||||
};
|
||||
// let mut row: Vec<(String, &'static str)> = match value {
|
||||
// Tagged {
|
||||
// item: Value::Row(..),
|
||||
// ..
|
||||
// } => headers
|
||||
// .iter()
|
||||
// .enumerate()
|
||||
// .map(|(i, d)| {
|
||||
// let data = value.get_data(d);
|
||||
// return (
|
||||
// data.borrow().format_leaf(Some(&headers[i])),
|
||||
// data.borrow().style_leaf(),
|
||||
// );
|
||||
// })
|
||||
// .collect(),
|
||||
// x => vec![(x.format_leaf(None), x.style_leaf())],
|
||||
// };
|
||||
|
||||
let mut row: Vec<(String, &'static str)> = headers
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|(i, d)| {
|
||||
if d == "<value>" {
|
||||
match value {
|
||||
Tagged {
|
||||
item: Value::Row(..),
|
||||
..
|
||||
} => (
|
||||
Value::nothing().format_leaf(None),
|
||||
Value::nothing().style_leaf(),
|
||||
),
|
||||
_ => (value.format_leaf(None), value.style_leaf()),
|
||||
}
|
||||
} else {
|
||||
match value {
|
||||
Tagged {
|
||||
item: Value::Row(..),
|
||||
..
|
||||
} => {
|
||||
let data = value.get_data(d);
|
||||
(
|
||||
data.borrow().format_leaf(Some(&headers[i])),
|
||||
data.borrow().style_leaf(),
|
||||
)
|
||||
}
|
||||
_ => (
|
||||
Value::nothing().format_leaf(None),
|
||||
Value::nothing().style_leaf(),
|
||||
),
|
||||
}
|
||||
}
|
||||
})
|
||||
.collect();
|
||||
|
||||
if values.len() > 1 {
|
||||
// Indices are black, bold, right-aligned:
|
||||
|
Loading…
Reference in New Issue
Block a user