This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { observable, action } from 'mobx'; | |
import OperationTablesService from '../services/OperationTablesService'; | |
import storage from '../helpers/storage'; | |
class SuccessTableStore { | |
filter = storage.get('filter'); | |
pageCount = 20; | |
@observable operations = []; | |
@observable totalCount = 0; | |
@observable tableCount = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import PropTypes from 'prop-types'; | |
import classnames from 'classnames/bind'; | |
import FirmFlagService from './../../services/FirmFlagServiсe'; | |
import style from './style..less'; | |
const cn = classnames.bind(style); | |
class UserVoiceBubble extends Component { | |
constructor(props) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import classnames from 'classnames/bind'; | |
import PropTypes from 'prop-types'; | |
import style from './style.less'; | |
const cn = classnames.bind(style); | |
class ElementsGroup extends React.Component { | |
getStyle = (i) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default class LocalStorage { | |
static get(name) { | |
return localStorage[name] ? JSON.parse(localStorage[name]) : undefined; | |
} | |
static set(name, value) { | |
localStorage[name] = JSON.stringify(value); | |
} | |
static delete(name) { |
NewerOlder