lbry-desktop/src/renderer/redux/reducers/publish.js

178 lines
4.1 KiB
JavaScript
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import { handleActions } from 'util/redux-utils';
2018-04-18 06:03:01 +02:00
import { buildURI } from 'lbry-redux';
2018-03-26 23:32:43 +02:00
import * as ACTIONS from 'constants/action_types';
import { CHANNEL_ANONYMOUS } from 'constants/claim';
type PublishState = {
editingURI: ?string,
filePath: ?string,
contentIsFree: boolean,
price: {
amount: number,
currency: string,
},
title: string,
thumbnail: string,
description: string,
language: string,
tosAccepted: boolean,
channel: string,
name: string,
nameError: ?string,
bid: number,
bidError: ?string,
otherLicenseDescription: string,
licenseUrl: string,
copyrightNotice: string,
pendingPublishes: Array<any>,
};
export type UpdatePublishFormData = {
filePath?: string,
contentIsFree?: boolean,
price?: {
amount: number,
currency: string,
},
title?: string,
thumbnail?: string,
description?: string,
language?: string,
tosAccepted?: boolean,
channel?: string,
name?: string,
nameError?: string,
bid?: number,
bidError?: string,
otherLicenseDescription?: string,
licenseUrl?: string,
copyrightNotice?: string,
};
export type UpdatePublishFormAction = {
type: ACTIONS.UPDATE_PUBLISH_FORM | ACTIONS.DO_PREPARE_EDIT,
data: UpdatePublishFormData,
};
export type PublishParams = {
name: string,
bid: number,
filePath: string,
description: ?string,
language: string,
publishingLicense: string,
publishingLicenseUrl: string,
thumbnail: ?string,
nsfw: boolean,
channel: string,
title: string,
contentIsFree: boolean,
uri: string,
license: ?string,
licenseUrl: ?string,
price: {
currency: string,
amount: number,
},
2018-04-04 01:46:03 +02:00
source?: {
contentType: string,
source: string,
sourceType: string,
version: string,
},
2018-03-26 23:32:43 +02:00
};
const defaultState: PublishState = {
editingURI: undefined,
filePath: undefined,
contentIsFree: true,
price: {
amount: 1,
currency: 'LBC',
},
title: '',
thumbnail: '',
description: '',
language: 'en',
nsfw: false,
channel: CHANNEL_ANONYMOUS,
tosAccepted: false,
name: '',
nameError: undefined,
bid: 0.1,
bidError: undefined,
licenseType: 'None',
otherLicenseDescription: '',
licenseUrl: '',
copyrightNotice: 'All rights reserved',
publishing: false,
publishSuccess: false,
publishError: undefined,
pendingPublishes: [],
};
export default handleActions(
{
[ACTIONS.UPDATE_PUBLISH_FORM]: (state, action): PublishState => {
const { data } = action;
return {
...state,
...data,
};
},
[ACTIONS.CLEAR_PUBLISH]: (state: PublishState): PublishState => {
const { pendingPublishes } = state;
return { ...defaultState, pendingPublishes };
},
[ACTIONS.PUBLISH_START]: (state: PublishState): PublishState => ({
...state,
publishing: true,
}),
[ACTIONS.PUBLISH_FAIL]: (state: PublishState): PublishState => ({
...state,
publishing: false,
}),
[ACTIONS.PUBLISH_SUCCESS]: (state: PublishState, action): PublishState => {
const { pendingPublish } = action.data;
// If it's an edit, don't create a pending publish
// It will take some more work to know when an edit is confirmed
2018-03-26 23:32:43 +02:00
const newPendingPublishes = state.pendingPublishes.slice();
if (pendingPublish.isEdit) {
newPendingPublishes.push(pendingPublish);
}
2018-03-26 23:32:43 +02:00
return {
...state,
publishing: false,
pendingPublishes: newPendingPublishes,
};
},
[ACTIONS.REMOVE_PENDING_PUBLISH]: (state: PublishState, action) => {
const { name } = action.data;
const pendingPublishes = state.pendingPublishes.filter(publish => publish.name !== name);
return {
...state,
pendingPublishes,
};
},
[ACTIONS.DO_PREPARE_EDIT]: (state: PublishState, action) => {
const { ...publishData } = action.data;
const { channel, name } = publishData;
const uri = buildURI({
channelName: channel,
contentName: name,
});
return {
...defaultState,
editingURI: uri,
...publishData,
};
},
},
defaultState
);