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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
use webapi::event_target::EventTarget;
use webcore::try_from::{
    TryFrom,
    TryInto,
};
use webcore::value::{
    ConversionError,
    Reference,
    Value,
};

/// The Touch interface represents a single contact point on a touch-sensitive
/// device. The contact point is commonly a finger or stylus and the device may
/// be a touchscreen or trackpad.
///
/// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch)
// https://w3c.github.io/touch-events/#touch-interface
#[derive(Clone, Debug, Eq, PartialEq, ReferenceType)]
#[reference(instance_of = "Touch")]
pub struct Touch( Reference );

impl Touch {

    /// Returns a unique identifier for this Touch object. A given touch point
    /// (say, by a finger) will have the same identifier for the duration of
    /// its movement around the surface. This lets you ensure that you're
    /// tracking the same touch all the time.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/identifier)
    #[inline]
    pub fn identifier(&self) -> i32 {
        js!(
            return @{self.as_ref()}.identifier;
        ).try_into().unwrap()
    }

    /// Returns the X coordinate of the touch point relative to the left edge of the screen.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/screenX)
    #[inline]
    pub fn screen_x(&self) -> f64 {
        js!(
            return @{self.as_ref()}.screenX;
        ).try_into().unwrap()
    }

    /// Returns the Y coordinate of the touch point relative to the left edge of the screen.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/screenY)
    #[inline]
    pub fn screen_y(&self) -> f64 {
        js!(
            return @{self.as_ref()}.screenY;
        ).try_into().unwrap()
    }

    /// Returns the X coordinate of the touch point relative to the left edge of the browser viewport, not including any scroll offset.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/clientX)
    #[inline]
    pub fn client_x(&self) -> f64 {
        js!(
            return @{self.as_ref()}.clientX;
        ).try_into().unwrap()
    }

    /// Returns the Y coordinate of the touch point relative to the left edge of the browser viewport, not including any scroll offset.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/clientY)
    #[inline]
    pub fn client_y(&self) -> f64 {
        js!(
            return @{self.as_ref()}.clientY;
        ).try_into().unwrap()
    }

    /// Returns the X coordinate of the touch point relative to the left edge of the document. Unlike clientX, this value includes the horizontal scroll offset, if any.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/pageX)
    #[inline]
    pub fn page_x(&self) -> f64 {
        js!(
            return @{self.as_ref()}.pageX;
        ).try_into().unwrap()
    }

    /// Returns the Y coordinate of the touch point relative to the left edge of the document. Unlike clientX, this value includes the horizontal scroll offset, if any.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/pageY)
    #[inline]
    pub fn page_y(&self) -> f64 {
        js!(
            return @{self.as_ref()}.pageY;
        ).try_into().unwrap()
    }

    /// Returns the Element on which the touch point started when it was first placed on the surface, even if the touch point has since moved outside the interactive area of that element or even been removed from the document.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/target)
    #[inline]
    pub fn target(&self) -> EventTarget {
        js!(
            return @{self.as_ref()}.target;
        ).try_into().unwrap()
    }



    /// Returns the X radius of the ellipse that most closely circumscribes the area of contact with the screen. The value is in pixels of the same scale as screenX.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/radiusX)
    #[inline]
    // TODO: Change the return type to `f32`.
    pub fn radius_x(&self) -> f64 {
        js!(
            return @{self.as_ref()}.radiusX;
        ).try_into().unwrap()
    }

    /// Returns the Y radius of the ellipse that most closely circumscribes the area of contact with the screen. The value is in pixels of the same scale as screenY.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/radiusY)
    #[inline]
    pub fn radius_y(&self) -> f64 {
        js!(
            return @{self.as_ref()}.radiusY;
        ).try_into().unwrap()
    }

    /// Returns the angle (in degrees) that the ellipse described by radiusX and radiusY must be rotated, clockwise, to most accurately cover the area of contact between the user and the surface.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/rotationAngle)
    #[inline]
    pub fn rotation_angle(&self) -> f64 {
        js!(
            return @{self.as_ref()}.rotationAngle;
        ).try_into().unwrap()
    }

    /// Returns the amount of pressure being applied to the surface by the user, as a float between 0.0 (no pressure) and 1.0 (maximum pressure).
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/force)
    #[inline]
    pub fn force(&self) -> f64 {
        js!(
            return @{self.as_ref()}.force;
        ).try_into().unwrap()
    }

    /// The altitude (in radians) of a stylus, in the range 0 (parallel to the surface) to π/2 (perpendicular to the surface). The value 0 should be used for devices which do not support this property.
    ///
    /// [(JavaScript docs)](https://developer.mozilla.org/en-US/docs/Web/API/Touch/altitudeAngle)
    // https://w3c.github.io/touch-events/#touch-interface
    #[inline]
    pub fn altitude_angle(&self) -> f64 {
        js!(
            return @{self.as_ref()}.altitudeAngle;
        ).try_into().unwrap()
    }

    /// The azimuth angle (in radians) of a stylus, in the range 0 to 2π. 0 represents a stylus whose cap is pointing in the direction of increasing screenX values. π/2 represents a stylus whose cap is pointing in the direction of increasing screenY values. The value 0 should be used for devices which do not support this property.
    ///
    /// [(JavaScript docs)](https://w3c.github.io/touch-events/#touch-interface)
    //
    #[inline]
    pub fn azimuth_angle(&self) -> f64 {
        js!(
            return @{self.as_ref()}.azimuthAngle;
        ).try_into().unwrap()
    }

    /// The type of device used to trigger the touch.
    ///
    // https://w3c.github.io/touch-events/#touch-interface
    #[inline]
    pub fn touch_type(&self) -> TouchType {
        js!(
            return @{self.as_ref()}.touchType;
        ).try_into().unwrap()
    }
}

/// An enumeration representing the different types of possible touch input.
///
/// [(JavaScript docs)](https://w3c.github.io/touch-events/#touch-interface)
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum TouchType {
    /// A direct touch from a finger on the screen.
    Direct,
    /// A touch from a stylus or pen device.
    Stylus,
}

impl TryFrom<Value> for TouchType {
    type Error = ConversionError;

    fn try_from(v: Value) -> Result<Self, Self::Error> {
        let value: String = v.try_into()?;
        match value.as_ref() {
            "stylus" => Ok(TouchType::Stylus),
            "direct" => Ok(TouchType::Direct),
            s => Err(ConversionError::Custom(format!("invalid touchtype mapping type \"{}\"", s))),
        }
    }
}