Ajax link flag does not work in view with ajax enabled.

Created on 10 April 2018, almost 7 years ago
Updated 7 February 2025, about 2 months ago

In view with ajax, the flag does not work

Failed to load resource: the server responded with a status of 404 (Not Found) /views/ajax?_wrapper_format=drupal_ajax

Ajax Error:
An AJAX HTTP error occurred.
Received HTTP code: 404
Followed by debugging information.
Path: / lag/flag/bookmark/401?destination=node/1&token=BNxS5hn2dlnsYFiU2NSlYG8kZE9U3V7Cal7bwbch0lg
Status Text: Not Found
Reply text: {"message":""}

error β€” ajax.js:478

URL: http://example.ru/views/ajax?_wrapper_format=drupal_ajax
Status: 404 Not Found

πŸ› Bug report
Status

Closed: outdated

Version

4.0

Component

Views integration

Created by

πŸ‡·πŸ‡ΊRussia topsiteweb

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • ivnish Kazakhstan

    6 years without any activity. I think we can close it as outdated. Please reopen if needed.

  • πŸ‡ΊπŸ‡ΈUnited States theprodigy

    I am not sure how you tested this but I am seeing the exact same issue. I am trying to create a bookmark by code for groups. From what I see I should be able to just use a hook preprocess group then add the flag to the twig template.

    After writing the code I ended up with the same results as the title of this issue:

    Type page not found
    Date Tuesday, March 11, 2025 - 13:54
    Location https://localhost/flag/flag/bookmark/2860?_wrapper_format=drupal_ajax&de...
    Referrer https://localhost/admin/reports/dblog/event/703
    Message /flag/flag/bookmark/2860?_wrapper_format=drupal_ajax&destination=/customer/acquisition-service-fas&token=Yz12EQbsQsAf4Ro5JtQyYDUAAbO2mpC1en24tGZjt5A

  • πŸ‡ΊπŸ‡ΈUnited States theprodigy

    I thought I would give more context around how this was replicated. I found that I can save a bookmark by writing out the save object. The problem seems to come from trying to create a link. The following is the code I'm using to create that link:

    function [hook]_preprocess_group(&$variables){

    $group = $variables['group'];

    // add a flag link for bookmarks
    $flag_link = [
    '#lazy_builder' => ['flag.link_builder:build', [
    'group', //also tried with $group->getEntityTypeId(),
    $group->id(),
    'bookmark',
    ]],
    '#create_placeholder' => TRUE,
    ];
    $variables['flag_link'] = $flag_link;

    This creates the link from the template by using {{ flag_link }}. After clicking on that link however I get the error described on this issue. I found that if I create my own save it seems to save the flag just fine with the following code:

    $flag = \Drupal\flag\Entity\Flag::create([
    'id' => $group->id(),
    'entity_type' => 'group',
    'bundles' => [
    'customer',
    ],
    'flag_type' => 'entity:group',
    'link_type' => 'reload',
    'flagTypeConfig' => [],
    'linkTypeConfig' => [],
    ]);
    $flag->save();

    So it would seem if I want to bypass this issue I'll have to create my own links to save and remove. I hope this helps debug the issue for others.

  • πŸ‡¬πŸ‡§United Kingdom malcomio

    Having updated from 8.x-4.0-beta5 to 8.x-4.0-beta6, we've started seeing this.

    We do have a patch applied for ✨ Allow AjaxResponse to be altered RTBC - possibly related?

  • πŸ‡¬πŸ‡§United Kingdom malcomio

    Looking at the difference between beta5 and beta6, one significant difference seems to be the changes in flag.routing.yml

  • πŸ‡¬πŸ‡§United Kingdom malcomio

    The patch on πŸ› Compatibility with Flag 8.x-4.0-beta6 Active solved the problem for us.

Production build 0.71.5 2024