mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-14 18:26:26 +00:00
Compare commits
30 Commits
0.4.2-rc.0
...
0.4.1-beta
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee91daad7e | ||
|
|
09482ebcf3 | ||
|
|
67424f2d3a | ||
|
|
61cc44cc83 | ||
|
|
59d3c6c94f | ||
|
|
388027b731 | ||
|
|
9758f5baa8 | ||
|
|
248262a597 | ||
|
|
3f54eb52b2 | ||
|
|
1e7415b692 | ||
|
|
ff950ef28a | ||
|
|
5fa37dbffb | ||
|
|
06a54d451c | ||
|
|
45541a255b | ||
|
|
345d7b427a | ||
|
|
b2845e2284 | ||
|
|
4bda84d69c | ||
|
|
b510aa11f5 | ||
|
|
85f833c865 | ||
|
|
b93990d10b | ||
|
|
a0bcb8edbe | ||
|
|
19930a2472 | ||
|
|
e75d95b1fc | ||
|
|
3b7215b36a | ||
|
|
8ab96cf2fb | ||
|
|
63af2fd8b1 | ||
|
|
fcf26f7844 | ||
|
|
a05bba15e7 | ||
|
|
3b907627f7 | ||
|
|
2284fd41b9 |
@@ -1,6 +1,5 @@
|
|||||||
const electron = require('electron')
|
var BrowserWindow = require('browser-window')
|
||||||
const BrowserWindow = electron.BrowserWindow
|
var path = require('path')
|
||||||
const path = require('path')
|
|
||||||
|
|
||||||
var finderWindow = new BrowserWindow({
|
var finderWindow = new BrowserWindow({
|
||||||
width: 640,
|
width: 640,
|
||||||
@@ -19,7 +18,7 @@ var finderWindow = new BrowserWindow({
|
|||||||
|
|
||||||
var url = path.resolve(__dirname, '../browser/finder/index.html')
|
var url = path.resolve(__dirname, '../browser/finder/index.html')
|
||||||
|
|
||||||
finderWindow.loadURL('file://' + url)
|
finderWindow.loadUrl('file://' + url)
|
||||||
|
|
||||||
finderWindow.on('blur', function () {
|
finderWindow.on('blur', function () {
|
||||||
finderWindow.hide()
|
finderWindow.hide()
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
const electron = require('electron')
|
var BrowserWindow = require('browser-window')
|
||||||
const BrowserWindow = electron.BrowserWindow
|
var path = require('path')
|
||||||
const path = require('path')
|
|
||||||
|
|
||||||
var mainWindow = new BrowserWindow({
|
var mainWindow = new BrowserWindow({
|
||||||
width: 1080,
|
width: 1080,
|
||||||
@@ -12,9 +11,9 @@ var mainWindow = new BrowserWindow({
|
|||||||
'standard-window': false
|
'standard-window': false
|
||||||
})
|
})
|
||||||
|
|
||||||
const url = path.resolve(__dirname, '../browser/main/index.html')
|
var url = path.resolve(__dirname, '../browser/main/index.html')
|
||||||
|
|
||||||
mainWindow.loadURL('file://' + url)
|
mainWindow.loadUrl('file://' + url)
|
||||||
|
|
||||||
mainWindow.setVisibleOnAllWorkspaces(true)
|
mainWindow.setVisibleOnAllWorkspaces(true)
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
const electron = require('electron')
|
var BrowserWindow = require('browser-window')
|
||||||
const BrowserWindow = electron.BrowserWindow
|
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{
|
{
|
||||||
@@ -90,6 +89,13 @@ module.exports = [
|
|||||||
click: function () {
|
click: function () {
|
||||||
BrowserWindow.getFocusedWindow().reload()
|
BrowserWindow.getFocusedWindow().reload()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Toggle DevTools',
|
||||||
|
accelerator: 'Alt+Command+I',
|
||||||
|
click: function () {
|
||||||
|
BrowserWindow.getFocusedWindow().toggleDevTools()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
42
atom-lib/updater.js
Normal file
42
atom-lib/updater.js
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
var autoUpdater = require('auto-updater')
|
||||||
|
var nn = require('node-notifier')
|
||||||
|
var app = require('app')
|
||||||
|
var path = require('path')
|
||||||
|
|
||||||
|
var version = app.getVersion()
|
||||||
|
var versionText = (version == null || version.length === 0) ? 'DEV version' : 'v' + version
|
||||||
|
var versionNotified = false
|
||||||
|
autoUpdater
|
||||||
|
.on('error', function (err, message) {
|
||||||
|
console.error(err)
|
||||||
|
console.error(message)
|
||||||
|
console.log(path.resolve(__dirname, '../resources/favicon-230x230.png'))
|
||||||
|
nn.notify({
|
||||||
|
title: 'Error! ' + versionText,
|
||||||
|
icon: path.resolve(__dirname, '../resources/favicon-230x230.png'),
|
||||||
|
message: message
|
||||||
|
})
|
||||||
|
})
|
||||||
|
// .on('checking-for-update', function () {
|
||||||
|
// // Connecting
|
||||||
|
// console.log('checking...')
|
||||||
|
// })
|
||||||
|
.on('update-available', function () {
|
||||||
|
nn.notify({
|
||||||
|
title: 'Update is available!! ' + versionText,
|
||||||
|
icon: path.resolve(__dirname, '../resources/favicon-230x230.png'),
|
||||||
|
message: 'Download started.. wait for the update ready.'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.on('update-not-available', function () {
|
||||||
|
if (!versionNotified) {
|
||||||
|
nn.notify({
|
||||||
|
title: 'Latest Build!! ' + versionText,
|
||||||
|
icon: path.resolve(__dirname, '../resources/favicon-230x230.png'),
|
||||||
|
message: 'Hope you to enjoy our app :D'
|
||||||
|
})
|
||||||
|
versionNotified = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
module.exports = autoUpdater
|
||||||
@@ -16,8 +16,11 @@ export function searchArticle (input) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function refreshData (data) {
|
export function refreshData () {
|
||||||
console.log('refreshing data')
|
console.log('refreshing data')
|
||||||
|
let data = JSON.parse(localStorage.getItem('local'))
|
||||||
|
if (data == null) return null
|
||||||
|
|
||||||
let { folders, articles } = data
|
let { folders, articles } = data
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -28,12 +31,3 @@ export function refreshData (data) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
|
||||||
SELECT_ARTICLE,
|
|
||||||
SEARCH_ARTICLE,
|
|
||||||
REFRESH_DATA,
|
|
||||||
selectArticle,
|
|
||||||
searchArticle,
|
|
||||||
refreshData
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
|
|
||||||
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css" media="screen" charset="utf-8">
|
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css" media="screen" charset="utf-8">
|
||||||
<link rel="stylesheet" href="../../node_modules/devicon/devicon.min.css">
|
<link rel="stylesheet" href="../../node_modules/devicon/devicon.min.css">
|
||||||
<link rel="stylesheet" href="../../node_modules/highlight.js/styles/xcode.css">
|
|
||||||
<link rel="shortcut icon" href="favicon.ico">
|
<link rel="shortcut icon" href="favicon.ico">
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@@ -28,8 +27,7 @@
|
|||||||
<div id="content"></div>
|
<div id="content"></div>
|
||||||
<script src="../../submodules/ace/src-min/ace.js"></script>
|
<script src="../../submodules/ace/src-min/ace.js"></script>
|
||||||
<script>
|
<script>
|
||||||
const electron = require('electron')
|
require('web-frame').setZoomLevelLimits(1, 1)
|
||||||
electron.webFrame.setZoomLevelLimits(1, 1)
|
|
||||||
var scriptUrl = process.env.BOOST_ENV === 'development'
|
var scriptUrl = process.env.BOOST_ENV === 'development'
|
||||||
? 'http://localhost:8080/assets/finder.js'
|
? 'http://localhost:8080/assets/finder.js'
|
||||||
: '../../compiled/finder.js'
|
: '../../compiled/finder.js'
|
||||||
|
|||||||
@@ -6,17 +6,18 @@ import { createStore } from 'redux'
|
|||||||
import FinderInput from './FinderInput'
|
import FinderInput from './FinderInput'
|
||||||
import FinderList from './FinderList'
|
import FinderList from './FinderList'
|
||||||
import FinderDetail from './FinderDetail'
|
import FinderDetail from './FinderDetail'
|
||||||
import actions, { selectArticle, searchArticle } from './actions'
|
import { selectArticle, searchArticle, refreshData } from './actions'
|
||||||
import _ from 'lodash'
|
import _ from 'lodash'
|
||||||
import dataStore from 'boost/dataStore'
|
import activityRecord from 'boost/activityRecord'
|
||||||
|
|
||||||
const electron = require('electron')
|
|
||||||
const { remote, clipboard } = electron
|
|
||||||
|
|
||||||
|
import remote from 'remote'
|
||||||
var hideFinder = remote.getGlobal('hideFinder')
|
var hideFinder = remote.getGlobal('hideFinder')
|
||||||
|
import clipboard from 'clipboard'
|
||||||
|
|
||||||
function notify (...args) {
|
var notifier = require('node-notifier')
|
||||||
return new window.Notification(...args)
|
var path = require('path')
|
||||||
|
function getIconPath () {
|
||||||
|
return path.resolve(global.__dirname, '../../resources/favicon-230x230.png')
|
||||||
}
|
}
|
||||||
|
|
||||||
require('../styles/finder/index.styl')
|
require('../styles/finder/index.styl')
|
||||||
@@ -63,9 +64,12 @@ class FinderMain extends React.Component {
|
|||||||
saveToClipboard () {
|
saveToClipboard () {
|
||||||
let { activeArticle } = this.props
|
let { activeArticle } = this.props
|
||||||
clipboard.writeText(activeArticle.content)
|
clipboard.writeText(activeArticle.content)
|
||||||
|
activityRecord.emit('FINDER_COPY')
|
||||||
|
|
||||||
notify('Saved to Clipboard!', {
|
notifier.notify({
|
||||||
body: 'Paste it wherever you want!'
|
icon: getIconPath(),
|
||||||
|
'title': 'Saved to Clipboard!',
|
||||||
|
'message': 'Paste it wherever you want!'
|
||||||
})
|
})
|
||||||
hideFinder()
|
hideFinder()
|
||||||
}
|
}
|
||||||
@@ -212,19 +216,13 @@ function remap (state) {
|
|||||||
var Finder = connect(remap)(FinderMain)
|
var Finder = connect(remap)(FinderMain)
|
||||||
var store = createStore(reducer)
|
var store = createStore(reducer)
|
||||||
|
|
||||||
function refreshData () {
|
|
||||||
let data = dataStore.getData()
|
|
||||||
store.dispatch(actions.refreshData(data))
|
|
||||||
}
|
|
||||||
|
|
||||||
window.onfocus = e => {
|
window.onfocus = e => {
|
||||||
refreshData()
|
store.dispatch(refreshData())
|
||||||
|
activityRecord.emit('FINDER_OPEN')
|
||||||
}
|
}
|
||||||
|
|
||||||
ReactDOM.render((
|
ReactDOM.render((
|
||||||
<Provider store={store}>
|
<Provider store={store}>
|
||||||
<Finder/>
|
<Finder/>
|
||||||
</Provider>
|
</Provider>
|
||||||
), document.getElementById('content'), function () {
|
), document.getElementById('content'))
|
||||||
refreshData()
|
|
||||||
})
|
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
import { combineReducers } from 'redux'
|
import { combineReducers } from 'redux'
|
||||||
import { SELECT_ARTICLE, SEARCH_ARTICLE, REFRESH_DATA } from './actions'
|
import { SELECT_ARTICLE, SEARCH_ARTICLE, REFRESH_DATA } from './actions'
|
||||||
|
|
||||||
let initialArticles = []
|
let data = JSON.parse(localStorage.getItem('local'))
|
||||||
let initialFolders = []
|
|
||||||
|
let initialArticles = data != null ? data.articles : []
|
||||||
|
let initialFolders = data != null ? data.folders : []
|
||||||
let initialStatus = {
|
let initialStatus = {
|
||||||
articleKey: null,
|
articleKey: null,
|
||||||
search: ''
|
search: ''
|
||||||
|
|||||||
@@ -7,9 +7,8 @@ import ArticleTopBar from './HomePage/ArticleTopBar'
|
|||||||
import ArticleList from './HomePage/ArticleList'
|
import ArticleList from './HomePage/ArticleList'
|
||||||
import ArticleDetail from './HomePage/ArticleDetail'
|
import ArticleDetail from './HomePage/ArticleDetail'
|
||||||
import _ from 'lodash'
|
import _ from 'lodash'
|
||||||
|
import keygen from 'boost/keygen'
|
||||||
import { isModalOpen, closeModal } from 'boost/modal'
|
import { isModalOpen, closeModal } from 'boost/modal'
|
||||||
const electron = require('electron')
|
|
||||||
const BrowserWindow = electron.remote.BrowserWindow
|
|
||||||
|
|
||||||
const TEXT_FILTER = 'TEXT_FILTER'
|
const TEXT_FILTER = 'TEXT_FILTER'
|
||||||
const FOLDER_FILTER = 'FOLDER_FILTER'
|
const FOLDER_FILTER = 'FOLDER_FILTER'
|
||||||
@@ -29,13 +28,6 @@ class HomePage extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
handleKeyDown (e) {
|
handleKeyDown (e) {
|
||||||
if (process.env.BOOST_ENV === 'development' && e.keyCode === 73 && e.metaKey && e.altKey) {
|
|
||||||
e.preventDefault()
|
|
||||||
e.stopPropagation()
|
|
||||||
BrowserWindow.getFocusedWindow().toggleDevTools()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isModalOpen()) {
|
if (isModalOpen()) {
|
||||||
if (e.keyCode === 27) closeModal()
|
if (e.keyCode === 27) closeModal()
|
||||||
return
|
return
|
||||||
@@ -226,6 +218,42 @@ function remap (state) {
|
|||||||
let activeArticle = _.findWhere(articles, {key: status.articleKey})
|
let activeArticle = _.findWhere(articles, {key: status.articleKey})
|
||||||
if (activeArticle == null) activeArticle = articles[0]
|
if (activeArticle == null) activeArticle = articles[0]
|
||||||
|
|
||||||
|
// remove Unsaved new article if user is not CREATE_MODE
|
||||||
|
if (status.mode !== CREATE_MODE) {
|
||||||
|
let targetIndex = _.findIndex(articles, article => article.status === NEW)
|
||||||
|
|
||||||
|
if (targetIndex >= 0) articles.splice(targetIndex, 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
// switching CREATE_MODE
|
||||||
|
// restrict
|
||||||
|
// 1. team have one folder at least
|
||||||
|
// or Change IDLE MODE
|
||||||
|
if (status.mode === CREATE_MODE) {
|
||||||
|
let newArticle = _.findWhere(articles, {status: 'NEW'})
|
||||||
|
console.log('targetFolders')
|
||||||
|
let FolderKey = targetFolders.length > 0
|
||||||
|
? targetFolders[0].key
|
||||||
|
: folders[0].key
|
||||||
|
|
||||||
|
if (newArticle == null) {
|
||||||
|
newArticle = {
|
||||||
|
id: null,
|
||||||
|
key: keygen(),
|
||||||
|
title: '',
|
||||||
|
content: '',
|
||||||
|
mode: 'markdown',
|
||||||
|
tags: [],
|
||||||
|
FolderKey: FolderKey,
|
||||||
|
status: NEW
|
||||||
|
}
|
||||||
|
articles.unshift(newArticle)
|
||||||
|
}
|
||||||
|
activeArticle = newArticle
|
||||||
|
} else if (status.mode === CREATE_MODE) {
|
||||||
|
status.mode = IDLE_MODE
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
folders,
|
folders,
|
||||||
status,
|
status,
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import MarkdownPreview from 'boost/components/MarkdownPreview'
|
|||||||
import CodeEditor from 'boost/components/CodeEditor'
|
import CodeEditor from 'boost/components/CodeEditor'
|
||||||
import {
|
import {
|
||||||
IDLE_MODE,
|
IDLE_MODE,
|
||||||
|
CREATE_MODE,
|
||||||
EDIT_MODE,
|
EDIT_MODE,
|
||||||
switchMode,
|
switchMode,
|
||||||
switchArticle,
|
switchArticle,
|
||||||
@@ -113,7 +114,7 @@ export default class ArticleDetail extends React.Component {
|
|||||||
|
|
||||||
componentDidUpdate (prevProps) {
|
componentDidUpdate (prevProps) {
|
||||||
let isModeChanged = prevProps.status.mode !== this.props.status.mode
|
let isModeChanged = prevProps.status.mode !== this.props.status.mode
|
||||||
if (isModeChanged && this.props.status.mode === EDIT_MODE) {
|
if (isModeChanged && this.props.status.mode !== IDLE_MODE) {
|
||||||
ReactDOM.findDOMNode(this.refs.title).focus()
|
ReactDOM.findDOMNode(this.refs.title).focus()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -123,7 +124,6 @@ export default class ArticleDetail extends React.Component {
|
|||||||
|
|
||||||
let isArticleChanged = nextProps.activeArticle != null && (nextProps.activeArticle.key !== this.state.article.key)
|
let isArticleChanged = nextProps.activeArticle != null && (nextProps.activeArticle.key !== this.state.article.key)
|
||||||
let isModeChanged = nextProps.status.mode !== this.props.status.mode
|
let isModeChanged = nextProps.status.mode !== this.props.status.mode
|
||||||
|
|
||||||
// Reset article input
|
// Reset article input
|
||||||
if (isArticleChanged || (isModeChanged && nextProps.status.mode !== IDLE_MODE)) {
|
if (isArticleChanged || (isModeChanged && nextProps.status.mode !== IDLE_MODE)) {
|
||||||
Object.assign(nextState, {
|
Object.assign(nextState, {
|
||||||
@@ -247,14 +247,13 @@ export default class ArticleDetail extends React.Component {
|
|||||||
handleCancelButtonClick (e) {
|
handleCancelButtonClick (e) {
|
||||||
let { activeArticle, dispatch } = this.props
|
let { activeArticle, dispatch } = this.props
|
||||||
|
|
||||||
if (activeArticle.status === NEW) {
|
dispatch(unlockStatus())
|
||||||
dispatch(switchArticle(null))
|
if (activeArticle.status === NEW) dispatch(switchArticle(null))
|
||||||
}
|
|
||||||
dispatch(switchMode(IDLE_MODE))
|
dispatch(switchMode(IDLE_MODE))
|
||||||
}
|
}
|
||||||
|
|
||||||
handleSaveButtonClick (e) {
|
handleSaveButtonClick (e) {
|
||||||
let { dispatch, folders, status } = this.props
|
let { dispatch, folders, filters } = this.props
|
||||||
let article = this.state.article
|
let article = this.state.article
|
||||||
let newArticle = Object.assign({}, article)
|
let newArticle = Object.assign({}, article)
|
||||||
|
|
||||||
@@ -278,7 +277,7 @@ export default class ArticleDetail extends React.Component {
|
|||||||
// Searchを初期化し、更新先のFolder filterをかける
|
// Searchを初期化し、更新先のFolder filterをかける
|
||||||
// かかれていない時に
|
// かかれていない時に
|
||||||
// Searchを初期化する
|
// Searchを初期化する
|
||||||
if (status.targetFolders.length > 0) dispatch(switchFolder(folder.name))
|
if (filters.folder.length !== 0) dispatch(switchFolder(folder.name))
|
||||||
else dispatch(clearSearch())
|
else dispatch(clearSearch())
|
||||||
dispatch(switchArticle(newArticle.key))
|
dispatch(switchArticle(newArticle.key))
|
||||||
}
|
}
|
||||||
@@ -320,6 +319,8 @@ export default class ArticleDetail extends React.Component {
|
|||||||
let article = this.state.article
|
let article = this.state.article
|
||||||
article.tags = tags
|
article.tags = tags
|
||||||
|
|
||||||
|
this.setState({article: article})
|
||||||
|
|
||||||
let _isTagChanged = _.difference(article.tags, this.props.activeArticle.tags).length > 0 || _.difference(this.props.activeArticle.tags, article.tags).length > 0
|
let _isTagChanged = _.difference(article.tags, this.props.activeArticle.tags).length > 0 || _.difference(this.props.activeArticle.tags, article.tags).length > 0
|
||||||
|
|
||||||
let { isTitleChanged, isContentChanged, isArticleEdited, isModeChanged } = this.state
|
let { isTitleChanged, isContentChanged, isArticleEdited, isModeChanged } = this.state
|
||||||
@@ -499,6 +500,7 @@ export default class ArticleDetail extends React.Component {
|
|||||||
if (activeArticle == null) return this.renderEmpty()
|
if (activeArticle == null) return this.renderEmpty()
|
||||||
|
|
||||||
switch (status.mode) {
|
switch (status.mode) {
|
||||||
|
case CREATE_MODE:
|
||||||
case EDIT_MODE:
|
case EDIT_MODE:
|
||||||
return this.renderEdit()
|
return this.renderEdit()
|
||||||
case IDLE_MODE:
|
case IDLE_MODE:
|
||||||
|
|||||||
@@ -1,14 +1,12 @@
|
|||||||
import React, { PropTypes } from 'react'
|
import React, { PropTypes } from 'react'
|
||||||
import { findWhere } from 'lodash'
|
import { findWhere } from 'lodash'
|
||||||
import { setSearchFilter, switchFolder, switchMode, switchArticle, updateArticle, EDIT_MODE } from 'boost/actions'
|
import { setSearchFilter, switchFolder, switchMode, CREATE_MODE } from 'boost/actions'
|
||||||
import { openModal } from 'boost/modal'
|
import { openModal } from 'boost/modal'
|
||||||
import FolderMark from 'boost/components/FolderMark'
|
import FolderMark from 'boost/components/FolderMark'
|
||||||
import Preferences from 'boost/components/modal/Preferences'
|
import Preferences from 'boost/components/modal/Preferences'
|
||||||
import CreateNewFolder from 'boost/components/modal/CreateNewFolder'
|
import CreateNewFolder from 'boost/components/modal/CreateNewFolder'
|
||||||
import keygen from 'boost/keygen'
|
|
||||||
|
|
||||||
const electron = require('electron')
|
import remote from 'remote'
|
||||||
const remote = electron.remote
|
|
||||||
let userName = remote.getGlobal('process').env.USER
|
let userName = remote.getGlobal('process').env.USER
|
||||||
|
|
||||||
const BRAND_COLOR = '#18AF90'
|
const BRAND_COLOR = '#18AF90'
|
||||||
@@ -67,27 +65,9 @@ export default class ArticleNavigator extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
handleNewPostButtonClick (e) {
|
handleNewPostButtonClick (e) {
|
||||||
let { dispatch, folders, status } = this.props
|
let { dispatch } = this.props
|
||||||
let { targetFolders } = status
|
|
||||||
|
|
||||||
let FolderKey = targetFolders.length > 0
|
dispatch(switchMode(CREATE_MODE))
|
||||||
? targetFolders[0].key
|
|
||||||
: folders[0].key
|
|
||||||
|
|
||||||
let newArticle = {
|
|
||||||
id: null,
|
|
||||||
key: keygen(),
|
|
||||||
title: '',
|
|
||||||
content: '',
|
|
||||||
mode: 'markdown',
|
|
||||||
tags: [],
|
|
||||||
FolderKey: FolderKey,
|
|
||||||
status: 'NEW'
|
|
||||||
}
|
|
||||||
|
|
||||||
dispatch(updateArticle(newArticle))
|
|
||||||
dispatch(switchArticle(newArticle.key, true))
|
|
||||||
dispatch(switchMode(EDIT_MODE))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
handleNewFolderButton (e) {
|
handleNewFolderButton (e) {
|
||||||
@@ -114,7 +94,7 @@ export default class ArticleNavigator extends React.Component {
|
|||||||
|
|
||||||
let folderElememts = folders.map((folder, index) => {
|
let folderElememts = folders.map((folder, index) => {
|
||||||
let isActive = findWhere(targetFolders, {key: folder.key})
|
let isActive = findWhere(targetFolders, {key: folder.key})
|
||||||
let articleCount = allArticles.filter(article => article.FolderKey === folder.key && article.status !== 'NEW').length
|
let articleCount = allArticles.filter(article => article.FolderKey === folder.key).length
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<button onClick={e => this.handleFolderButtonClick(folder.name)(e)} key={'folder-' + folder.key} className={isActive ? 'active' : ''}>
|
<button onClick={e => this.handleFolderButtonClick(folder.name)(e)} key={'folder-' + folder.key} className={isActive ? 'active' : ''}>
|
||||||
|
|||||||
0
browser/main/HomePage/untitled
Normal file
0
browser/main/HomePage/untitled
Normal file
@@ -1,5 +1,4 @@
|
|||||||
const electron = require('electron')
|
import ipc from 'ipc'
|
||||||
const ipc = electron.ipcRenderer
|
|
||||||
import React, { PropTypes } from 'react'
|
import React, { PropTypes } from 'react'
|
||||||
|
|
||||||
var ContactModal = require('boost/components/modal/ContactModal')
|
var ContactModal = require('boost/components/modal/ContactModal')
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
|
|
||||||
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css" media="screen" charset="utf-8">
|
<link rel="stylesheet" href="../../node_modules/font-awesome/css/font-awesome.min.css" media="screen" charset="utf-8">
|
||||||
<link rel="stylesheet" href="../../node_modules/devicon/devicon.min.css">
|
<link rel="stylesheet" href="../../node_modules/devicon/devicon.min.css">
|
||||||
<link rel="stylesheet" href="../../node_modules/highlight.js/styles/xcode.css">
|
|
||||||
<link rel="shortcut icon" href="favicon.ico">
|
<link rel="shortcut icon" href="favicon.ico">
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@@ -54,9 +53,8 @@
|
|||||||
|
|
||||||
<script src="../../submodules/ace/src-min/ace.js"></script>
|
<script src="../../submodules/ace/src-min/ace.js"></script>
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
const electron = require('electron')
|
require('web-frame').setZoomLevelLimits(1, 1)
|
||||||
electron.webFrame.setZoomLevelLimits(1, 1)
|
var version = require('remote').require('app').getVersion()
|
||||||
var version = electron.remote.app.getVersion()
|
|
||||||
document.title = 'Boost' + ((version == null || version.length === 0) ? ' DEV' : '')
|
document.title = 'Boost' + ((version == null || version.length === 0) ? ' DEV' : '')
|
||||||
var scriptUrl = process.env.BOOST_ENV === 'development'
|
var scriptUrl = process.env.BOOST_ENV === 'development'
|
||||||
? 'http://localhost:8080/assets/main.js'
|
? 'http://localhost:8080/assets/main.js'
|
||||||
|
|||||||
@@ -11,24 +11,13 @@ require('../styles/main/index.styl')
|
|||||||
import { openModal } from 'boost/modal'
|
import { openModal } from 'boost/modal'
|
||||||
import Tutorial from 'boost/components/modal/Tutorial'
|
import Tutorial from 'boost/components/modal/Tutorial'
|
||||||
import activityRecord from 'boost/activityRecord'
|
import activityRecord from 'boost/activityRecord'
|
||||||
const electron = require('electron')
|
import ipc from 'ipc'
|
||||||
const ipc = electron.ipcRenderer
|
|
||||||
|
|
||||||
activityRecord.init()
|
activityRecord.init()
|
||||||
window.addEventListener('online', function () {
|
window.addEventListener('online', function () {
|
||||||
ipc.send('check-update', 'check-update')
|
ipc.send('check-update', 'check-update')
|
||||||
})
|
})
|
||||||
|
|
||||||
function notify (...args) {
|
|
||||||
return new window.Notification(...args)
|
|
||||||
}
|
|
||||||
|
|
||||||
ipc.on('notify', function (e, payload) {
|
|
||||||
notify(payload.title, {
|
|
||||||
body: payload.body
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
let routes = (
|
let routes = (
|
||||||
<Route path='/' component={MainPage}>
|
<Route path='/' component={MainPage}>
|
||||||
<IndexRoute name='home' component={HomePage}/>
|
<IndexRoute name='home' component={HomePage}/>
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ marked()
|
|||||||
display list-item
|
display list-item
|
||||||
line-height 1.8em
|
line-height 1.8em
|
||||||
code
|
code
|
||||||
font-family Monaco, Menlo, 'Ubuntu Mono', Consolas, source-code-pro, monospace;
|
font-family monospace
|
||||||
padding 2px 4px
|
padding 2px 4px
|
||||||
border solid 1px borderColor
|
border solid 1px borderColor
|
||||||
border-radius 4px
|
border-radius 4px
|
||||||
@@ -77,7 +77,6 @@ marked()
|
|||||||
overflow-x auto
|
overflow-x auto
|
||||||
margin 15px 0 25px
|
margin 15px 0 25px
|
||||||
background-color #F6F6F6
|
background-color #F6F6F6
|
||||||
line-height 1.35em
|
|
||||||
&>code
|
&>code
|
||||||
padding 0
|
padding 0
|
||||||
border none
|
border none
|
||||||
|
|||||||
72
finder.js
72
finder.js
@@ -1,72 +0,0 @@
|
|||||||
const electron = require('electron')
|
|
||||||
const app = electron.app
|
|
||||||
const Tray = electron.Tray
|
|
||||||
const Menu = electron.Menu
|
|
||||||
const MenuItem = electron.MenuItem
|
|
||||||
|
|
||||||
process.stdin.setEncoding('utf8')
|
|
||||||
|
|
||||||
console.log = function () {
|
|
||||||
process.stdout.write(JSON.stringify({
|
|
||||||
type: 'log',
|
|
||||||
data: JSON.stringify(Array.prototype.slice.call(arguments).join(' '))
|
|
||||||
}), 'utf-8')
|
|
||||||
}
|
|
||||||
|
|
||||||
function emit (type, data) {
|
|
||||||
process.stdout.write(JSON.stringify({
|
|
||||||
type: type,
|
|
||||||
data: JSON.stringify(data)
|
|
||||||
}), 'utf-8')
|
|
||||||
}
|
|
||||||
|
|
||||||
var finderWindow
|
|
||||||
app.on('ready', function () {
|
|
||||||
app.dock.hide()
|
|
||||||
var appIcon = new Tray(__dirname + '/resources/tray-icon.png')
|
|
||||||
appIcon.setToolTip('Boost')
|
|
||||||
|
|
||||||
finderWindow = require('./atom-lib/finder-window')
|
|
||||||
finderWindow.webContents.on('did-finish-load', function () {
|
|
||||||
var trayMenu = new Menu()
|
|
||||||
trayMenu.append(new MenuItem({
|
|
||||||
label: 'Open Main window',
|
|
||||||
click: function () {
|
|
||||||
emit('show-main-window')
|
|
||||||
}
|
|
||||||
}))
|
|
||||||
trayMenu.append(new MenuItem({
|
|
||||||
label: 'Open Finder',
|
|
||||||
click: function () {
|
|
||||||
finderWindow.show()
|
|
||||||
}
|
|
||||||
}))
|
|
||||||
trayMenu.append(new MenuItem({
|
|
||||||
label: 'Quit',
|
|
||||||
click: function () {
|
|
||||||
emit('quit-app')
|
|
||||||
}
|
|
||||||
}))
|
|
||||||
appIcon.setContextMenu(trayMenu)
|
|
||||||
|
|
||||||
process.stdin.on('data', function (payload) {
|
|
||||||
try {
|
|
||||||
payload = JSON.parse(payload)
|
|
||||||
} catch (e) {
|
|
||||||
console.log('Not parsable payload : ', payload)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
console.log('from main >> ', payload.type)
|
|
||||||
switch (payload.type) {
|
|
||||||
case 'open-finder':
|
|
||||||
finderWindow.show()
|
|
||||||
break
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
global.hideFinder = function () {
|
|
||||||
Menu.sendActionToFirstResponder('hide:')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
10
index.js
10
index.js
@@ -1,10 +0,0 @@
|
|||||||
function isFinderCalled () {
|
|
||||||
var argv = process.argv.slice(1)
|
|
||||||
return argv.some(arg => arg.match(/--finder/))
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isFinderCalled()) {
|
|
||||||
require('./finder.js')
|
|
||||||
} else {
|
|
||||||
require('./main.js')
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
// Action types
|
// Action types
|
||||||
export const CLEAR_NEW_ARTICLE = 'CLEAR_NEW_ARTICLE'
|
|
||||||
export const ARTICLE_UPDATE = 'ARTICLE_UPDATE'
|
export const ARTICLE_UPDATE = 'ARTICLE_UPDATE'
|
||||||
export const ARTICLE_DESTROY = 'ARTICLE_DESTROY'
|
export const ARTICLE_DESTROY = 'ARTICLE_DESTROY'
|
||||||
export const FOLDER_CREATE = 'FOLDER_CREATE'
|
export const FOLDER_CREATE = 'FOLDER_CREATE'
|
||||||
@@ -19,18 +18,13 @@ export const TOGGLE_TUTORIAL = 'TOGGLE_TUTORIAL'
|
|||||||
|
|
||||||
// Status - mode
|
// Status - mode
|
||||||
export const IDLE_MODE = 'IDLE_MODE'
|
export const IDLE_MODE = 'IDLE_MODE'
|
||||||
|
export const CREATE_MODE = 'CREATE_MODE'
|
||||||
export const EDIT_MODE = 'EDIT_MODE'
|
export const EDIT_MODE = 'EDIT_MODE'
|
||||||
|
|
||||||
// Article status
|
// Article status
|
||||||
export const NEW = 'NEW'
|
export const NEW = 'NEW'
|
||||||
|
|
||||||
// DB
|
// DB
|
||||||
export function clearNewArticle () {
|
|
||||||
return {
|
|
||||||
type: CLEAR_NEW_ARTICLE
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function updateArticle (article) {
|
export function updateArticle (article) {
|
||||||
return {
|
return {
|
||||||
type: ARTICLE_UPDATE,
|
type: ARTICLE_UPDATE,
|
||||||
@@ -90,13 +84,10 @@ export function switchMode (mode) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function switchArticle (articleKey, isNew) {
|
export function switchArticle (articleKey) {
|
||||||
return {
|
return {
|
||||||
type: SWITCH_ARTICLE,
|
type: SWITCH_ARTICLE,
|
||||||
data: {
|
data: articleKey
|
||||||
key: articleKey,
|
|
||||||
isNew: isNew
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,10 +47,6 @@ Post all records(except today)
|
|||||||
and remove all posted records
|
and remove all posted records
|
||||||
*/
|
*/
|
||||||
export function postRecords (data) {
|
export function postRecords (data) {
|
||||||
if (process.env.BOOST_ENV === 'development') {
|
|
||||||
console.log('post failed - on development')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let records = getAllRecords()
|
let records = getAllRecords()
|
||||||
records = records.filter(record => {
|
records = records.filter(record => {
|
||||||
return !isSameDate(new Date(), record.date)
|
return !isSameDate(new Date(), record.date)
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import React, { PropTypes } from 'react'
|
import React, { PropTypes } from 'react'
|
||||||
const electron = require('electron')
|
import shell from 'shell'
|
||||||
const shell = electron.shell
|
|
||||||
|
|
||||||
export default class ExternalLink extends React.Component {
|
export default class ExternalLink extends React.Component {
|
||||||
handleClick (e) {
|
handleClick (e) {
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
|
import shell from 'shell'
|
||||||
var React = require('react')
|
var React = require('react')
|
||||||
var { PropTypes } = React
|
var { PropTypes } = React
|
||||||
import markdown from 'boost/markdown'
|
import markdown from 'boost/markdown'
|
||||||
var ReactDOM = require('react-dom')
|
var ReactDOM = require('react-dom')
|
||||||
|
|
||||||
const electron = require('electron')
|
|
||||||
const shell = electron.shell
|
|
||||||
|
|
||||||
function handleAnchorClick (e) {
|
function handleAnchorClick (e) {
|
||||||
shell.openExternal(e.target.href)
|
shell.openExternal(e.target.href)
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import React, { PropTypes } from 'react'
|
import React, { PropTypes } from 'react'
|
||||||
import store from 'boost/store'
|
import store from 'boost/store'
|
||||||
import { unlockStatus, clearNewArticle } from 'boost/actions'
|
import { unlockStatus } from 'boost/actions'
|
||||||
|
|
||||||
export default class EditedAlert extends React.Component {
|
export default class EditedAlert extends React.Component {
|
||||||
handleNoButtonClick (e) {
|
handleNoButtonClick (e) {
|
||||||
@@ -10,7 +10,6 @@ export default class EditedAlert extends React.Component {
|
|||||||
handleYesButtonClick (e) {
|
handleYesButtonClick (e) {
|
||||||
store.dispatch(unlockStatus())
|
store.dispatch(unlockStatus())
|
||||||
store.dispatch(this.props.action)
|
store.dispatch(this.props.action)
|
||||||
store.dispatch(clearNewArticle())
|
|
||||||
this.props.close()
|
this.props.close()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import linkState from 'boost/linkState'
|
import linkState from 'boost/linkState'
|
||||||
|
import remote from 'remote'
|
||||||
const electron = require('electron')
|
import ipc from 'ipc'
|
||||||
const ipc = electron.ipcRenderer
|
|
||||||
const remote = electron.remote
|
|
||||||
|
|
||||||
export default class AppSettingTab extends React.Component {
|
export default class AppSettingTab extends React.Component {
|
||||||
constructor (props) {
|
constructor (props) {
|
||||||
@@ -49,9 +47,7 @@ export default class AppSettingTab extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
handleKeyDown (e) {
|
handleKeyDown (e) {
|
||||||
if (e.keyCode === 13) {
|
this.submitHotKey()
|
||||||
this.submitHotKey()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
|
|||||||
@@ -83,6 +83,158 @@ class Preferences extends React.Component {
|
|||||||
return (<AppSettingTab/>)
|
return (<AppSettingTab/>)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// handleProfileSaveButtonClick (e) {
|
||||||
|
// let profileState = this.state.profile
|
||||||
|
// profileState.userInfo.alert = {
|
||||||
|
// type: 'info',
|
||||||
|
// message: 'Sending...'
|
||||||
|
// }
|
||||||
|
// this.setState({profile: profileState}, () => {
|
||||||
|
// let input = {
|
||||||
|
// profileName: profileState.userInfo.profileName,
|
||||||
|
// email: profileState.userInfo.email
|
||||||
|
// }
|
||||||
|
// api.updateUserInfo(input)
|
||||||
|
// .then(res => {
|
||||||
|
// let profileState = this.state.profile
|
||||||
|
// profileState.userInfo.alert = {
|
||||||
|
// type: 'success',
|
||||||
|
// message: 'Successfully done!'
|
||||||
|
// }
|
||||||
|
// this.setState({profile: profileState})
|
||||||
|
// })
|
||||||
|
// .catch(err => {
|
||||||
|
// var message
|
||||||
|
// if (err.status != null) {
|
||||||
|
// message = err.response.body.message
|
||||||
|
// } else if (err.code === 'ECONNREFUSED') {
|
||||||
|
// message = 'Can\'t connect to API server.'
|
||||||
|
// } else throw err
|
||||||
|
|
||||||
|
// let profileState = this.state.profile
|
||||||
|
// profileState.userInfo.alert = {
|
||||||
|
// type: 'error',
|
||||||
|
// message: message
|
||||||
|
// }
|
||||||
|
|
||||||
|
// this.setState({profile: profileState})
|
||||||
|
// })
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
|
||||||
|
// handlePasswordSaveButton (e) {
|
||||||
|
// let profileState = this.state.profile
|
||||||
|
|
||||||
|
// if (profileState.password.newPassword !== profileState.password.confirmation) {
|
||||||
|
// profileState.password.alert = {
|
||||||
|
// type: 'error',
|
||||||
|
// message: 'Confirmation doesn\'t match'
|
||||||
|
// }
|
||||||
|
// this.setState({profile: profileState})
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
|
||||||
|
// profileState.password.alert = {
|
||||||
|
// type: 'info',
|
||||||
|
// message: 'Sending...'
|
||||||
|
// }
|
||||||
|
|
||||||
|
// this.setState({profile: profileState}, () => {
|
||||||
|
// let input = {
|
||||||
|
// password: profileState.password.currentPassword,
|
||||||
|
// newPassword: profileState.password.newPassword
|
||||||
|
// }
|
||||||
|
// api.updatePassword(input)
|
||||||
|
// .then(res => {
|
||||||
|
// let profileState = this.state.profile
|
||||||
|
// profileState.password.alert = {
|
||||||
|
// type: 'success',
|
||||||
|
// message: 'Successfully done!'
|
||||||
|
// }
|
||||||
|
// profileState.password.currentPassword = ''
|
||||||
|
// profileState.password.newPassword = ''
|
||||||
|
// profileState.password.confirmation = ''
|
||||||
|
|
||||||
|
// this.setState({profile: profileState})
|
||||||
|
// })
|
||||||
|
// .catch(err => {
|
||||||
|
// var message
|
||||||
|
// if (err.status != null) {
|
||||||
|
// message = err.response.body.message
|
||||||
|
// } else if (err.code === 'ECONNREFUSED') {
|
||||||
|
// message = 'Can\'t connect to API server.'
|
||||||
|
// } else throw err
|
||||||
|
|
||||||
|
// let profileState = this.state.profile
|
||||||
|
// profileState.password.alert = {
|
||||||
|
// type: 'error',
|
||||||
|
// message: message
|
||||||
|
// }
|
||||||
|
// profileState.password.currentPassword = ''
|
||||||
|
// profileState.password.newPassword = ''
|
||||||
|
// profileState.password.confirmation = ''
|
||||||
|
|
||||||
|
// this.setState({profile: profileState}, () => {
|
||||||
|
// if (this.refs.currentPassword != null) findDOMNode(this.refs.currentPassword).focus()
|
||||||
|
// })
|
||||||
|
// })
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
|
||||||
|
// renderProfile () {
|
||||||
|
// let profileState = this.state.profile
|
||||||
|
// return (
|
||||||
|
// <div className='content profile'>
|
||||||
|
// <div className='section userSection'>
|
||||||
|
// <div className='sectionTitle'>User Info</div>
|
||||||
|
// <div className='sectionInput'>
|
||||||
|
// <label>Profile Name</label>
|
||||||
|
// <input valueLink={this.linkState('profile.userInfo.profileName')} type='text'/>
|
||||||
|
// </div>
|
||||||
|
// <div className='sectionInput'>
|
||||||
|
// <label>E-mail</label>
|
||||||
|
// <input valueLink={this.linkState('profile.userInfo.email')} type='text'/>
|
||||||
|
// </div>
|
||||||
|
// <div className='sectionConfirm'>
|
||||||
|
// <button onClick={e => this.handleProfileSaveButtonClick(e)}>Save</button>
|
||||||
|
|
||||||
|
// {this.state.profile.userInfo.alert != null
|
||||||
|
// ? (
|
||||||
|
// <div className={'alert ' + profileState.userInfo.alert.type}>{profileState.userInfo.alert.message}</div>
|
||||||
|
// )
|
||||||
|
// : null}
|
||||||
|
// </div>
|
||||||
|
// </div>
|
||||||
|
|
||||||
|
// <div className='section passwordSection'>
|
||||||
|
// <div className='sectionTitle'>Password</div>
|
||||||
|
// <div className='sectionInput'>
|
||||||
|
// <label>Current Password</label>
|
||||||
|
// <input ref='currentPassword' valueLink={this.linkState('profile.password.currentPassword')} type='password' placeholder='Current Password'/>
|
||||||
|
// </div>
|
||||||
|
// <div className='sectionInput'>
|
||||||
|
// <label>New Password</label>
|
||||||
|
// <input valueLink={this.linkState('profile.password.newPassword')} type='password' placeholder='New Password'/>
|
||||||
|
// </div>
|
||||||
|
// <div className='sectionInput'>
|
||||||
|
// <label>Confirmation</label>
|
||||||
|
// <input valueLink={this.linkState('profile.password.confirmation')} type='password' placeholder='Confirmation'/>
|
||||||
|
// </div>
|
||||||
|
// <div className='sectionConfirm'>
|
||||||
|
// <button onClick={e => this.handlePasswordSaveButton(e)}>Save</button>
|
||||||
|
|
||||||
|
// {profileState.password.alert != null
|
||||||
|
// ? (
|
||||||
|
// <div className={'alert ' + profileState.password.alert.type}>{profileState.password.alert.message}</div>
|
||||||
|
// )
|
||||||
|
// : null}
|
||||||
|
// </div>
|
||||||
|
// </div>
|
||||||
|
// </div>
|
||||||
|
// )
|
||||||
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Preferences.propTypes = {
|
Preferences.propTypes = {
|
||||||
|
|||||||
@@ -1,27 +1,11 @@
|
|||||||
import keygen from 'boost/keygen'
|
import keygen from 'boost/keygen'
|
||||||
const electron = require('electron')
|
|
||||||
const remote = electron.remote
|
|
||||||
const jetpack = require('fs-jetpack')
|
|
||||||
const path = require('path')
|
|
||||||
|
|
||||||
let defaultContent = 'Boost is a brand new note App for programmers.\n\n> 下に日本語版があります。\n\n# \u25CEfeature\n\nBoost has some preponderant functions for efficient engineer\'s task.See some part of it.\n\n1. classify information by\u300CFolders\u300D\n2. deal with great variety of syntax\n3. Finder function\n\n\uFF0A\u3000\uFF0A\u3000\uFF0A\u3000\uFF0A\n\n# 1. classify information by \u300CFolders\u300D- access the information you needed easily.\n\n\u300CFolders\u300D which on the left side bar. Press plus button now. flexible way of classification.\n- Create Folder every language or flamework\n- Make Folder for your own casual memos\n\n# 2. Deal with a great variety of syntax \u2013 instead of your brain\nSave handy all information related with programming\n- Use markdown and gather api specification\n- Well using module and snippet\n\nSave them on Boost, you don\'t need to rewrite or re-search same code again.\n\n# 3. Load Finder function \u2013 now you don\'t need to spell command by hand typing.\n\n**Shift +ctrl+tab** press buttons at same time.\nThen, the window will show up for search Boost contents that instant.\n\nUsing cursor key to chose, press enter, cmd+v to paste and\u2026 please check it out by your own eye.\n\n- Such command spl or linux which programmers often use but troublesome to hand type\n\n- (Phrases commonly used for e-mail or customer support)\n\nWe support preponderant efficiency\n\n\uFF0A\u3000\uFF0A\u3000\uFF0A\u3000\uFF0A\n\n## \u25CEfor more information\nFrequently updated with this blog ( http:\/\/blog-jp.b00st.io )\n\nHave wonderful programmer life!\n\n## Hack your memory**\n\n\n\n# 日本語版\n\n**Boost**は全く新しいエンジニアライクのノートアプリです。\n\n# ◎特徴\nBoostはエンジニアの仕事を圧倒的に効率化するいくつかの機能を備えています。\nその一部をご紹介します。\n1. Folderで情報を分類\n2. 豊富なsyantaxに対応\n3. Finder機能\n\n\n* * * *\n\n# 1. Folderで情報を分類、欲しい情報にすぐアクセス。\n左側のバーに存在する「Folders」。\n今すぐプラスボタンを押しましょう。\n分類の仕方も自由自在です。\n- 言語やフレームワークごとにFolderを作成\n- 自分用のカジュアルなメモをまとめる場としてFolderを作成\n\n\n# 2. 豊富なsyntaxに対応、自分の脳の代わりに。\nプログラミングに関する情報を全て、手軽に保存しましょう。\n- mdで、apiの仕様をまとめる\n- よく使うモジュールやスニペット\n\nBoostに保存しておくことで、何度も同じコードを書いたり調べたりする必要がなくなります。\n\n# 3. Finder機能を搭載、もうコマンドを手打ちする必要はありません。\n**「shift+ctrl+tab」** を同時に押してみてください。\nここでは、一瞬でBoostの中身を検索するウィンドウを表示させることができます。\n\n矢印キーで選択、Enterを押し、cmd+vでペーストすると…続きはご自身の目でお確かめください。\n- sqlやlinux等の、よく使うが手打ちが面倒なコマンド\n- (メールやカスタマーサポート等でよく使うフレーズ)\n\n私たちは、圧倒的な効率性を支援します。\n\* * * *\n\n\n## ◎詳しくは\nこちらのブログ( http://blog-jp.b00st.io )にて随時更新しています。\n\nそれでは素晴らしいエンジニアライフを!\n\n## Hack your memory**'
|
let defaultContent = 'Boost is a brand new note App for programmers.\n\n> 下に日本語版があります。\n\n# \u25CEfeature\n\nBoost has some preponderant functions for efficient engineer\'s task.See some part of it.\n\n1. classify information by\u300CFolders\u300D\n2. deal with great variety of syntax\n3. Finder function\n\n\uFF0A\u3000\uFF0A\u3000\uFF0A\u3000\uFF0A\n\n# 1. classify information by \u300CFolders\u300D- access the information you needed easily.\n\n\u300CFolders\u300D which on the left side bar. Press plus button now. flexible way of classification.\n- Create Folder every language or flamework\n- Make Folder for your own casual memos\n\n# 2. Deal with a great variety of syntax \u2013 instead of your brain\nSave handy all information related with programming\n- Use markdown and gather api specification\n- Well using module and snippet\n\nSave them on Boost, you don\'t need to rewrite or re-search same code again.\n\n# 3. Load Finder function \u2013 now you don\'t need to spell command by hand typing.\n\n**Shift +cmd+tab** press buttons at same time.\nThen, the window will show up for search Boost contents that instant.\n\nUsing cursor key to chose, press enter, cmd+v to paste and\u2026 please check it out by your own eye.\n\n- Such command spl or linux which programmers often use but troublesome to hand type\n\n- (Phrases commonly used for e-mail or customer support)\n\nWe support preponderant efficiency\n\n\uFF0A\u3000\uFF0A\u3000\uFF0A\u3000\uFF0A\n\n## \u25CEfor more information\nFrequently updated with this blog ( http:\/\/blog-jp.b00st.io )\n\nHave wonderful programmer life!\n\n## Hack your memory**\n\n\n\n# 日本語版\n\n**Boost**は全く新しいエンジニアライクのノートアプリです。\n\n# ◎特徴\nBoostはエンジニアの仕事を圧倒的に効率化するいくつかの機能を備えています。\nその一部をご紹介します。\n1. Folderで情報を分類\n2. 豊富なsyantaxに対応\n3. Finder機能\n4. チーム機能(リアルタイム搭載)\n\n* * * *\n\n# 1. Folderで情報を分類、欲しい情報にすぐアクセス。\n左側のバーに存在する「Folders」。\n今すぐプラスボタンを押しましょう。\n分類の仕方も自由自在です。\n- 言語やフレームワークごとにFolderを作成\n- 自分用のカジュアルなメモをまとめる場としてFolderを作成\n\n\n# 2. 豊富なsyntaxに対応、自分の脳の代わりに。\nプログラミングに関する情報を全て、手軽に保存しましょう。\n- mdで、apiの仕様をまとめる\n- よく使うモジュールやスニペット\n\nBoostに保存しておくことで、何度も同じコードを書いたり調べたりする必要がなくなります。\n\n# 3. Finder機能を搭載、もうコマンドを手打ちする必要はありません。\n**「shift+cmd+tab」** を同時に押してみてください。\nここでは、一瞬でBoostの中身を検索するウィンドウを表示させることができます。\n\n矢印キーで選択、Enterを押し、cmd+vでペーストすると…続きはご自身の目でお確かめください。\n- sqlやlinux等の、よく使うが手打ちが面倒なコマンド\n- (メールやカスタマーサポート等でよく使うフレーズ)\n\n私たちは、圧倒的な効率性を支援します。\n\* * * *\n\n\n## ◎詳しくは\nこちらのブログ( http://blog-jp.b00st.io )にて随時更新しています。\n\nそれでは素晴らしいエンジニアライフを!\n\n## Hack your memory**'
|
||||||
|
|
||||||
function getLocalPath () {
|
|
||||||
return path.join(remote.app.getPath('userData'), 'local.json')
|
|
||||||
}
|
|
||||||
|
|
||||||
export function init () {
|
export function init () {
|
||||||
console.log('initialize data store')
|
console.log('initialize data store')
|
||||||
let data = jetpack.read(getLocalPath(), 'json')
|
let data = JSON.parse(localStorage.getItem('local'))
|
||||||
|
|
||||||
if (data == null) {
|
if (data == null) {
|
||||||
if (localStorage.getItem('local') != null) {
|
|
||||||
data = JSON.parse(localStorage.getItem('local'))
|
|
||||||
jetpack.write(getLocalPath(), data)
|
|
||||||
localStorage.removeItem('local')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
let defaultFolder = {
|
let defaultFolder = {
|
||||||
name: 'default',
|
name: 'default',
|
||||||
key: keygen()
|
key: keygen()
|
||||||
@@ -40,35 +24,37 @@ export function init () {
|
|||||||
folders: [defaultFolder],
|
folders: [defaultFolder],
|
||||||
version: '0.4'
|
version: '0.4'
|
||||||
}
|
}
|
||||||
jetpack.write(getLocalPath(), data)
|
localStorage.setItem('local', JSON.stringify(data))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getData () {
|
function getKey (teamId) {
|
||||||
return jetpack.read(getLocalPath(), 'json')
|
return teamId == null
|
||||||
|
? 'local'
|
||||||
|
: `team-${teamId}`
|
||||||
}
|
}
|
||||||
|
|
||||||
export function setArticles (articles) {
|
export function getData (teamId) {
|
||||||
let data = getData()
|
let key = getKey(teamId)
|
||||||
|
return JSON.parse(localStorage.getItem(key))
|
||||||
|
}
|
||||||
|
|
||||||
|
export function setArticles (teamId, articles) {
|
||||||
|
let key = getKey(teamId)
|
||||||
|
let data = JSON.parse(localStorage.getItem(key))
|
||||||
data.articles = articles
|
data.articles = articles
|
||||||
jetpack.write(getLocalPath(), data)
|
localStorage.setItem(key, JSON.stringify(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
export function setFolders (folders) {
|
export function setFolders (teamId, folders) {
|
||||||
let data = getData()
|
let key = getKey(teamId)
|
||||||
|
let data = JSON.parse(localStorage.getItem(key))
|
||||||
data.folders = folders
|
data.folders = folders
|
||||||
jetpack.write(getLocalPath(), data)
|
localStorage.setItem(key, JSON.stringify(data))
|
||||||
}
|
|
||||||
|
|
||||||
function isFinderCalled () {
|
|
||||||
var argv = process.argv.slice(1)
|
|
||||||
return argv.some(arg => arg.match(/--finder/))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default (function () {
|
export default (function () {
|
||||||
if (!isFinderCalled()) {
|
init()
|
||||||
init()
|
|
||||||
}
|
|
||||||
return {
|
return {
|
||||||
init,
|
init,
|
||||||
getData,
|
getData,
|
||||||
|
|||||||
@@ -1,25 +1,9 @@
|
|||||||
import markdownit from 'markdown-it'
|
import markdownit from 'markdown-it'
|
||||||
import hljs from 'highlight.js'
|
|
||||||
import emoji from 'markdown-it-emoji'
|
|
||||||
|
|
||||||
var md = markdownit({
|
var md = markdownit({
|
||||||
typographer: true,
|
typographer: true,
|
||||||
linkify: true,
|
linkify: true
|
||||||
highlight: function (str, lang) {
|
|
||||||
if (lang && hljs.getLanguage(lang)) {
|
|
||||||
try {
|
|
||||||
return hljs.highlight(lang, str).value;
|
|
||||||
} catch (__) {}
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
return hljs.highlightAuto(str).value;
|
|
||||||
} catch (__) {}
|
|
||||||
|
|
||||||
return ''; // use external default escaping
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
md.use(emoji)
|
|
||||||
|
|
||||||
export default function markdown (content) {
|
export default function markdown (content) {
|
||||||
if (content == null) content = ''
|
if (content == null) content = ''
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
const electron = require('electron')
|
var shell = require('shell')
|
||||||
const shell = electron.shell
|
|
||||||
|
|
||||||
export default function (e) {
|
export default function (e) {
|
||||||
shell.openExternal(e.currentTarget.href)
|
shell.openExternal(e.currentTarget.href)
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ import {
|
|||||||
// Article action type
|
// Article action type
|
||||||
ARTICLE_UPDATE,
|
ARTICLE_UPDATE,
|
||||||
ARTICLE_DESTROY,
|
ARTICLE_DESTROY,
|
||||||
CLEAR_NEW_ARTICLE,
|
|
||||||
|
|
||||||
// Folder action type
|
// Folder action type
|
||||||
FOLDER_CREATE,
|
FOLDER_CREATE,
|
||||||
@@ -24,7 +23,8 @@ import {
|
|||||||
FOLDER_REPLACE,
|
FOLDER_REPLACE,
|
||||||
|
|
||||||
// view mode
|
// view mode
|
||||||
IDLE_MODE
|
IDLE_MODE,
|
||||||
|
CREATE_MODE
|
||||||
} from './actions'
|
} from './actions'
|
||||||
import dataStore from 'boost/dataStore'
|
import dataStore from 'boost/dataStore'
|
||||||
import keygen from 'boost/keygen'
|
import keygen from 'boost/keygen'
|
||||||
@@ -43,9 +43,6 @@ let data = dataStore.getData()
|
|||||||
let initialArticles = data.articles
|
let initialArticles = data.articles
|
||||||
let initialFolders = data.folders
|
let initialFolders = data.folders
|
||||||
|
|
||||||
let isStatusLocked = false
|
|
||||||
let isCreatingNew = false
|
|
||||||
|
|
||||||
function folders (state = initialFolders, action) {
|
function folders (state = initialFolders, action) {
|
||||||
state = state.slice()
|
state = state.slice()
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
@@ -67,7 +64,7 @@ function folders (state = initialFolders, action) {
|
|||||||
if (conflictFolder != null) throw new Error(`${newFolder.name} already exists!`)
|
if (conflictFolder != null) throw new Error(`${newFolder.name} already exists!`)
|
||||||
state.push(newFolder)
|
state.push(newFolder)
|
||||||
|
|
||||||
dataStore.setFolders(state)
|
dataStore.setFolders(null, state)
|
||||||
activityRecord.emit('FOLDER_CREATE')
|
activityRecord.emit('FOLDER_CREATE')
|
||||||
return state
|
return state
|
||||||
}
|
}
|
||||||
@@ -94,7 +91,7 @@ function folders (state = initialFolders, action) {
|
|||||||
updatedAt: new Date()
|
updatedAt: new Date()
|
||||||
})
|
})
|
||||||
|
|
||||||
dataStore.setFolders(state)
|
dataStore.setFolders(null, state)
|
||||||
activityRecord.emit('FOLDER_UPDATE')
|
activityRecord.emit('FOLDER_UPDATE')
|
||||||
return state
|
return state
|
||||||
}
|
}
|
||||||
@@ -107,7 +104,7 @@ function folders (state = initialFolders, action) {
|
|||||||
if (targetIndex >= 0) {
|
if (targetIndex >= 0) {
|
||||||
state.splice(targetIndex, 1)
|
state.splice(targetIndex, 1)
|
||||||
}
|
}
|
||||||
dataStore.setFolders(state)
|
dataStore.setFolders(null, state)
|
||||||
activityRecord.emit('FOLDER_DESTROY')
|
activityRecord.emit('FOLDER_DESTROY')
|
||||||
return state
|
return state
|
||||||
}
|
}
|
||||||
@@ -124,41 +121,10 @@ function folders (state = initialFolders, action) {
|
|||||||
return state
|
return state
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let isCleaned = true
|
|
||||||
function articles (state = initialArticles, action) {
|
function articles (state = initialArticles, action) {
|
||||||
state = state.slice()
|
state = state.slice()
|
||||||
|
|
||||||
if (!isCreatingNew && !isCleaned) {
|
|
||||||
state = state.filter(article => article.status !== 'NEW')
|
|
||||||
isCleaned = true
|
|
||||||
}
|
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case SWITCH_ARTICLE:
|
|
||||||
if (action.data.isNew) {
|
|
||||||
isCleaned = false
|
|
||||||
}
|
|
||||||
if (!isStatusLocked && !action.data.isNew) {
|
|
||||||
isCreatingNew = false
|
|
||||||
if (!isCleaned) {
|
|
||||||
state = state.filter(article => article.status !== 'NEW')
|
|
||||||
isCleaned = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return state
|
|
||||||
case SWITCH_FOLDER:
|
|
||||||
case SET_SEARCH_FILTER:
|
|
||||||
case SET_TAG_FILTER:
|
|
||||||
case CLEAR_SEARCH:
|
|
||||||
if (!isStatusLocked) {
|
|
||||||
isCreatingNew = false
|
|
||||||
if (!isCleaned) {
|
|
||||||
state = state.filter(article => article.status !== 'NEW')
|
|
||||||
isCleaned = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return state
|
|
||||||
case CLEAR_NEW_ARTICLE:
|
|
||||||
return state.filter(article => article.status !== 'NEW')
|
|
||||||
case ARTICLE_UPDATE:
|
case ARTICLE_UPDATE:
|
||||||
{
|
{
|
||||||
let article = action.data.article
|
let article = action.data.article
|
||||||
@@ -167,8 +133,7 @@ function articles (state = initialArticles, action) {
|
|||||||
if (targetIndex < 0) state.unshift(article)
|
if (targetIndex < 0) state.unshift(article)
|
||||||
else state.splice(targetIndex, 1, article)
|
else state.splice(targetIndex, 1, article)
|
||||||
|
|
||||||
if (article.status !== 'NEW') dataStore.setArticles(state)
|
dataStore.setArticles(null, state)
|
||||||
else isCreatingNew = true
|
|
||||||
return state
|
return state
|
||||||
}
|
}
|
||||||
case ARTICLE_DESTROY:
|
case ARTICLE_DESTROY:
|
||||||
@@ -178,7 +143,7 @@ function articles (state = initialArticles, action) {
|
|||||||
let targetIndex = _.findIndex(state, _article => articleKey === _article.key)
|
let targetIndex = _.findIndex(state, _article => articleKey === _article.key)
|
||||||
if (targetIndex >= 0) state.splice(targetIndex, 1)
|
if (targetIndex >= 0) state.splice(targetIndex, 1)
|
||||||
|
|
||||||
dataStore.setArticles(state)
|
dataStore.setArticles(null, state)
|
||||||
return state
|
return state
|
||||||
}
|
}
|
||||||
case FOLDER_DESTROY:
|
case FOLDER_DESTROY:
|
||||||
@@ -187,7 +152,7 @@ function articles (state = initialArticles, action) {
|
|||||||
|
|
||||||
state = state.filter(article => article.FolderKey !== folderKey)
|
state = state.filter(article => article.FolderKey !== folderKey)
|
||||||
|
|
||||||
dataStore.setArticles(state)
|
dataStore.setArticles(null, state)
|
||||||
return state
|
return state
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
@@ -197,15 +162,16 @@ function articles (state = initialArticles, action) {
|
|||||||
|
|
||||||
function status (state = initialStatus, action) {
|
function status (state = initialStatus, action) {
|
||||||
state = Object.assign({}, state)
|
state = Object.assign({}, state)
|
||||||
|
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case TOGGLE_TUTORIAL:
|
case TOGGLE_TUTORIAL:
|
||||||
state.isTutorialOpen = !state.isTutorialOpen
|
state.isTutorialOpen = !state.isTutorialOpen
|
||||||
return state
|
return state
|
||||||
case LOCK_STATUS:
|
case LOCK_STATUS:
|
||||||
isStatusLocked = state.isStatusLocked = true
|
state.isStatusLocked = true
|
||||||
return state
|
return state
|
||||||
case UNLOCK_STATUS:
|
case UNLOCK_STATUS:
|
||||||
isStatusLocked = state.isStatusLocked = false
|
state.isStatusLocked = false
|
||||||
return state
|
return state
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -222,10 +188,11 @@ function status (state = initialStatus, action) {
|
|||||||
return state
|
return state
|
||||||
case SWITCH_MODE:
|
case SWITCH_MODE:
|
||||||
state.mode = action.data
|
state.mode = action.data
|
||||||
|
if (state.mode === CREATE_MODE) state.articleKey = null
|
||||||
|
|
||||||
return state
|
return state
|
||||||
case SWITCH_ARTICLE:
|
case SWITCH_ARTICLE:
|
||||||
state.articleKey = action.data.key
|
state.articleKey = action.data
|
||||||
state.mode = IDLE_MODE
|
state.mode = IDLE_MODE
|
||||||
|
|
||||||
return state
|
return state
|
||||||
|
|||||||
185
main.js
185
main.js
@@ -1,84 +1,61 @@
|
|||||||
const electron = require('electron')
|
var app = require('app')
|
||||||
const app = electron.app
|
var Menu = require('menu')
|
||||||
const Menu = electron.Menu
|
var MenuItem = require('menu-item')
|
||||||
const ipc = electron.ipcMain
|
var Tray = require('tray')
|
||||||
const globalShortcut = electron.globalShortcut
|
var ipc = require('ipc')
|
||||||
const autoUpdater = electron.autoUpdater
|
var jetpack = require('fs-jetpack')
|
||||||
const jetpack = require('fs-jetpack')
|
|
||||||
const path = require('path')
|
require('crash-reporter').start()
|
||||||
const ChildProcess = require('child_process')
|
|
||||||
electron.crashReporter.start()
|
|
||||||
|
|
||||||
var mainWindow = null
|
var mainWindow = null
|
||||||
var finderProcess
|
var appIcon = null
|
||||||
|
var menu = null
|
||||||
|
var finderWindow = null
|
||||||
|
|
||||||
var update = null
|
var update = null
|
||||||
|
|
||||||
// app.on('window-all-closed', function () {
|
// app.on('window-all-closed', function () {
|
||||||
// if (process.platform !== 'darwin') app.quit()
|
// if (process.platform !== 'darwin') app.quit()
|
||||||
// })
|
// })
|
||||||
|
|
||||||
var appQuit = false
|
|
||||||
|
|
||||||
var version = app.getVersion()
|
var version = app.getVersion()
|
||||||
var versionText = (version == null || version.length === 0) ? 'DEV version' : 'v' + version
|
var versionText = (version == null || version.length === 0) ? 'DEV version' : 'v' + version
|
||||||
var versionNotified = false
|
var nn = require('node-notifier')
|
||||||
|
var updater = require('./atom-lib/updater')
|
||||||
|
var path = require('path')
|
||||||
|
|
||||||
function notify (title, body) {
|
var appQuit = false
|
||||||
if (mainWindow != null) {
|
|
||||||
mainWindow.webContents.send('notify', {
|
|
||||||
title: title,
|
|
||||||
body: body
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
autoUpdater
|
updater
|
||||||
.on('update-downloaded', function (event, releaseNotes, releaseName, releaseDate, updateUrl, quitAndUpdate) {
|
.on('update-downloaded', function (event, releaseNotes, releaseName, releaseDate, updateUrl, quitAndUpdate) {
|
||||||
|
nn.notify({
|
||||||
|
title: 'Ready to Update!! ' + versionText,
|
||||||
|
icon: path.join(__dirname, '/resources/favicon-230x230.png'),
|
||||||
|
message: 'Click update button on Main window: ' + releaseName
|
||||||
|
})
|
||||||
update = quitAndUpdate
|
update = quitAndUpdate
|
||||||
|
|
||||||
if (mainWindow != null) {
|
if (mainWindow != null && !mainWindow.webContents.isLoading()) {
|
||||||
notify('Ready to Update! ' + releaseName, 'Click update button on Main window.')
|
|
||||||
mainWindow.webContents.send('update-available', 'Update available!')
|
mainWindow.webContents.send('update-available', 'Update available!')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.on('error', function (err, message) {
|
|
||||||
console.error(err)
|
|
||||||
if (!versionNotified) {
|
|
||||||
notify('Updater error!', message)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
// .on('checking-for-update', function () {
|
|
||||||
// // Connecting
|
|
||||||
// console.log('checking...')
|
|
||||||
// })
|
|
||||||
.on('update-available', function () {
|
|
||||||
notify('Update is available!', 'Download started.. wait for the update ready.')
|
|
||||||
})
|
|
||||||
.on('update-not-available', function () {
|
|
||||||
if (mainWindow != null && !versionNotified) {
|
|
||||||
versionNotified = true
|
|
||||||
notify('Latest Build!! ' + versionText, 'Hope you to enjoy our app :D')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
app.on('ready', function () {
|
app.on('ready', function () {
|
||||||
app.on('before-quit', function () {
|
app.on('before-quit', function () {
|
||||||
if (finderProcess) finderProcess.kill()
|
|
||||||
appQuit = true
|
appQuit = true
|
||||||
})
|
})
|
||||||
|
console.log('Version ' + version)
|
||||||
autoUpdater.setFeedURL('https://orbital.b00st.io/rokt33r/boost-dev/latest?version=' + version)
|
updater.setFeedUrl('http://orbital.b00st.io/rokt33r/boost-app/latest?version=' + version)
|
||||||
|
updater.checkForUpdates()
|
||||||
|
// menu start
|
||||||
var template = require('./atom-lib/menu-template')
|
var template = require('./atom-lib/menu-template')
|
||||||
var menu = Menu.buildFromTemplate(template)
|
|
||||||
Menu.setApplicationMenu(menu)
|
|
||||||
|
|
||||||
setInterval(function () {
|
setInterval(function () {
|
||||||
if (update == null) autoUpdater.checkForUpdates()
|
if (update == null) updater.checkForUpdates()
|
||||||
}, 1000 * 60 * 60 * 24)
|
}, 1000 * 60 * 60 * 24)
|
||||||
|
|
||||||
ipc.on('check-update', function (event, msg) {
|
ipc.on('check-update', function (event, msg) {
|
||||||
if (update == null) autoUpdater.checkForUpdates()
|
if (update == null) updater.checkForUpdates()
|
||||||
})
|
})
|
||||||
|
|
||||||
ipc.on('update-app', function (event, msg) {
|
ipc.on('update-app', function (event, msg) {
|
||||||
@@ -88,76 +65,48 @@ app.on('ready', function () {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
menu = Menu.buildFromTemplate(template)
|
||||||
|
|
||||||
|
Menu.setApplicationMenu(menu)
|
||||||
|
// menu end
|
||||||
|
appIcon = new Tray(__dirname + '/resources/tray-icon.png')
|
||||||
|
appIcon.setToolTip('Boost')
|
||||||
|
|
||||||
|
var trayMenu = new Menu()
|
||||||
|
trayMenu.append(new MenuItem({
|
||||||
|
label: 'Open main window',
|
||||||
|
click: function () {
|
||||||
|
if (mainWindow != null) mainWindow.show()
|
||||||
|
}
|
||||||
|
}))
|
||||||
|
trayMenu.append(new MenuItem({
|
||||||
|
label: 'Quit',
|
||||||
|
click: function () {
|
||||||
|
app.quit()
|
||||||
|
}
|
||||||
|
}))
|
||||||
|
appIcon.setContextMenu(trayMenu)
|
||||||
|
|
||||||
mainWindow = require('./atom-lib/main-window')
|
mainWindow = require('./atom-lib/main-window')
|
||||||
mainWindow.on('close', function (e) {
|
mainWindow.on('close', function (e) {
|
||||||
if (appQuit) return true
|
if (appQuit) return true
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
mainWindow.hide()
|
mainWindow.hide()
|
||||||
})
|
})
|
||||||
mainWindow.webContents.on('did-finish-load', function () {
|
if (update != null) {
|
||||||
if (finderProcess == null) {
|
mainWindow.webContents.on('did-finish-load', function () {
|
||||||
finderProcess = ChildProcess
|
|
||||||
.execFile(process.execPath, [path.resolve(__dirname, 'finder.js'), '--finder'])
|
|
||||||
finderProcess.stdout.setEncoding('utf8')
|
|
||||||
finderProcess.stderr.setEncoding('utf8')
|
|
||||||
finderProcess.stdout.on('data', format)
|
|
||||||
finderProcess.stderr.on('data', errorFormat)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (update != null) {
|
|
||||||
mainWindow.webContents.send('update-available', 'whoooooooh!')
|
mainWindow.webContents.send('update-available', 'whoooooooh!')
|
||||||
} else {
|
})
|
||||||
autoUpdater.checkForUpdates()
|
}
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
app.on('activate', function () {
|
app.on('activate-with-no-open-windows', function () {
|
||||||
if (mainWindow == null) return null
|
if (mainWindow == null) return null
|
||||||
mainWindow.show()
|
mainWindow.show()
|
||||||
})
|
})
|
||||||
|
|
||||||
function format (payload) {
|
finderWindow = require('./atom-lib/finder-window')
|
||||||
// console.log('from finder >> ', payload)
|
|
||||||
try {
|
|
||||||
payload = JSON.parse(payload)
|
|
||||||
} catch (e) {
|
|
||||||
console.log('Not parsable payload : ', payload)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
switch (payload.type) {
|
|
||||||
case 'log':
|
|
||||||
console.log('FINDER(stdout): ' + payload.data)
|
|
||||||
break
|
|
||||||
case 'show-main-window':
|
|
||||||
if (mainWindow != null) {
|
|
||||||
mainWindow.show()
|
|
||||||
}
|
|
||||||
break
|
|
||||||
case 'request-data':
|
|
||||||
mainWindow.webContents.send('request-data')
|
|
||||||
break
|
|
||||||
case 'quit-app':
|
|
||||||
appQuit = true
|
|
||||||
app.quit()
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function errorFormat (output) {
|
|
||||||
console.error('FINDER(stderr):' + output)
|
|
||||||
}
|
|
||||||
|
|
||||||
function emitToFinder (type, data) {
|
|
||||||
if (!finderProcess) {
|
|
||||||
console.log('finder process is not ready')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
var payload = {
|
|
||||||
type: type,
|
|
||||||
data: data
|
|
||||||
}
|
|
||||||
finderProcess.stdin.write(JSON.stringify(payload), 'utf-8')
|
|
||||||
}
|
|
||||||
|
|
||||||
|
var globalShortcut = require('global-shortcut')
|
||||||
var userDataPath = app.getPath('userData')
|
var userDataPath = app.getPath('userData')
|
||||||
if (!jetpack.cwd(userDataPath).exists('keymap.json')) {
|
if (!jetpack.cwd(userDataPath).exists('keymap.json')) {
|
||||||
jetpack.cwd(userDataPath).file('keymap.json', {content: '{}'})
|
jetpack.cwd(userDataPath).file('keymap.json', {content: '{}'})
|
||||||
@@ -173,7 +122,10 @@ app.on('ready', function () {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
globalShortcut.register(toggleFinderKey, function () {
|
globalShortcut.register(toggleFinderKey, function () {
|
||||||
emitToFinder('open-finder')
|
if (mainWindow != null && !mainWindow.isFocused()) {
|
||||||
|
mainWindow.hide()
|
||||||
|
}
|
||||||
|
finderWindow.show()
|
||||||
})
|
})
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err.name)
|
console.log(err.name)
|
||||||
@@ -189,7 +141,10 @@ app.on('ready', function () {
|
|||||||
var toggleFinderKey = global.keymap.toggleFinder != null ? global.keymap.toggleFinder : 'ctrl+tab+shift'
|
var toggleFinderKey = global.keymap.toggleFinder != null ? global.keymap.toggleFinder : 'ctrl+tab+shift'
|
||||||
try {
|
try {
|
||||||
globalShortcut.register(toggleFinderKey, function () {
|
globalShortcut.register(toggleFinderKey, function () {
|
||||||
emitToFinder('open-finder')
|
if (mainWindow != null && !mainWindow.isFocused()) {
|
||||||
|
mainWindow.hide()
|
||||||
|
}
|
||||||
|
finderWindow.show()
|
||||||
})
|
})
|
||||||
mainWindow.webContents.send('APP_SETTING_DONE', {})
|
mainWindow.webContents.send('APP_SETTING_DONE', {})
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -199,4 +154,12 @@ app.on('ready', function () {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
global.hideFinder = function () {
|
||||||
|
if (!mainWindow.isVisible()) {
|
||||||
|
Menu.sendActionToFirstResponder('hide:')
|
||||||
|
} else {
|
||||||
|
mainWindow.focus()
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
16
package.json
16
package.json
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "boost",
|
"name": "boost",
|
||||||
"version": "0.4.2-rc.0",
|
"version": "0.4.1-beta.1",
|
||||||
"description": "Boost App",
|
"description": "Boost App",
|
||||||
"main": "index.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "BOOST_ENV=development electron ./main.js",
|
"start": "BOOST_ENV=development electron ./main.js",
|
||||||
"webpack": "webpack-dev-server --hot --inline --config webpack.config.js",
|
"webpack": "webpack-dev-server --hot --inline --config webpack.config.js",
|
||||||
"compile": "NODE_ENV=production webpack --config webpack.config.production.js",
|
"compile": "NODE_ENV=production webpack --config webpack.config.production.js",
|
||||||
"build": "electron-packager ./ Boost --app-version=$npm_package_version $npm_package_config_platform $npm_package_config_version $npm_package_config_ignore --overwrite --asar",
|
"build": "electron-packager ./ Boost --app-version=$npm_package_version $npm_package_config_platform $npm_package_config_version $npm_package_config_ignore --overwrite",
|
||||||
"codesign": "codesign --verbose --deep --force --sign \"MAISIN solutions Inc.\" Boost-darwin-x64/Boost.app"
|
"codesign": "codesign --verbose --deep --force --sign \"MAISIN solutions Inc.\" Boost-darwin-x64/Boost.app"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"version": "--version=0.35.1 --app-bundle-id=com.maisin.boost",
|
"version": "--version=0.34.0 --app-bundle-id=com.maisin.boost",
|
||||||
"platform": "--platform=darwin --arch=x64 --prune --icon=resources/app.icns",
|
"platform": "--platform=darwin --arch=x64 --prune --icon=resources/app.icns",
|
||||||
"ignore": "--ignore=Boost-darwin-x64 --ignore=node_modules/devicon/icons --ignore=submodules/ace/(?!src-min)|submodules/ace/(?=src-min-noconflict)"
|
"ignore": "--ignore=Boost-darwin-x64 --ignore=node_modules/devicon/icons --ignore=submodules/ace/(?!src-min)|submodules/ace/(?=src-min-noconflict)"
|
||||||
},
|
},
|
||||||
@@ -40,12 +40,11 @@
|
|||||||
"devicon": "^2.0.0",
|
"devicon": "^2.0.0",
|
||||||
"font-awesome": "^4.3.0",
|
"font-awesome": "^4.3.0",
|
||||||
"fs-jetpack": "^0.7.0",
|
"fs-jetpack": "^0.7.0",
|
||||||
"highlight.js": "^8.9.1",
|
|
||||||
"lodash": "^3.10.1",
|
"lodash": "^3.10.1",
|
||||||
"markdown-it": "^4.3.1",
|
"markdown-it": "^4.3.1",
|
||||||
"markdown-it-emoji": "^1.1.0",
|
|
||||||
"md5": "^2.0.0",
|
"md5": "^2.0.0",
|
||||||
"moment": "^2.10.3",
|
"moment": "^2.10.3",
|
||||||
|
"node-notifier": "^4.2.3",
|
||||||
"socket.io-client": "^1.3.6",
|
"socket.io-client": "^1.3.6",
|
||||||
"superagent": "^1.2.0",
|
"superagent": "^1.2.0",
|
||||||
"superagent-promise": "^1.0.3"
|
"superagent-promise": "^1.0.3"
|
||||||
@@ -55,15 +54,16 @@
|
|||||||
"babel-plugin-react-transform": "^1.1.1",
|
"babel-plugin-react-transform": "^1.1.1",
|
||||||
"css-loader": "^0.19.0",
|
"css-loader": "^0.19.0",
|
||||||
"electron-packager": "^5.1.0",
|
"electron-packager": "^5.1.0",
|
||||||
"electron-prebuilt": "^0.35.1",
|
"electron-prebuilt": "^0.33.6",
|
||||||
"nib": "^1.1.0",
|
"nib": "^1.1.0",
|
||||||
"react": "^0.14.0",
|
"react": "^0.14.0",
|
||||||
"react-dom": "^0.14.0",
|
"react-dom": "^0.14.0",
|
||||||
"react-redux": "^4.0.0",
|
"react-redux": "^4.0.0",
|
||||||
"react-router": "^1.0.0-rc1",
|
"react-router": "^1.0.0-rc1",
|
||||||
|
"react-select": "^0.8.1",
|
||||||
"react-transform-catch-errors": "^1.0.0",
|
"react-transform-catch-errors": "^1.0.0",
|
||||||
"react-transform-hmr": "^1.0.1",
|
"react-transform-hmr": "^1.0.1",
|
||||||
"redbox-react": "^1.2.0",
|
"redbox-react": "^1.1.1",
|
||||||
"redux": "^3.0.2",
|
"redux": "^3.0.2",
|
||||||
"standard": "^5.3.1",
|
"standard": "^5.3.1",
|
||||||
"style-loader": "^0.12.4",
|
"style-loader": "^0.12.4",
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ var path = require('path')
|
|||||||
var JsonpTemplatePlugin = webpack.JsonpTemplatePlugin
|
var JsonpTemplatePlugin = webpack.JsonpTemplatePlugin
|
||||||
var FunctionModulePlugin = require('webpack/lib/FunctionModulePlugin')
|
var FunctionModulePlugin = require('webpack/lib/FunctionModulePlugin')
|
||||||
var NodeTargetPlugin = require('webpack/lib/node/NodeTargetPlugin')
|
var NodeTargetPlugin = require('webpack/lib/node/NodeTargetPlugin')
|
||||||
|
var ExternalsPlugin = webpack.ExternalsPlugin
|
||||||
var opt = {
|
var opt = {
|
||||||
path: path.join(__dirname, 'compiled'),
|
path: path.join(__dirname, 'compiled'),
|
||||||
filename: '[name].js',
|
filename: '[name].js',
|
||||||
@@ -38,10 +39,29 @@ var config = {
|
|||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new webpack.NoErrorsPlugin(),
|
new webpack.NoErrorsPlugin(),
|
||||||
|
new ExternalsPlugin('commonjs', [
|
||||||
|
'app',
|
||||||
|
'auto-updater',
|
||||||
|
'browser-window',
|
||||||
|
'content-tracing',
|
||||||
|
'dialog',
|
||||||
|
'global-shortcut',
|
||||||
|
'ipc',
|
||||||
|
'menu',
|
||||||
|
'menu-item',
|
||||||
|
'power-monitor',
|
||||||
|
'protocol',
|
||||||
|
'tray',
|
||||||
|
'remote',
|
||||||
|
'web-frame',
|
||||||
|
'clipboard',
|
||||||
|
'crash-reporter',
|
||||||
|
'screen',
|
||||||
|
'shell'
|
||||||
|
]),
|
||||||
new NodeTargetPlugin()
|
new NodeTargetPlugin()
|
||||||
],
|
],
|
||||||
externals: [
|
externals: [
|
||||||
'electron',
|
|
||||||
'socket.io-client',
|
'socket.io-client',
|
||||||
'md5',
|
'md5',
|
||||||
'superagent',
|
'superagent',
|
||||||
@@ -49,9 +69,7 @@ var config = {
|
|||||||
'lodash',
|
'lodash',
|
||||||
'markdown-it',
|
'markdown-it',
|
||||||
'moment',
|
'moment',
|
||||||
'highlight.js',
|
'node-notifier'
|
||||||
'markdown-it-emoji',
|
|
||||||
'fs-jetpack'
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
var webpack = require('webpack')
|
var webpack = require('webpack')
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
devtool: 'source-map',
|
||||||
entry: {
|
entry: {
|
||||||
main: './browser/main/index.js',
|
main: './browser/main/index.js',
|
||||||
finder: './browser/finder/index.js'
|
finder: './browser/finder/index.js'
|
||||||
@@ -7,7 +8,7 @@ module.exports = {
|
|||||||
output: {
|
output: {
|
||||||
path: 'compiled',
|
path: 'compiled',
|
||||||
filename: '[name].js',
|
filename: '[name].js',
|
||||||
// sourceMapFilename: '[name].map',
|
sourceMapFilename: '[name].map',
|
||||||
libraryTarget: 'commonjs2'
|
libraryTarget: 'commonjs2'
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
@@ -30,15 +31,14 @@ module.exports = {
|
|||||||
'process.env': {
|
'process.env': {
|
||||||
'NODE_ENV': JSON.stringify('production')
|
'NODE_ENV': JSON.stringify('production')
|
||||||
}
|
}
|
||||||
}),
|
|
||||||
new webpack.optimize.UglifyJsPlugin({
|
|
||||||
compressor: {
|
|
||||||
warnings: false
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
// new webpack.optimize.UglifyJsPlugin({
|
||||||
|
// compressor: {
|
||||||
|
// warnings: false
|
||||||
|
// }
|
||||||
|
// })
|
||||||
],
|
],
|
||||||
externals: [
|
externals: [
|
||||||
'electron',
|
|
||||||
'socket.io-client',
|
'socket.io-client',
|
||||||
'md5',
|
'md5',
|
||||||
'superagent',
|
'superagent',
|
||||||
@@ -46,11 +46,10 @@ module.exports = {
|
|||||||
'lodash',
|
'lodash',
|
||||||
'markdown-it',
|
'markdown-it',
|
||||||
'moment',
|
'moment',
|
||||||
'highlight.js',
|
'node-notifier'
|
||||||
'markdown-it-emoji',
|
|
||||||
'fs-jetpack'
|
|
||||||
],
|
],
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: ['', '.js', '.jsx', 'styl']
|
extensions: ['', '.js', '.jsx', 'styl']
|
||||||
}
|
},
|
||||||
|
target: 'atom'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user