Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(gsoc): open cv file option in open offline modal #181

Merged
merged 26 commits into from
Sep 5, 2023
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4cb44fe
feat(gsoc): fix tabbar issue, project loading, updating, circuit dele…
Arnabdaz Jun 17, 2023
2966743
fix(netlify-build): add / to check netlify build fixes
Arnabdaz Jun 18, 2023
7048947
feat(netlify): add _redirects to fix routing issues with netlify depl…
Arnabdaz Jun 18, 2023
39aa9c6
fix(netlify): update netlify.toml to get _redirects to correct direct…
Arnabdaz Jun 18, 2023
39b3bb5
fix(netlify): move redirects to neltify.toml
Arnabdaz Jun 18, 2023
da44f65
feat(gsoc): update types for store and naming error fixes
Arnabdaz Jun 19, 2023
8f2d316
fix(gsoc): quit saving on clicking cancle while entering new proejct …
Arnabdaz Jun 19, 2023
2b54f90
feat(gsoc): update prompt component structure to make it a common hel…
Arnabdaz Jun 19, 2023
1ecd749
feat(gsoc): fix cancle on save unify circuit creation and deletion wi…
Arnabdaz Jun 20, 2023
8dd0799
feat(gsoc): add new project creation, project details update on creat…
Arnabdaz Jun 21, 2023
cba9c59
update(gsoc): convert alert() and confirm() to use vue component
Arnabdaz Jun 21, 2023
c02fd39
feat(gsoc): add import & export as .cv file with independent vue comp…
Arnabdaz Jun 22, 2023
48926a5
feat(gsoc): update updateProjectDetails.vue to show tags as chips whi…
Arnabdaz Jun 22, 2023
1db85e1
Merge branch 'ApiIntegration' into ImportExportAsCV
Arnabdaz Jun 23, 2023
e468b15
feat(gsoc): update setup fucntion and fix linting issues, remove setT…
Arnabdaz Jun 27, 2023
dea9ee2
fix(gsoc): recover project not saving to localStorage due to generate…
Arnabdaz Jun 27, 2023
6047127
fix(lint): fix linting issues in save.js & remove var from setup.js f…
Arnabdaz Jun 27, 2023
df9a0bf
feat(jwt): add jwt in Authorization header
Arnabdaz Jun 27, 2023
24a032c
fix(linting): data.spec.js remove unused parameter "text" from line 26
Arnabdaz Jun 27, 2023
b3a3734
fix(lint): fix codeclimate linting issues
Arnabdaz Jun 27, 2023
66b45d9
Merge changes form ApiIntegration
Arnabdaz Jun 27, 2023
6cbb918
fix(lint): fix linting issues
Arnabdaz Jun 27, 2023
94c3125
Merge branch 'main' into ImportExportAsCV
Arnabdaz Jul 8, 2023
1f4207a
chore(gsoc): removed saveAs.js and Open.js files after testing
Arnabdaz Jul 17, 2023
2d0eea3
feat(gsoc): add open CV file option to open offline when there is no …
Arnabdaz Jul 28, 2023
1aba789
Merge branch 'main' into ImportExportAsCV
Arnabdaz Jul 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion src/components/DialogBox/OpenOffline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,15 @@
block
@click="openProjectOffline()"
>
BUTTON
open project
</v-btn>
<v-btn
v-else
class="messageBtn"
block
@click.stop="OpenImportProjectDialog"
>
open CV file
</v-btn>
</v-card-actions>
</v-card>
Expand Down Expand Up @@ -93,4 +101,9 @@ function openProjectOffline() {
load(JSON.parse(localStorage.getItem(ele.val())))
window.projectId = ele.val()
}

function OpenImportProjectDialog() {
SimulatorState.dialogBox.open_project_dialog = false
SimulatorState.dialogBox.import_project_dialog = true
}
</script>