-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
908307b
commit 89a684e
Showing
12 changed files
with
151 additions
and
15 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
frontend/src/app/features/hal/resources/meeting-resource.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// -- copyright | ||
// OpenProject is an open source project management software. | ||
// Copyright (C) 2012-2024 the OpenProject GmbH | ||
// | ||
// This program is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU General Public License version 3. | ||
// | ||
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: | ||
// Copyright (C) 2006-2013 Jean-Philippe Lang | ||
// Copyright (C) 2010-2013 the ChiliProject Team | ||
// | ||
// This program is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU General Public License | ||
// as published by the Free Software Foundation; either version 2 | ||
// of the License, or (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program; if not, write to the Free Software | ||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
// | ||
// See COPYRIGHT and LICENSE files for more details. | ||
//++ | ||
|
||
import { HalResource } from 'core-app/features/hal/resources/hal-resource'; | ||
import { Attachable } from 'core-app/features/hal/resources/mixins/attachable-mixin'; | ||
|
||
export interface MeetingResourceLinks { | ||
addAttachment(attachment:HalResource):Promise<any>; | ||
Check warning on line 33 in frontend/src/app/features/hal/resources/meeting-resource.ts GitHub Actions / eslint[eslint] frontend/src/app/features/hal/resources/meeting-resource.ts#L33 <@typescript-eslint/no-explicit-any>(https://typescript-eslint.io/rules/no-explicit-any)
Raw output
|
||
} | ||
|
||
class MeetingBaseResource extends HalResource { | ||
public $links:MeetingResourceLinks; | ||
} | ||
|
||
export const MeetingResource = Attachable(MeetingBaseResource); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
modules/meeting/spec/features/structured_meetings/attachment_upload_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#-- copyright | ||
# OpenProject is an open source project management software. | ||
# Copyright (C) 2012-2024 the OpenProject GmbH | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License version 3. | ||
# | ||
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: | ||
# Copyright (C) 2006-2013 Jean-Philippe Lang | ||
# Copyright (C) 2010-2013 the ChiliProject Team | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License | ||
# as published by the Free Software Foundation; either version 2 | ||
# of the License, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
# | ||
# See COPYRIGHT and LICENSE files for more details. | ||
#++ | ||
|
||
require 'spec_helper' | ||
require 'features/page_objects/notification' | ||
require_relative '../../support/pages/structured_meeting/show' | ||
|
||
RSpec.describe 'Upload attachment to meetings', :js do | ||
let(:user) do | ||
create(:user, | ||
member_with_permissions: { project => %i[view_meetings edit_meetings manage_agendas] }) | ||
end | ||
let(:project) { create(:project) } | ||
let(:attachments) { Components::Attachments.new } | ||
let(:image_fixture) { UploadedFile.load_from('spec/fixtures/files/image.png') } | ||
let(:editor) { Components::WysiwygEditor.new '#content', 'opce-ckeditor-augmented-textarea' } | ||
let(:wiki_page_content) { project.wiki.pages.first.text } | ||
|
||
let(:meeting) { create(:structured_meeting, project: project)} | ||
let(:show_page) { Pages::StructuredMeeting::Show.new(meeting) } | ||
|
||
before do | ||
login_as(user) | ||
end | ||
|
||
it 'can upload an image to new and existing meeting agenda item via drag & drop in editor' do | ||
show_page.visit! | ||
|
||
show_page.add_agenda_item(save: false) do | ||
click_link_or_button 'Notes' | ||
end | ||
|
||
# adding an image | ||
editor.drag_attachment image_fixture.path, 'Image uploaded the first time' | ||
|
||
editor.attachments_list.expect_attached('image.png') | ||
editor.wait_until_upload_progress_toaster_cleared | ||
|
||
click_link_or_button 'Save' | ||
expect(page).to have_css('#meeting-agenda-items-list-component img', count: 1) | ||
expect(page).to have_content('Image uploaded the first time') | ||
editor.attachments_list.expect_attached('image.png') | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters