/** * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * * @flow * @providesModule XHRExampleCookies */ 'use strict'; var React = require('react'); var ReactNative = require('react-native'); var { StyleSheet, Text, TouchableHighlight, View, WebView, } = ReactNative; var RCTNetworking = require('RCTNetworking'); class XHRExampleCookies extends React.Component { 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.refreshWebview(); }); 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.refreshWebview(); }); this.setStatus('Getting cookies...'); } clearCookies() { RCTNetworking.clearCookies((cleared) => { this.setStatus('Cookies cleared, had cookies=' + cleared.toString()); this.refreshWebview(); }); } refreshWebview() { this.refs.webview.reload(); } setStatus(status: string) { this.setState({status}); } render() { return ( Set cookie Set cookie (EU) Get cookies Get cookies (EU) Clear cookies {this.state.status} Refresh Webview ); } } var styles = StyleSheet.create({ wrapper: { borderRadius: 5, marginBottom: 5, }, button: { backgroundColor: '#eeeeee', padding: 8, }, }); module.exports = XHRExampleCookies;