mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Changing shortcuts for adding and removing rows
Summary: New shortcuts for removing and adding rows. For adding a row we now have Mod+(Shift)+Enter For removing rows we now have Mod+Delete/Mod+Backspace Before removing rows, the user is prompted to confirm, this prompt can be dismissed and this setting can be remembered. User needs to confirm only when using shortcut. Old shortcuts are still active and shows information about this change. This information is shown only once, after this shortcuts have default behavior (zooming). New users don't see this explanation. Test Plan: Updated Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3655
This commit is contained in:
@@ -26,7 +26,7 @@ interface INotifier {
|
||||
getFullAppErrors(): IAppError[];
|
||||
}
|
||||
|
||||
interface INotification extends Expirable {
|
||||
export interface INotification extends Expirable {
|
||||
expire(): Promise<void>;
|
||||
}
|
||||
|
||||
@@ -34,11 +34,19 @@ export interface IProgress extends Expirable {
|
||||
setProgress(percent: number): void;
|
||||
}
|
||||
|
||||
/**
|
||||
* Custom action to be shown as a notification with a handler.
|
||||
*/
|
||||
export interface CustomAction { label: string, action: () => void }
|
||||
/**
|
||||
* A string, or a function that builds dom.
|
||||
*/
|
||||
export type MessageType = string | (() => DomElementArg);
|
||||
// Identifies supported actions. These are implemented in NotifyUI.
|
||||
export type NotifyAction = 'upgrade' | 'renew' | 'personal' | 'report-problem' | 'ask-for-help';
|
||||
export type NotifyAction = 'upgrade' | 'renew' | 'personal' | 'report-problem' | 'ask-for-help' | CustomAction;
|
||||
|
||||
export interface INotifyOptions {
|
||||
message: string | (() => DomElementArg); // A string, or a function that builds dom.
|
||||
message: MessageType; // A string, or a function that builds dom.
|
||||
timestamp?: number;
|
||||
title?: string;
|
||||
canUserClose?: boolean;
|
||||
@@ -224,7 +232,7 @@ export class Notifier extends Disposable implements INotifier {
|
||||
* Additional option level, can be used to style the notification to like a success, warning,
|
||||
* info or error message.
|
||||
*/
|
||||
public createUserMessage(message: string, options: Partial<INotifyOptions> = {}): INotification {
|
||||
public createUserMessage(message: MessageType, options: Partial<INotifyOptions> = {}): INotification {
|
||||
const timestamp = Date.now();
|
||||
if (options.actions && options.actions.includes('ask-for-help')) {
|
||||
// If user should be able to ask for help, add this error to the notifier dropdown too for a
|
||||
|
||||
Reference in New Issue
Block a user