133 lines
3.4 KiB
JavaScript
133 lines
3.4 KiB
JavaScript
/**
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
* evaluation purposes only.
|
|
*
|
|
* Facebook reserves all rights not expressly granted.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var React = require('react');
|
|
var ReactNative = require('react-native');
|
|
var {
|
|
StyleSheet,
|
|
Text,
|
|
TouchableHighlight,
|
|
View,
|
|
} = ReactNative;
|
|
|
|
var RCTNetworking = require('RCTNetworking');
|
|
|
|
class XHRExampleCookies extends React.Component {
|
|
state: any;
|
|
cancelled: boolean;
|
|
|
|
constructor(props: any) {
|
|
super(props);
|
|
this.cancelled = false;
|
|
this.state = {
|
|
status: '',
|
|
a: 1,
|
|
b: 2,
|
|
};
|
|
}
|
|
|
|
setCookie(domain: string) {
|
|
var {a, b} = this.state;
|
|
var url = `https://${domain}/cookies/set?a=${a}&b=${b}`;
|
|
fetch(url).then((response) => {
|
|
this.setStatus(`Cookies a=${a}, b=${b} set`);
|
|
});
|
|
|
|
this.setState({
|
|
status: 'Setting cookies...',
|
|
a: a + 1,
|
|
b: b + 2,
|
|
});
|
|
}
|
|
|
|
getCookies(domain: string) {
|
|
fetch(`https://${domain}/cookies`).then((response) => {
|
|
return response.json();
|
|
}).then((data) => {
|
|
this.setStatus(`Got cookies ${JSON.stringify(data.cookies)} from server`);
|
|
});
|
|
|
|
this.setStatus('Getting cookies...');
|
|
}
|
|
|
|
clearCookies() {
|
|
RCTNetworking.clearCookies((cleared) => {
|
|
this.setStatus('Cookies cleared, had cookies=' + cleared);
|
|
});
|
|
}
|
|
|
|
setStatus(status: string) {
|
|
this.setState({status});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<View>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.setCookie.bind(this, 'httpbin.org')}>
|
|
<View style={styles.button}>
|
|
<Text>Set cookie</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.setCookie.bind(this, 'eu.httpbin.org')}>
|
|
<View style={styles.button}>
|
|
<Text>Set cookie (EU)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.getCookies.bind(this, 'httpbin.org')}>
|
|
<View style={styles.button}>
|
|
<Text>Get cookies</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.getCookies.bind(this, 'eu.httpbin.org')}>
|
|
<View style={styles.button}>
|
|
<Text>Get cookies (EU)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.clearCookies.bind(this)}>
|
|
<View style={styles.button}>
|
|
<Text>Clear cookies</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<Text>{this.state.status}</Text>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
var styles = StyleSheet.create({
|
|
wrapper: {
|
|
borderRadius: 5,
|
|
marginBottom: 5,
|
|
},
|
|
button: {
|
|
backgroundColor: '#eeeeee',
|
|
padding: 8,
|
|
},
|
|
});
|
|
|
|
module.exports = XHRExampleCookies;
|