文件操作 - SecondaryActions.tsx
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/features/explore/SecondaryActions.tsx
编辑文件内容
import React from 'react'; import { css, cx } from 'emotion'; import { stylesFactory, Icon } from '@grafana/ui'; type Props = { addQueryRowButtonDisabled?: boolean; richHistoryButtonActive?: boolean; addQueryRowButtonHidden?: boolean; onClickAddQueryRowButton: () => void; onClickRichHistoryButton: () => void; }; const getStyles = stylesFactory(() => { return { button: css` margin: 1em 4px 0 0; `, }; }); export function SecondaryActions(props: Props) { const styles = getStyles(); return ( <div className="gf-form"> {!props.addQueryRowButtonHidden && ( <button aria-label="Add row button" className={`gf-form-label gf-form-label--btn ${styles.button}`} onClick={props.onClickAddQueryRowButton} disabled={props.addQueryRowButtonDisabled} > <Icon className="icon-margin-right" name="plus" size="sm" /> <span className="btn-title">{'\xA0' + 'Add query'}</span> </button> )} <button aria-label="Rich history button" className={cx(`gf-form-label gf-form-label--btn ${styles.button}`, { ['explore-active-button']: props.richHistoryButtonActive, })} onClick={props.onClickRichHistoryButton} > <Icon className="icon-margin-right" name="history" size="sm" /> <span className="btn-title">{'\xA0' + 'Query history'}</span> </button> </div> ); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件