///
Mind Map Wizard offers a robust generation history feature, ensuring that all your created mind maps are easily accessible and manageable. This functionality is designed with a strong emphasis on user
59 views
~59 views from guests
Guest views are estimated from total page views. These include anonymous visitors and users who weren't logged in when they viewed the page.
Mind Map Wizard offers a robust generation history feature, ensuring that all your created mind maps are easily accessible and manageable. This functionality is designed with a strong emphasis on user privacy, as all data is stored exclusively on your local device within the browser's localStorage [Local Data Storage and Privacy].
Every mind map generated using the AI is automatically saved to your browser's local storage. This ensures that your work is persistently available even after you close the application or your browser.
The saving process is handled by the saveMindmapToHistory function in scripts/new.js. When a mind map is successfully generated, the following information is stored:
To prevent an excessive accumulation of data, the history is capped at 100 mind maps. When this limit is reached, the oldest mind map is automatically removed.
Your mind map history is readily available through the left sidebar of the application.
loadMindmapsLeftSidebar function in scripts/new.js retrieves all saved mind maps from localStorage and populates the sidebar list. Mind maps are sorted by their creation date, with the most recent ones appearing at the top.formatDateLeftSidebar function. Titles are safely escaped using escapeHtmlLeftSidebar to prevent rendering issues.openMindmapLeftSidebar function) will load and display that mind map in the main viewer, along with updating the URL with its unique ID using updateUrlWithId.openSearchMindmapsPopup function initializes the search interface. As you type, the filterAndDisplayMindmapsInPopup and renderSearchMindmapResults functions dynamically filter and display matching mind maps, allowing you to easily find specific entries. Clicking an item in the search results (via openMindmapFromSearchPopup) will load it.The left sidebar provides direct management options for each mind map in your history.
You can rename any saved mind map to better organize your history.
renameMindmap(id) in scripts/new.js.customPopups.openRenamePopup.updateMindmapInStorage function updates the topic field of the mind map in localStorage.Individual mind maps can be permanently removed from your history.
deleteMindmap(id) in scripts/new.js.customPopups.openDeletePopup.localStorage. If the deleted mind map was currently displayed in the main area, the display will be cleared, and the application will return to the initial state.If you wish to remove all your saved mind maps and related local data, a "Clear History" option is available.
clearHistory function in scripts/mmw.js initiates this process, typically linked to a button in the UI.confirmClear), the following items are removed from localStorage:
mindmap-history: All saved mind maps.mindmap_local: (Legacy/Fallback)mindmap-playground: Temporary or playground mind maps.lastMindmapInput: The last input text used for generation.q or id) are removed, and the page is reloaded, returning Mind Map Wizard to its initial state.These features collectively provide comprehensive control over your mind map history, offering a private, fast, and organized way to manage your AI-generated knowledge.