@material-ui/icons#ArrowUpward TypeScript Examples
The following examples show how to use
@material-ui/icons#ArrowUpward.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.tsx From aqualink-app with MIT License | 6 votes |
MOBILE_SELECT_MENU_ITEMS = Object.values(OrderKeys)
.filter((key) => DEFAULT_ITEMS.includes(key))
.reduce<ReactNode[]>(
(elements, val) => [
...elements,
...times(2, (i) => {
const itemOrder: Order = i % 2 === 0 ? "asc" : "desc";
return (
<MenuItem value={`${val}-${itemOrder}`} key={val + i}>
<Typography color="primary" variant="h4">
{getOrderKeysFriendlyString(val)}
{" "}
{itemOrder === "asc" ? (
<ArrowDownward fontSize="small" />
) : (
<ArrowUpward fontSize="small" />
)}
</Typography>
</MenuItem>
);
}),
],
[]
)
Example #2
Source File: index.tsx From frontegg-react with MIT License | 6 votes |
iconMap: { [K in IconNames]: any } = {
'down-arrow': KeyboardArrowDownRounded,
'left-arrow': KeyboardArrowLeftRounded,
'person-add': PersonAddRounded,
'right-arrow': KeyboardArrowRightRounded,
'sort-arrows-asc': ArrowUpward,
'sort-arrows-desc': ArrowDownward,
'sort-arrows': DeleteRounded,
'up-arrow': KeyboardArrowUpRounded,
'vertical-dots': MoreVertRounded,
'visibility-off': VisibilityOff,
back: ArrowBackRounded,
checkmark: CheckRounded,
copy: FileCopyRounded,
delete: DeleteRounded,
edit: Edit,
filters: FilterList,
image: ImageRounded,
indeterminate: IndeterminateCheckBoxRounded,
search: Search,
send: SendRounded,
refresh: Cached,
'calendar-today': CalendarToday,
flash: FlashOn,
pdf: PictureAsPdf,
csv: GridOn,
visibility: Visibility,
warning: WarningRounded,
list: Subject,
exit: ExitToAppRounded,
swap: CachedRounded,
profile: FaceRounded,
globe: Language,
close: Close,
}
Example #3
Source File: CustomTable.tsx From interface-v2 with GNU General Public License v3.0 | 5 votes |
CustomTable: React.FC<CustomTableProps<any>> = ({
rowsPerPage = 5,
showPagination = true,
emptyMessage,
headCells,
data,
defaultOrderBy,
defaultOrder,
mobileHTML,
desktopHTML,
}) => {
const theme = useTheme();
const mobileWindowSize = useMediaQuery(theme.breakpoints.down('xs'));
const classes = useStyles();
return (
<Box className={classes.tableContainer}>
{mobileWindowSize ? (
<>
{data.map((item: any, index: number) => {
return mobileHTML(item, index);
})}
</>
) : (
<DataTable
defaultOrderBy={defaultOrderBy}
defaultOrder={defaultOrder}
emptyMesage={emptyMessage}
showPagination={showPagination}
headCells={headCells}
data={data}
rowPerPage={rowsPerPage}
sortUpIcon={<ArrowUpward />}
sortDownIcon={<ArrowDownward />}
showEmptyRows={false}
renderRow={(item, index, page, rowsPerPage) => {
return (
<TableRow key={index}>
{desktopHTML(item, index, page, rowsPerPage).map(
(cellItem: any, ind: number) => (
<TableCell
key={ind}
className={cellItem.button ? 'buttonCell' : ''}
>
{cellItem.html}
</TableCell>
),
)}
</TableRow>
);
}}
/>
)}
</Box>
);
}
Example #4
Source File: SortBar.tsx From crossfeed with Creative Commons Zero v1.0 Universal | 5 votes |
SortBar: React.FC<Props> = (props) => {
const {
sortField,
sortDirection,
setSort,
saveSearch,
children,
existingSavedSearch
} = props;
const classes = useStyles(props);
const toggleDirection = () => {
setSort(sortField, sortDirection === 'asc' ? 'desc' : 'asc');
};
const onSetSortField: SelectProps['onChange'] = (e) => {
setSort(e.target.value as string, 'asc');
};
return (
<div className={classes.root}>
<div className={classes.sortMenu}>
<button className={classes.toggleDirection} onClick={toggleDirection}>
{!sortDirection || sortDirection === 'desc' ? (
<ArrowDownward />
) : (
<ArrowUpward />
)}
</button>
<span id="sort-by-label">Sort by: </span>
<FormControl className={classes.openFields}>
<Select
disableUnderline
labelId="sort-by-label"
value={sortField}
onChange={onSetSortField}
classes={{ root: classes.selectInp }}
>
<MenuItem classes={{ root: classes.option }} value="name">
Domain Name
</MenuItem>
<MenuItem classes={{ root: classes.option }} value="ip">
IP
</MenuItem>
<MenuItem classes={{ root: classes.option }} value="updatedAt">
Last Seen
</MenuItem>
<MenuItem classes={{ root: classes.option }} value="createdAt">
First Seen
</MenuItem>
</Select>
</FormControl>
</div>
{children}
<div>
{saveSearch && (
<button onClick={saveSearch}>
{existingSavedSearch ? 'Update Saved Search' : 'Save Search'}
</button>
)}
</div>
</div>
);
}
Example #5
Source File: App.tsx From react-final-table with MIT License | 4 votes |
function App() {
const [searchString, setSearchString] = useState('');
const {
headers,
rows,
selectRow,
selectedRows,
originalRows,
toggleSort,
toggleAll,
} = useTable<DataType>(columns, data, {
selectable: true,
filter: useCallback(
(rows: RowType<DataType>[]) => {
return rows.filter(row => {
return (
row.cells.filter(cell => {
if (cell.value.toLowerCase().includes(searchString)) {
return true;
}
return false;
}).length > 0
);
});
},
[searchString]
),
});
return (
<Grid container>
<Grid item>
<TableContainer>
<Table>
<TableHead>
<TableRow>
<TableCell>
<Checkbox
indeterminate={
selectedRows.length > 0 &&
selectedRows.length !== rows.length
}
checked={selectedRows.length === rows.length}
onClick={() => toggleAll()}
/>
</TableCell>
{headers.map(column => (
<TableCell onClick={() => toggleSort(column.name)}>
{column.render()}{' '}
{column.sorted.on ? (
<>
{column.sorted.asc ? (
<ArrowUpward />
) : (
<ArrowDownward />
)}
</>
) : null}
</TableCell>
))}
</TableRow>
</TableHead>
<TableBody>
{rows.map(row => (
<TableRow>
<TableCell>
<Checkbox
checked={row.selected}
onChange={() => selectRow(row.id)}
/>
</TableCell>
{row.cells.map(cell => (
<TableCell>{cell.render()}</TableCell>
))}
</TableRow>
))}
</TableBody>
</Table>
</TableContainer>
<TableContainer>
<TableHead>
<TableRow>
{headers.map(column => (
<TableCell>{column.label}</TableCell>
))}
</TableRow>
</TableHead>
<TableBody>
{selectedRows.map(row => {
return (
<TableRow>
<TableCell>
<Button onClick={() => selectRow(row.id)}>
Deselect Row
</Button>
</TableCell>
{row.cells.map(cell => {
return <TableCell>{cell.render()}</TableCell>;
})}
</TableRow>
);
})}
</TableBody>
</TableContainer>
<TextField
variant="outlined"
label="Search..."
value={searchString}
onChange={e => setSearchString(e.target.value)}
/>
<pre>
<code>
{JSON.stringify({ selectedRows, originalRows, rows }, null, 2)}
</code>
</pre>
</Grid>
</Grid>
);
}