summaryrefslogtreecommitdiffstats
path: root/devtools/client/responsive/actions/index.js
blob: 7d42c0605369a17ba7a1aeaa6449bc06ef255f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

// This file lists all of the actions available in responsive design. This
// central list of constants makes it easy to see all possible action names at
// a glance. Please add a comment with each new action type.

const { createEnum } = require("resource://devtools/client/shared/enum.js");

const {
  CHANGE_NETWORK_THROTTLING,
} = require("resource://devtools/client/shared/components/throttling/actions.js");

createEnum(
  [
    // Add a new device.
    "ADD_DEVICE",

    // Add a new device type.
    "ADD_DEVICE_TYPE",

    // Add an additional viewport to display the document.
    "ADD_VIEWPORT",

    // Change the device displayed in the viewport.
    "CHANGE_DEVICE",

    // Change the location of the page. This may be triggered by the user
    // directly entering a new URL, navigating with links, etc.
    "CHANGE_LOCATION",

    // The pixel ratio of the display has changed. This may be triggered by the user
    // when changing the monitor resolution, or when the window is dragged to a different
    // display with a different pixel ratio.
    "CHANGE_DISPLAY_PIXEL_RATIO",

    // Change the network throttling profile.
    CHANGE_NETWORK_THROTTLING,

    // Change the user agent of the viewport.
    "CHANGE_USER_AGENT",

    // The pixel ratio of the viewport has changed. This may be triggered by the user
    // when changing the device displayed in the viewport, or when a pixel ratio is
    // selected from the device pixel ratio dropdown.
    "CHANGE_PIXEL_RATIO",

    // Change the viewport angle.
    "CHANGE_VIEWPORT_ANGLE",

    // Edit a device.
    "EDIT_DEVICE",

    // Indicates that the device list is being loaded.
    "LOAD_DEVICE_LIST_START",

    // Indicates that the device list loading action threw an error.
    "LOAD_DEVICE_LIST_ERROR",

    // Indicates that the device list has been loaded successfully.
    "LOAD_DEVICE_LIST_END",

    // Remove a device.
    "REMOVE_DEVICE",

    // Remove the viewport's device assocation.
    "REMOVE_DEVICE_ASSOCIATION",

    // Resize the viewport.
    "RESIZE_VIEWPORT",

    // Rotate the viewport.
    "ROTATE_VIEWPORT",

    // Take a screenshot of the viewport.
    "TAKE_SCREENSHOT_START",

    // Indicates when the screenshot action ends.
    "TAKE_SCREENSHOT_END",

    // Toggles the left alignment of the viewports.
    "TOGGLE_LEFT_ALIGNMENT",

    // Toggles the reload on touch simulation changes.
    "TOGGLE_RELOAD_ON_TOUCH_SIMULATION",

    // Toggles the reload on user agent changes.
    "TOGGLE_RELOAD_ON_USER_AGENT",

    // Toggles the touch simulation state of the viewports.
    "TOGGLE_TOUCH_SIMULATION",

    // Toggles the user agent input displayed in the toolbar.
    "TOGGLE_USER_AGENT_INPUT",

    // Update the device display state in the device selector.
    "UPDATE_DEVICE_DISPLAYED",

    // Update the device modal state.
    "UPDATE_DEVICE_MODAL",

    // Zoom the viewport.
    "ZOOM_VIEWPORT",
  ],
  module.exports
);