chore: migrate note controllers to snjs

This commit is contained in:
Mo
2022-01-06 11:03:45 -06:00
parent 875f5417be
commit 987f5aebf4
9 changed files with 22 additions and 195 deletions

View File

@@ -2,7 +2,6 @@ import { Bridge } from '@/services/bridge';
import { storage, StorageKey } from '@/services/localStorage';
import { WebApplication } from '@/ui_models/application';
import { AccountMenuState } from '@/ui_models/app_state/account_menu_state';
import { NoteViewController } from '@/views/note_view/note_view_controller';
import { isDesktopApplication } from '@/utils';
import {
ApplicationEvent,
@@ -17,6 +16,7 @@ import {
SNSmartTag,
ComponentViewer,
SNTag,
NoteViewController,
} from '@standardnotes/snjs';
import pull from 'lodash/pull';
import {

View File

@@ -8,6 +8,7 @@ import {
ContentType,
SNTag,
ChallengeReason,
NoteViewController,
} from '@standardnotes/snjs';
import {
makeObservable,
@@ -17,7 +18,6 @@ import {
runInAction,
} from 'mobx';
import { WebApplication } from '../application';
import { NoteViewController } from '@/views/note_view/note_view_controller';
import { AppState } from './app_state';
export class NotesState {