How to use the esp-js-react.shouldUpdateMixin function in esp-js-react

To help you get started, we’ve selected a few esp-js-react examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github esp / esp-js / packages / esp-js / examples / esp-js-react-agile-board / src / views / storyListItemView.tsx View on Github external
import * as classnames from 'classnames';
import * as React from 'react';
import { EventConst } from '../eventConst';
import { EpicLabel } from './epicLabel';
import { Story } from '../models/story';
import { StoryStatus } from '../models/storyStatus';
import { Router } from 'esp-js';
import { shouldUpdateMixin } from 'esp-js-react';

export interface StoryListItemViewProps {
    story: Story;
    router: Router;
}

@shouldUpdateMixin((nextProps: StoryListItemViewProps) => {
    return {
        isSelected: nextProps.story.isSelected,
        name: nextProps.story.name,
        description: nextProps.story.description,
        sataus: nextProps.story.status,
        epicName: nextProps.story.epic.name,
        epicColour: nextProps.story.epic.colour
    };
})
export class StoryListItemView extends React.Component {
    _publishEvent(eventName, event) {
        this.props.router.publishEvent(this.props.story.modelId, eventName, event);
    }

    shouldComponentUpdate(nextProps, nextState) {
        // return nextProps.story.isDirty; when https://github.com/esp/esp-js-react/issues/1 is implemented
github esp / esp-js / examples / esp-js-react-agile-board / src / views / workspaceView.tsx View on Github external
import * as React from 'react';
import * as classnames from 'classnames';
import { EventConst } from '../eventConst';
import { EpicListItemView } from './epicListItemView';
import { StoryListItemView } from './storyListItemView';
import { StoryDetailsView } from './storyDetailsView';
import { Router } from 'esp-js';
import { Workspace } from '../models/workspace';
import { shouldUpdateMixin } from 'esp-js-react';

export interface WorkspaceViewProps {
    model?: Workspace;
    router?: Router;
}

@shouldUpdateMixin((nextProps: WorkspaceViewProps) => {
    return {
        epics: nextProps.model.epics,
        displayedStories: nextProps.model.displayedStories,
        selectedStory: nextProps.model.selectedStory,
        showAllStoriesButton: nextProps.model.showAllStoriesButton
    };
})
export class WorkspaceView extends React.Component {
    render() {
        let workspace = this.props.model;
        let router = this.props.router;
        let epics = workspace.epics.map(epic => {
            return ();
        });
        let showAllClassName = classnames({'hide': !workspace.showAllStoriesButton});
        let displayedStories = workspace.displayedStories.map(story => {
github esp / esp-js / examples / esp-js-react-agile-board / src / views / storyListItemView.tsx View on Github external
import * as classnames from 'classnames';
import * as React from 'react';
import { EventConst } from '../eventConst';
import { EpicLabel } from './epicLabel';
import { Story } from '../models/story';
import { StoryStatus } from '../models/storyStatus';
import { Router } from 'esp-js';
import { shouldUpdateMixin } from 'esp-js-react';

export interface StoryListItemViewProps {
    story: Story;
    router: Router;
}

@shouldUpdateMixin((nextProps: StoryListItemViewProps) => {
    return {
        isSelected: nextProps.story.isSelected,
        name: nextProps.story.name,
        description: nextProps.story.description,
        status: nextProps.story.status,
        epicName: nextProps.story.epic.name,
        epicColour: nextProps.story.epic.colour
    };
})
export class StoryListItemView extends React.Component {
    _publishEvent(eventName, event) {
        this.props.router.publishEvent(this.props.story.modelId, eventName, event);
    }

    render() {
        let story = this.props.story;
github esp / esp-js / examples / esp-js-react-agile-board / src / views / epicListItemView.tsx View on Github external
import * as React from 'react';
import * as classnames from 'classnames';
import {EventConst} from '../eventConst';
import {EpicLabel} from './epicLabel';
import {Epic} from '../models/epic';
import {Router} from 'esp-js';
import {shouldUpdateMixin} from 'esp-js-react';

export interface EpicListItemViewProps {
    epic: Epic;
    router: Router;
}

@shouldUpdateMixin((nextProps: EpicListItemViewProps) => {
    return {
        name: nextProps.epic.name,
        isSelected: nextProps.epic.isSelected,
        colour: nextProps.epic.colour,
        stories: nextProps.epic.stories,
        doneCount: nextProps.epic.doneCount
    };
})
export class EpicListItemView extends React.Component {
    render() {
        let epic = this.props.epic;
        let router = this.props.router;
        let className = classnames('epicListItem', {'selectedItem': epic.isSelected});
        return (
            <div> {</div>
github esp / esp-js / packages / esp-js / examples / esp-js-react-agile-board / src / views / workspaceView.tsx View on Github external
import * as React from 'react';
import * as classnames from 'classnames';
import { EventConst } from '../eventConst';
import { EpicListItemView } from './epicListItemView';
import { StoryListItemView } from './storyListItemView';
import { StoryDetailsView } from './storyDetailsView';
import { Router } from 'esp-js';
import { Workspace } from '../models/workspace';
import { shouldUpdateMixin } from 'esp-js-react';

export interface WorkspaceViewProps {
    model: Workspace;
    router: Router;
}

@shouldUpdateMixin((nextProps: WorkspaceViewProps) =&gt; {
    return {
        epics: nextProps.model.epics,
        displayedStories: nextProps.model.displayedStories,
        selectedStory: nextProps.model.selectedStory,
        showAllStoriesButton: nextProps.model.showAllStoriesButton
    };
})
export class WorkspaceView extends React.Component {
    render() {
        let workspace = this.props.model;
        let router = this.props.router;
        let epics = workspace.epics.map(epic =&gt; {
            return ();
        });
        let showAllClassName = classnames({'hide': !workspace.showAllStoriesButton});
        let displayedStories = workspace.displayedStories.map(story =&gt; {
github esp / esp-js / packages / esp-js / examples / esp-js-react-agile-board / src / views / epicListItemView.tsx View on Github external
import * as React from 'react';
import * as classnames from 'classnames';
import { EventConst } from '../eventConst';
import { EpicLabel } from './epicLabel';
import { Epic } from '../models/epic';
import { Router } from 'esp-js';
import { shouldUpdateMixin } from 'esp-js-react';

export interface EpicListItemViewProps {
    epic: Epic;
    router: Router;
}

@shouldUpdateMixin((nextProps: EpicListItemViewProps) =&gt; {
    return {
        name: nextProps.epic.name,
        isSelected: nextProps.epic.isSelected,
        colour: nextProps.epic.colour,
        stories: nextProps.epic.stories,
        doneCount: nextProps.epic.doneCount
    };
})
export class EpicListItemView extends React.Component {
    render() {
        let epic = this.props.epic;
        let router = this.props.router;
        let className = classnames('epicListItem', {'selectedItem': epic.isSelected});
        return (
            <div> {router.publishEvent(epic.modelId, EventConst.EPIC_SELECTED, {epic});}}&gt;</div>

esp-js-react

Evented State Processor (ESP) React Components

Apache-2.0
Latest version published 7 months ago

Package Health Score

56 / 100
Full package analysis