mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
Changed export to module.exports
This commit is contained in:
parent
7781fbad76
commit
8a78ee5df6
@ -652,4 +652,4 @@ function app() {
|
|||||||
return application_;
|
return application_;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { app };
|
module.exports = { app };
|
@ -96,4 +96,4 @@ class BaseCommand {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { BaseCommand };
|
module.exports = { BaseCommand };
|
@ -315,4 +315,4 @@ cliUtils.redrawDone = function() {
|
|||||||
redrawStarted_ = false;
|
redrawStarted_ = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { cliUtils };
|
module.exports = { cliUtils };
|
@ -108,4 +108,4 @@ function getOptionColWidth(options) {
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { renderCommandHelp };
|
module.exports = { renderCommandHelp };
|
@ -620,4 +620,4 @@ async function enexXmlToMd(stream, resources) {
|
|||||||
return processMdArrayNewLines(mdLines);
|
return processMdArrayNewLines(mdLines);
|
||||||
}
|
}
|
||||||
|
|
||||||
export { enexXmlToMd, processMdArrayNewLines, NEWLINE, addResourceTag };
|
module.exports = { enexXmlToMd, processMdArrayNewLines, NEWLINE, addResourceTag };
|
@ -408,4 +408,4 @@ function importEnex(parentFolderId, filePath, importOptions = null) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export { importEnex };
|
module.exports = { importEnex };
|
@ -119,4 +119,4 @@ class OneDriveApiNodeUtils {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { OneDriveApiNodeUtils };
|
module.exports = { OneDriveApiNodeUtils };
|
@ -175,4 +175,4 @@ function fileApi() {
|
|||||||
return fileApi_;
|
return fileApi_;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { setupDatabase, setupDatabaseAndSynchronizer, db, synchronizer, fileApi, sleep, clearDatabase, switchClient, syncTargetId };
|
module.exports = { setupDatabase, setupDatabaseAndSynchronizer, db, synchronizer, fileApi, sleep, clearDatabase, switchClient, syncTargetId };
|
@ -12,7 +12,7 @@ import {
|
|||||||
View
|
View
|
||||||
} from 'react-native';
|
} from 'react-native';
|
||||||
|
|
||||||
export default class Joplin extends Component {
|
module.exports = default class Joplin extends Component {;
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<View style={styles.container}>
|
<View style={styles.container}>
|
||||||
|
@ -364,4 +364,4 @@ BaseModel.TYPE_SEARCH = 7;
|
|||||||
BaseModel.db_ = null;
|
BaseModel.db_ = null;
|
||||||
BaseModel.dispatch = function(o) {};
|
BaseModel.dispatch = function(o) {};
|
||||||
|
|
||||||
export { BaseModel };
|
module.exports = { BaseModel };
|
@ -138,4 +138,4 @@ const ActionButton = connect(
|
|||||||
}
|
}
|
||||||
)(ActionButtonComponent)
|
)(ActionButtonComponent)
|
||||||
|
|
||||||
export { ActionButton };
|
module.exports = { ActionButton };
|
@ -63,4 +63,4 @@ const AppNav = connect(
|
|||||||
}
|
}
|
||||||
)(AppNavComponent)
|
)(AppNavComponent)
|
||||||
|
|
||||||
export { AppNav };
|
module.exports = { AppNav };
|
@ -37,4 +37,4 @@ class BaseScreenComponent extends React.Component {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { BaseScreenComponent };
|
module.exports = { BaseScreenComponent };
|
@ -66,4 +66,4 @@ class Checkbox extends Component {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { Checkbox };
|
module.exports = { Checkbox };
|
@ -69,4 +69,4 @@ function themeStyle(theme) {
|
|||||||
return themeCache_[theme];
|
return themeCache_[theme];
|
||||||
}
|
}
|
||||||
|
|
||||||
export { globalStyle, themeStyle }
|
module.exports = { globalStyle, themeStyle };
|
@ -226,4 +226,4 @@ class NoteBodyViewer extends Component {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { NoteBodyViewer };
|
module.exports = { NoteBodyViewer };
|
@ -129,4 +129,4 @@ const NoteItem = connect(
|
|||||||
}
|
}
|
||||||
)(NoteItemComponent)
|
)(NoteItemComponent)
|
||||||
|
|
||||||
export { NoteItem }
|
module.exports = { NoteItem };
|
@ -117,4 +117,4 @@ const NoteList = connect(
|
|||||||
}
|
}
|
||||||
)(NoteListComponent)
|
)(NoteListComponent)
|
||||||
|
|
||||||
export { NoteList };
|
module.exports = { NoteList };
|
@ -323,4 +323,4 @@ const ScreenHeader = connect(
|
|||||||
}
|
}
|
||||||
)(ScreenHeaderComponent)
|
)(ScreenHeaderComponent)
|
||||||
|
|
||||||
export { ScreenHeader };
|
module.exports = { ScreenHeader };
|
@ -149,4 +149,4 @@ const ConfigScreen = connect(
|
|||||||
}
|
}
|
||||||
)(ConfigScreenComponent)
|
)(ConfigScreenComponent)
|
||||||
|
|
||||||
export { ConfigScreen };
|
module.exports = { ConfigScreen };
|
@ -129,4 +129,4 @@ const FolderScreen = connect(
|
|||||||
}
|
}
|
||||||
)(FolderScreenComponent)
|
)(FolderScreenComponent)
|
||||||
|
|
||||||
export { FolderScreen };
|
module.exports = { FolderScreen };
|
@ -106,4 +106,4 @@ const LogScreen = connect(
|
|||||||
}
|
}
|
||||||
)(LogScreenComponent)
|
)(LogScreenComponent)
|
||||||
|
|
||||||
export { LogScreen };
|
module.exports = { LogScreen };
|
@ -570,4 +570,4 @@ const NoteScreen = connect(
|
|||||||
}
|
}
|
||||||
)(NoteScreenComponent)
|
)(NoteScreenComponent)
|
||||||
|
|
||||||
export { NoteScreen };
|
module.exports = { NoteScreen };
|
@ -171,4 +171,4 @@ const NotesScreen = connect(
|
|||||||
}
|
}
|
||||||
)(NotesScreenComponent)
|
)(NotesScreenComponent)
|
||||||
|
|
||||||
export { NotesScreen };
|
module.exports = { NotesScreen };
|
@ -107,4 +107,4 @@ const OneDriveLoginScreen = connect(
|
|||||||
}
|
}
|
||||||
)(OneDriveLoginScreenComponent)
|
)(OneDriveLoginScreenComponent)
|
||||||
|
|
||||||
export { OneDriveLoginScreen };
|
module.exports = { OneDriveLoginScreen };
|
@ -178,4 +178,4 @@ const SearchScreen = connect(
|
|||||||
}
|
}
|
||||||
)(SearchScreenComponent)
|
)(SearchScreenComponent)
|
||||||
|
|
||||||
export { SearchScreen };
|
module.exports = { SearchScreen };
|
@ -119,4 +119,4 @@ const StatusScreen = connect(
|
|||||||
}
|
}
|
||||||
)(StatusScreenComponent)
|
)(StatusScreenComponent)
|
||||||
|
|
||||||
export { StatusScreen };
|
module.exports = { StatusScreen };
|
@ -73,4 +73,4 @@ const TagScreen = connect(
|
|||||||
}
|
}
|
||||||
)(TagScreenComponent)
|
)(TagScreenComponent)
|
||||||
|
|
||||||
export { TagScreen };
|
module.exports = { TagScreen };
|
@ -61,4 +61,4 @@ const WelcomeScreen = connect(
|
|||||||
}
|
}
|
||||||
)(WelcomeScreenComponent)
|
)(WelcomeScreenComponent)
|
||||||
|
|
||||||
export { WelcomeScreen };
|
module.exports = { WelcomeScreen };
|
@ -263,4 +263,4 @@ const SideMenuContent = connect(
|
|||||||
}
|
}
|
||||||
)(SideMenuContentComponent)
|
)(SideMenuContentComponent)
|
||||||
|
|
||||||
export { SideMenuContent };
|
module.exports = { SideMenuContent };
|
@ -69,4 +69,4 @@ class DatabaseDriverNode {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { DatabaseDriverNode };
|
module.exports = { DatabaseDriverNode };
|
@ -54,4 +54,4 @@ class DatabaseDriverReactNative {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { DatabaseDriverReactNative }
|
module.exports = { DatabaseDriverReactNative };
|
@ -310,4 +310,4 @@ Database.TYPE_INT = 1;
|
|||||||
Database.TYPE_TEXT = 2;
|
Database.TYPE_TEXT = 2;
|
||||||
Database.TYPE_NUMERIC = 3;
|
Database.TYPE_NUMERIC = 3;
|
||||||
|
|
||||||
export { Database };
|
module.exports = { Database };
|
@ -63,4 +63,4 @@ dialogs.error = (parentComponent, message) => {
|
|||||||
|
|
||||||
dialogs.DialogBox = DialogBox
|
dialogs.DialogBox = DialogBox
|
||||||
|
|
||||||
export { dialogs };
|
module.exports = { dialogs };
|
@ -32,4 +32,4 @@ class EventDispatcher {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { EventDispatcher };
|
module.exports = { EventDispatcher };
|
@ -235,4 +235,4 @@ class FileApiDriverLocal {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { FileApiDriverLocal };
|
module.exports = { FileApiDriverLocal };
|
@ -165,4 +165,4 @@ class FileApiDriverMemory {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { FileApiDriverMemory };
|
module.exports = { FileApiDriverMemory };
|
@ -274,4 +274,4 @@ class FileApiDriverOneDrive {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { FileApiDriverOneDrive };
|
module.exports = { FileApiDriverOneDrive };
|
@ -109,4 +109,4 @@ class FileApi {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { FileApi };
|
module.exports = { FileApi };
|
@ -13,4 +13,4 @@ class FoldersScreenUtils {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { FoldersScreenUtils }
|
module.exports = { FoldersScreenUtils };
|
@ -7,4 +7,4 @@ class FsDriverDummy {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { FsDriverDummy }
|
module.exports = { FsDriverDummy };
|
@ -25,4 +25,4 @@ class GeolocationNode {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { GeolocationNode };
|
module.exports = { GeolocationNode };
|
@ -35,4 +35,4 @@ class GeolocationReact {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { GeolocationReact };
|
module.exports = { GeolocationReact };
|
@ -304,4 +304,4 @@ Database.TYPE_INT = 1;
|
|||||||
Database.TYPE_TEXT = 2;
|
Database.TYPE_TEXT = 2;
|
||||||
Database.TYPE_NUMERIC = 3;
|
Database.TYPE_NUMERIC = 3;
|
||||||
|
|
||||||
export { JoplinDatabase };
|
module.exports = { JoplinDatabase };
|
@ -296,4 +296,4 @@ function _(s, ...args) {
|
|||||||
return sprintf(result, ...args);
|
return sprintf(result, ...args);
|
||||||
}
|
}
|
||||||
|
|
||||||
export { _, supportedLocales, localeStrings, setLocale, supportedLocalesToLanguages, defaultLocale, closestSupportedLocale, languageCode };
|
module.exports = { _, supportedLocales, localeStrings, setLocale, supportedLocalesToLanguages, defaultLocale, closestSupportedLocale, languageCode };
|
@ -37,4 +37,4 @@ Log.LEVEL_INFO = 10;
|
|||||||
Log.LEVEL_WARN = 20;
|
Log.LEVEL_WARN = 20;
|
||||||
Log.LEVEL_ERROR = 30;
|
Log.LEVEL_ERROR = 30;
|
||||||
|
|
||||||
export { Log };
|
module.exports = { Log };
|
@ -180,4 +180,4 @@ Logger.LEVEL_WARN = 20;
|
|||||||
Logger.LEVEL_INFO = 30;
|
Logger.LEVEL_INFO = 30;
|
||||||
Logger.LEVEL_DEBUG = 40;
|
Logger.LEVEL_DEBUG = 40;
|
||||||
|
|
||||||
export { Logger };
|
module.exports = { Logger };
|
@ -13,4 +13,4 @@ const markdownUtils = {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export { markdownUtils };
|
module.exports = { markdownUtils };
|
@ -20,4 +20,4 @@ const mime = {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { mime };
|
module.exports = { mime };
|
@ -435,4 +435,4 @@ BaseItem.syncItemDefinitions_ = [
|
|||||||
{ type: BaseModel.TYPE_NOTE_TAG, className: 'NoteTag' },
|
{ type: BaseModel.TYPE_NOTE_TAG, className: 'NoteTag' },
|
||||||
];
|
];
|
||||||
|
|
||||||
export { BaseItem };
|
module.exports = { BaseItem };
|
@ -152,4 +152,4 @@ class Folder extends BaseItem {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { Folder };
|
module.exports = { Folder };
|
@ -25,4 +25,4 @@ class NoteTag extends BaseItem {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { NoteTag };
|
module.exports = { NoteTag };
|
@ -430,4 +430,4 @@ class Note extends BaseItem {
|
|||||||
Note.updateGeolocationEnabled_ = true;
|
Note.updateGeolocationEnabled_ = true;
|
||||||
Note.geolocationUpdating_ = false;
|
Note.geolocationUpdating_ = false;
|
||||||
|
|
||||||
export { Note };
|
module.exports = { Note };
|
@ -80,4 +80,4 @@ class Resource extends BaseItem {
|
|||||||
|
|
||||||
Resource.IMAGE_MAX_DIMENSION = 1920;
|
Resource.IMAGE_MAX_DIMENSION = 1920;
|
||||||
|
|
||||||
export { Resource };
|
module.exports = { Resource };
|
@ -386,4 +386,4 @@ Setting.constants_ = {
|
|||||||
tempDir: '',
|
tempDir: '',
|
||||||
}
|
}
|
||||||
|
|
||||||
export { Setting };
|
module.exports = { Setting };
|
@ -89,4 +89,4 @@ class Tag extends BaseItem {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { Tag };
|
module.exports = { Tag };
|
@ -30,4 +30,4 @@ netUtils.findAvailablePort = async (possiblePorts, extraRandomPortsToTry = 20) =
|
|||||||
return port;
|
return port;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { netUtils };
|
module.exports = { netUtils };
|
@ -287,4 +287,4 @@ class OneDriveApi {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { OneDriveApi };
|
module.exports = { OneDriveApi };
|
@ -32,4 +32,4 @@ function parameters() {
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { parameters }
|
module.exports = { parameters };
|
@ -35,4 +35,4 @@ function isHidden(path) {
|
|||||||
return b[0] === '.';
|
return b[0] === '.';
|
||||||
}
|
}
|
||||||
|
|
||||||
export { basename, dirname, filename, isHidden, fileExtension };
|
module.exports = { basename, dirname, filename, isHidden, fileExtension };
|
@ -53,4 +53,4 @@ PoorManIntervals.lastUpdateTime_ = 0;
|
|||||||
PoorManIntervals.intervalId_ = 0;
|
PoorManIntervals.intervalId_ = 0;
|
||||||
PoorManIntervals.intervals_ = [];
|
PoorManIntervals.intervals_ = [];
|
||||||
|
|
||||||
export { PoorManIntervals }
|
module.exports = { PoorManIntervals };
|
@ -34,4 +34,4 @@ function promiseWhile(callback) {
|
|||||||
}, 100);
|
}, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
export { promiseChain, promiseWhile }
|
module.exports = { promiseChain, promiseWhile };
|
2
ReactNativeClient/lib/react-logger.js
vendored
2
ReactNativeClient/lib/react-logger.js
vendored
@ -6,4 +6,4 @@ class ReactLogger extends Logger {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { ReactLogger }
|
module.exports = { ReactLogger };
|
@ -419,4 +419,4 @@ const reducer = (state = defaultState, action) => {
|
|||||||
return newState;
|
return newState;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { reducer, defaultState };
|
module.exports = { reducer, defaultState };
|
@ -223,4 +223,4 @@ reg.db = () => {
|
|||||||
return reg.db_;
|
return reg.db_;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { reg }
|
module.exports = { reg };
|
@ -40,4 +40,4 @@ class BackButtonService {
|
|||||||
BackButtonService.defaultHandler_ = null;
|
BackButtonService.defaultHandler_ = null;
|
||||||
BackButtonService.handlers_ = [];
|
BackButtonService.handlers_ = [];
|
||||||
|
|
||||||
export { BackButtonService };
|
module.exports = { BackButtonService };
|
@ -93,4 +93,4 @@ class Exporter {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { Exporter }
|
module.exports = { Exporter };
|
@ -87,4 +87,4 @@ class ReportService {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { ReportService }
|
module.exports = { ReportService };
|
@ -144,4 +144,4 @@ function shimInit() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export { shimInit }
|
module.exports = { shimInit };
|
@ -70,4 +70,4 @@ function shimInit() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export { shimInit }
|
module.exports = { shimInit };
|
@ -18,4 +18,4 @@ shim.uploadBlob = () => { throw new Error('Not implemented'); }
|
|||||||
shim.setInterval = setInterval;
|
shim.setInterval = setInterval;
|
||||||
shim.clearInterval = clearInterval;
|
shim.clearInterval = clearInterval;
|
||||||
|
|
||||||
export { shim };
|
module.exports = { shim };
|
@ -122,4 +122,4 @@ function wrap(text, indent, width) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export { removeDiacritics, escapeFilename, wrap };
|
module.exports = { removeDiacritics, escapeFilename, wrap };
|
@ -502,4 +502,4 @@ class Synchronizer {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { Synchronizer };
|
module.exports = { Synchronizer };
|
@ -44,4 +44,4 @@ let time = {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { time };
|
module.exports = { time };
|
@ -8,4 +8,4 @@ const uuid = {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export { uuid };
|
module.exports = { uuid };
|
@ -17,4 +17,4 @@ function main() {
|
|||||||
// AppComponent.componentDidMount(), when the application is ready.
|
// AppComponent.componentDidMount(), when the application is ready.
|
||||||
}
|
}
|
||||||
|
|
||||||
export { main }
|
module.exports = { main };
|
@ -293,4 +293,4 @@ class Root extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export { Root };
|
module.exports = { Root };
|
@ -348,7 +348,7 @@ exit
|
|||||||
|
|
||||||
Exits the application.
|
Exits the application.
|
||||||
|
|
||||||
export <directory>
|
module.exports = <directory>
|
||||||
|
|
||||||
Exports Joplin data to the given directory. By default, it will export the
|
Exports Joplin data to the given directory. By default, it will export the
|
||||||
complete database including notebooks, notes, tags and resources.
|
complete database including notebooks, notes, tags and resources.
|
||||||
|
Loading…
Reference in New Issue
Block a user