Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
/** @jsx React.DOM */
/*global fl */
"use strict";
const fs = require("fs");
const path = require("path");
const _ = require("lodash");
const $ = require('atom-space-pen-views').$;
const React = require('react-atom-fork');
const floop = require("../common/floop");
const utils = require("../common/utils");
module.exports = React.createClass({
treeize_: function (obj) {
let node = {};
let tree = {};
_.each(obj, function (p) {
node = tree;
p.split(path.sep).forEach(function (p) {
if (p in node) {
node = node[p];
return;
}
node[p] = {};
node = node[p];
});
});
return tree;
},
/** @jsx React.DOM */
"use strict";
const React = require('react-atom-fork');
const floop = require("../common/floop");
const permsEvent = {};
const HandleRequestPermView = React.createClass({
destroy: function () {
this.getDOMNode().parentNode.destroy();
},
grant: function () {
permsEvent.action = "add";
this.send();
},
deny: function () {
permsEvent.action = "reject";
this.send();
},
send: function () {
floop.send_perms(permsEvent);
this.destroy();
},
render: function () {
/** @jsx React.DOM */
"use strict";
const React = require('react-atom-fork');
const mixins = require("./mixins");
const atomUtils = require("../atom_utils");
const CodeReview = React.createClass({
mixins: [mixins.ReactUnwrapper, mixins.FormMixin],
onSubmit: function (state) {
const cb = this.props.cb.bind({}, null, state, this.refs.description.getDOMNode().value);
setTimeout(cb, 0);
this.destroy();
},
componentDidMount: function () {
this.refs.description.getDOMNode().focus();
},
render: function () {
return (
<form>
<h2 style="{{textAlign:">Code Review</h2>
<div>
<div>
<div></div></div></div></form>
/** @jsx React.DOM */
"use strict";
"use babel";
const React = require("react-atom-fork");
const mixins = require("./mixins");
const UserlistView = require("./user_view").UserlistView;
const UserlistPane = React.createClass({
mixins: [mixins.ReactUnwrapper],
render: function () {
return (
<div id="user-list-pane">
<div id="user-list-pane-header">
<img>Floobits
<i></i>
</div>
</div>
);
}
});
module.exports = UserlistPane;
/** @jsx React.DOM */
"use strict";
const React = require('react-atom-fork');
const mixins = require("./mixins");
const atomUtils = require("../atom_utils");
const YesNoCancel = React.createClass({
mixins: [mixins.ReactUnwrapper, mixins.FormMixin],
onSubmit: function (type) {
if (!type) {
type = "yes";
} else if (type.target) {
type = type.target.name;
}
const cb = this.props.cb.bind({}, null, type);
setTimeout(cb, 0);
this.destroy();
},
componentDidMount: function () {
this.refs.yes.getDOMNode().focus();
},
render: function () {
const yes = this.props.yes || "Yes";
}, this);
return (
<div>
{thumbnailNodes}
</div>
);
}
};
const ChatUserlistView = React.createClass({
mixins: [ListViewMixin],
componentName: "ChatUserlistView",
isListView: true,
});
const UserlistView = React.createClass({
componentName: "UserlistView",
mixins: [ListViewMixin],
isListView: false,
});
module.exports = {
Connection,
ChatUserlistView,
NotMeUserView,
UserlistView,
};
var utils = require('./utils');
var React = require('react-atom-fork');
var div = require('reactionary-atom-fork').div;
Component = React.createClass({
displayName: 'asdfasdfasdfasdf',
render: function () {
return div("asdf");
}
});
function ASDF () {
HTMLElement.call(this);
this.shadow = null;
this.styles = null;
}
utils.inherits(ASDF, HTMLElement);
ASDF.prototype.attach = function() {
return (
<div>
<img src="{conn.image.data}" title="{canEdit" style="{{width:">
{clickToVideo}
</div>
);
}
});
const VideoThumbnailView = React.createClass({
mixins: [UserView],
componentDidMount: function () {
const n = this.refs.volume.getDOMNode();
this.id = this.props.connection.visualizer.onVISUALIZE(function (volume) {
n.style.height = volume + "px";
n.style.width = volume + "px";
if (this.state.noMic && volume) {
this.setState({noMic: false});
}
}, this);
},
componentWillUnmount: function () {
const elem = this.refs["user-thumb-" + this.props.connection.id].getDOMNode();
this.props.connection.visualizer.off(this.id);
<span> </span>
<input tabindex="3" placeholder="Password" type="password">
<div>
<div>
<span> </span>
<input placeholder="Password confirmation" tabindex="4" type="password">
</div>
</div>
<input value="Sign Up" tabindex="5" type="submit">
}
});
const Welcome = React.createClass({
getInitialState: function () {
return {
create: true,
};
},
toggle_: function () {
this.setState({create: !this.state.create});
},
render: function () {
return (
<div id="floo-welcome-wrapper">
<div id="floo-main">
<div style="{{}}">
<div>
<div>
<div></div></div></div></div></div></div>
return (
<div>
<span>{connection.isMe ? "me" : connection.client }</span>
<span>{connection.path}</span>
{ this.props.isAdmin &&
<span>
<a href="#"><i></i> Kick</a>
</span>
}
</div>
);
}
});
const NotMeUserView = React.createClass({
kick_: function () {
this.props.user.kick();
},
editPerms_: function () {
var view = PermissionView({user: this.props.user, me: this.props.me});
modal.showView(view);
},
followUser_: function () {
editorAction.follow(this.props.user.id);
},
render: function () {
var isAdmin = this.props.isAdmin;
return (
<div>
<span>{this.props.user.id}</span>
<span></span></div>